diff --git a/gen/interfaces/IFrontEnd_grpcProxy.h b/gen/interfaces/IFrontEnd_grpcProxy.h index e5ade12..c1e86bd 100644 --- a/gen/interfaces/IFrontEnd_grpcProxy.h +++ b/gen/interfaces/IFrontEnd_grpcProxy.h @@ -47,6 +47,8 @@ class IFrontEnd_grpcProxy: public org::bcom::xpcf::ConfigurableBase, virtual pu SolAR::FrameworkReturnCode setMapRequest(std::string const& accessToken, std::string const& mapUUID, SRef const mapDatastructure) override; SolAR::FrameworkReturnCode getPointCloudRequest(std::string const& accessToken, std::string const& mapUUID, SRef& pointCloud) const override; SolAR::FrameworkReturnCode getMapInfo(std::string const& accessToken, std::string const& mapUUID, std::string& version, SolAR::datastructure::GlobalDescriptorType& globalDescriptorType, SolAR::datastructure::DescriptorType& descriptorType, uint32_t& dataSize, bool& areImageSaved) const override; + SolAR::FrameworkReturnCode backupMap(std::string const& accessToken, std::string const& mapUUID, std::vector& compressedZipData) const override; + SolAR::FrameworkReturnCode restoreMap(std::string const& accessToken, std::string const& mapUUID, std::vector const& compressedZipData) override; SolAR::FrameworkReturnCode requestMapProcessing(std::string const& accessToken, std::string const& mapUUID, std::string const& resultMapUUID, SolAR::api::service::MapProcessingType const processingType) override; SolAR::FrameworkReturnCode getMapProcessingStatus(std::string const& accessToken, std::string const& resultMapUUID, SolAR::api::service::MapProcessingStatus& status, SolAR::api::service::MapProcessingType& processingType, float& progress) const override; SolAR::FrameworkReturnCode getMapProcessingData(std::string const& accessToken, std::string const& resultMapUUID, std::vector>& pointCloud, std::vector& keyframePoses) const override; diff --git a/gen/interfaces/IFrontEnd_grpcServer.h b/gen/interfaces/IFrontEnd_grpcServer.h index ce0e978..bd71ae7 100644 --- a/gen/interfaces/IFrontEnd_grpcServer.h +++ b/gen/interfaces/IFrontEnd_grpcServer.h @@ -50,6 +50,8 @@ class IFrontEnd_grpcServer: public org::bcom::xpcf::ConfigurableBase, virtual p ::grpc::Status setMapRequest(::grpc::ServerContext* context, const ::grpcIFrontEnd::setMapRequestRequest* request, ::grpcIFrontEnd::setMapRequestResponse* response) override; ::grpc::Status getPointCloudRequest(::grpc::ServerContext* context, const ::grpcIFrontEnd::getPointCloudRequestRequest* request, ::grpcIFrontEnd::getPointCloudRequestResponse* response) override; ::grpc::Status getMapInfo(::grpc::ServerContext* context, const ::grpcIFrontEnd::getMapInfoRequest* request, ::grpcIFrontEnd::getMapInfoResponse* response) override; + ::grpc::Status backupMap(::grpc::ServerContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response) override; + ::grpc::Status restoreMap(::grpc::ServerContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response) override; ::grpc::Status requestMapProcessing(::grpc::ServerContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest* request, ::grpcIFrontEnd::requestMapProcessingResponse* response) override; ::grpc::Status getMapProcessingStatus(::grpc::ServerContext* context, const ::grpcIFrontEnd::getMapProcessingStatusRequest* request, ::grpcIFrontEnd::getMapProcessingStatusResponse* response) override; ::grpc::Status getMapProcessingData(::grpc::ServerContext* context, const ::grpcIFrontEnd::getMapProcessingDataRequest* request, ::grpcIFrontEnd::getMapProcessingDataResponse* response) override; diff --git a/gen/interfaces/IMapsManager_grpcProxy.h b/gen/interfaces/IMapsManager_grpcProxy.h index 38a7b4e..5362ae1 100644 --- a/gen/interfaces/IMapsManager_grpcProxy.h +++ b/gen/interfaces/IMapsManager_grpcProxy.h @@ -31,6 +31,8 @@ class IMapsManager_grpcProxy: public org::bcom::xpcf::ConfigurableBase, virtual SolAR::FrameworkReturnCode setMapRequest(std::string const& mapUUID, SRef const mapDatastructure) override; SolAR::FrameworkReturnCode getPointCloudRequest(std::string const& mapUUID, SRef& pointCloud) const override; SolAR::FrameworkReturnCode getMapInfo(std::string const& mapUUID, std::string& version, SolAR::datastructure::GlobalDescriptorType& globalDescriptorType, SolAR::datastructure::DescriptorType& descriptorType, uint32_t& dataSize, bool& areImageSaved) const override; + SolAR::FrameworkReturnCode backupMap(std::string const& mapUUID, std::vector& compressedZipData) const override; + SolAR::FrameworkReturnCode restoreMap(std::string const& mapUUID, std::vector const& compressedZipData) override; SolAR::FrameworkReturnCode requestMapProcessing(std::string const& mapUUID, std::string const& resultMapUUID, SolAR::api::service::MapProcessingType const processingType) override; SolAR::FrameworkReturnCode getMapProcessingStatus(std::string const& resultMapUUID, SolAR::api::service::MapProcessingStatus& status, SolAR::api::service::MapProcessingType& processingType, float& progress) override; SolAR::FrameworkReturnCode getMapProcessingData(std::string const& resultMapUUID, std::vector>& pointCloud, std::vector& keyframePoses) override; diff --git a/gen/interfaces/IMapsManager_grpcServer.h b/gen/interfaces/IMapsManager_grpcServer.h index a5f2307..4b0d247 100644 --- a/gen/interfaces/IMapsManager_grpcServer.h +++ b/gen/interfaces/IMapsManager_grpcServer.h @@ -34,6 +34,8 @@ class IMapsManager_grpcServer: public org::bcom::xpcf::ConfigurableBase, virtua ::grpc::Status setMapRequest(::grpc::ServerContext* context, const ::grpcIMapsManager::setMapRequestRequest* request, ::grpcIMapsManager::setMapRequestResponse* response) override; ::grpc::Status getPointCloudRequest(::grpc::ServerContext* context, const ::grpcIMapsManager::getPointCloudRequestRequest* request, ::grpcIMapsManager::getPointCloudRequestResponse* response) override; ::grpc::Status getMapInfo(::grpc::ServerContext* context, const ::grpcIMapsManager::getMapInfoRequest* request, ::grpcIMapsManager::getMapInfoResponse* response) override; + ::grpc::Status backupMap(::grpc::ServerContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response) override; + ::grpc::Status restoreMap(::grpc::ServerContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response) override; ::grpc::Status requestMapProcessing(::grpc::ServerContext* context, const ::grpcIMapsManager::requestMapProcessingRequest* request, ::grpcIMapsManager::requestMapProcessingResponse* response) override; ::grpc::Status getMapProcessingStatus(::grpc::ServerContext* context, const ::grpcIMapsManager::getMapProcessingStatusRequest* request, ::grpcIMapsManager::getMapProcessingStatusResponse* response) override; ::grpc::Status getMapProcessingData(::grpc::ServerContext* context, const ::grpcIMapsManager::getMapProcessingDataRequest* request, ::grpcIMapsManager::getMapProcessingDataResponse* response) override; diff --git a/gen/interfaces/grpcIFrontEndService.grpc.pb.h b/gen/interfaces/grpcIFrontEndService.grpc.pb.h index ffc1a65..474df29 100644 --- a/gen/interfaces/grpcIFrontEndService.grpc.pb.h +++ b/gen/interfaces/grpcIFrontEndService.grpc.pb.h @@ -211,6 +211,20 @@ class grpcIFrontEndService final { std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::getMapInfoResponse>> PrepareAsyncgetMapInfo(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::getMapInfoResponse>>(PrepareAsyncgetMapInfoRaw(context, request, cq)); } + virtual ::grpc::Status backupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpcIFrontEnd::backupMapResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::backupMapResponse>> AsyncbackupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::backupMapResponse>>(AsyncbackupMapRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::backupMapResponse>> PrepareAsyncbackupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::backupMapResponse>>(PrepareAsyncbackupMapRaw(context, request, cq)); + } + virtual ::grpc::Status restoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpcIFrontEnd::restoreMapResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::restoreMapResponse>> AsyncrestoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::restoreMapResponse>>(AsyncrestoreMapRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::restoreMapResponse>> PrepareAsyncrestoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::restoreMapResponse>>(PrepareAsyncrestoreMapRaw(context, request, cq)); + } virtual ::grpc::Status requestMapProcessing(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest& request, ::grpcIFrontEnd::requestMapProcessingResponse* response) = 0; std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::requestMapProcessingResponse>> AsyncrequestMapProcessing(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::requestMapProcessingResponse>>(AsyncrequestMapProcessingRaw(context, request, cq)); @@ -285,6 +299,10 @@ class grpcIFrontEndService final { virtual void getPointCloudRequest(::grpc::ClientContext* context, const ::grpcIFrontEnd::getPointCloudRequestRequest* request, ::grpcIFrontEnd::getPointCloudRequestResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; virtual void getMapInfo(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapInfoRequest* request, ::grpcIFrontEnd::getMapInfoResponse* response, std::function) = 0; virtual void getMapInfo(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapInfoRequest* request, ::grpcIFrontEnd::getMapInfoResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; + virtual void backupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response, std::function) = 0; + virtual void backupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; + virtual void restoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response, std::function) = 0; + virtual void restoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; virtual void requestMapProcessing(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest* request, ::grpcIFrontEnd::requestMapProcessingResponse* response, std::function) = 0; virtual void requestMapProcessing(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest* request, ::grpcIFrontEnd::requestMapProcessingResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; virtual void getMapProcessingStatus(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapProcessingStatusRequest* request, ::grpcIFrontEnd::getMapProcessingStatusResponse* response, std::function) = 0; @@ -346,6 +364,10 @@ class grpcIFrontEndService final { virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::getPointCloudRequestResponse>* PrepareAsyncgetPointCloudRequestRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::getPointCloudRequestRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::getMapInfoResponse>* AsyncgetMapInfoRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::getMapInfoResponse>* PrepareAsyncgetMapInfoRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::backupMapResponse>* AsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::backupMapResponse>* PrepareAsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::restoreMapResponse>* AsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::restoreMapResponse>* PrepareAsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::requestMapProcessingResponse>* AsyncrequestMapProcessingRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::requestMapProcessingResponse>* PrepareAsyncrequestMapProcessingRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIFrontEnd::getMapProcessingStatusResponse>* AsyncgetMapProcessingStatusRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapProcessingStatusRequest& request, ::grpc::CompletionQueue* cq) = 0; @@ -531,6 +553,20 @@ class grpcIFrontEndService final { std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::getMapInfoResponse>> PrepareAsyncgetMapInfo(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::getMapInfoResponse>>(PrepareAsyncgetMapInfoRaw(context, request, cq)); } + ::grpc::Status backupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpcIFrontEnd::backupMapResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::backupMapResponse>> AsyncbackupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::backupMapResponse>>(AsyncbackupMapRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::backupMapResponse>> PrepareAsyncbackupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::backupMapResponse>>(PrepareAsyncbackupMapRaw(context, request, cq)); + } + ::grpc::Status restoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpcIFrontEnd::restoreMapResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::restoreMapResponse>> AsyncrestoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::restoreMapResponse>>(AsyncrestoreMapRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::restoreMapResponse>> PrepareAsyncrestoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::restoreMapResponse>>(PrepareAsyncrestoreMapRaw(context, request, cq)); + } ::grpc::Status requestMapProcessing(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest& request, ::grpcIFrontEnd::requestMapProcessingResponse* response) override; std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::requestMapProcessingResponse>> AsyncrequestMapProcessing(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::requestMapProcessingResponse>>(AsyncrequestMapProcessingRaw(context, request, cq)); @@ -605,6 +641,10 @@ class grpcIFrontEndService final { void getPointCloudRequest(::grpc::ClientContext* context, const ::grpcIFrontEnd::getPointCloudRequestRequest* request, ::grpcIFrontEnd::getPointCloudRequestResponse* response, ::grpc::ClientUnaryReactor* reactor) override; void getMapInfo(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapInfoRequest* request, ::grpcIFrontEnd::getMapInfoResponse* response, std::function) override; void getMapInfo(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapInfoRequest* request, ::grpcIFrontEnd::getMapInfoResponse* response, ::grpc::ClientUnaryReactor* reactor) override; + void backupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response, std::function) override; + void backupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response, ::grpc::ClientUnaryReactor* reactor) override; + void restoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response, std::function) override; + void restoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response, ::grpc::ClientUnaryReactor* reactor) override; void requestMapProcessing(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest* request, ::grpcIFrontEnd::requestMapProcessingResponse* response, std::function) override; void requestMapProcessing(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest* request, ::grpcIFrontEnd::requestMapProcessingResponse* response, ::grpc::ClientUnaryReactor* reactor) override; void getMapProcessingStatus(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapProcessingStatusRequest* request, ::grpcIFrontEnd::getMapProcessingStatusResponse* response, std::function) override; @@ -672,6 +712,10 @@ class grpcIFrontEndService final { ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::getPointCloudRequestResponse>* PrepareAsyncgetPointCloudRequestRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::getPointCloudRequestRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::getMapInfoResponse>* AsyncgetMapInfoRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::getMapInfoResponse>* PrepareAsyncgetMapInfoRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::backupMapResponse>* AsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::backupMapResponse>* PrepareAsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::restoreMapResponse>* AsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::restoreMapResponse>* PrepareAsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::requestMapProcessingResponse>* AsyncrequestMapProcessingRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::requestMapProcessingResponse>* PrepareAsyncrequestMapProcessingRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::getMapProcessingStatusResponse>* AsyncgetMapProcessingStatusRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::getMapProcessingStatusRequest& request, ::grpc::CompletionQueue* cq) override; @@ -703,6 +747,8 @@ class grpcIFrontEndService final { const ::grpc::internal::RpcMethod rpcmethod_setMapRequest_; const ::grpc::internal::RpcMethod rpcmethod_getPointCloudRequest_; const ::grpc::internal::RpcMethod rpcmethod_getMapInfo_; + const ::grpc::internal::RpcMethod rpcmethod_backupMap_; + const ::grpc::internal::RpcMethod rpcmethod_restoreMap_; const ::grpc::internal::RpcMethod rpcmethod_requestMapProcessing_; const ::grpc::internal::RpcMethod rpcmethod_getMapProcessingStatus_; const ::grpc::internal::RpcMethod rpcmethod_getMapProcessingData_; @@ -738,6 +784,8 @@ class grpcIFrontEndService final { virtual ::grpc::Status setMapRequest(::grpc::ServerContext* context, const ::grpcIFrontEnd::setMapRequestRequest* request, ::grpcIFrontEnd::setMapRequestResponse* response); virtual ::grpc::Status getPointCloudRequest(::grpc::ServerContext* context, const ::grpcIFrontEnd::getPointCloudRequestRequest* request, ::grpcIFrontEnd::getPointCloudRequestResponse* response); virtual ::grpc::Status getMapInfo(::grpc::ServerContext* context, const ::grpcIFrontEnd::getMapInfoRequest* request, ::grpcIFrontEnd::getMapInfoResponse* response); + virtual ::grpc::Status backupMap(::grpc::ServerContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response); + virtual ::grpc::Status restoreMap(::grpc::ServerContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response); virtual ::grpc::Status requestMapProcessing(::grpc::ServerContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest* request, ::grpcIFrontEnd::requestMapProcessingResponse* response); virtual ::grpc::Status getMapProcessingStatus(::grpc::ServerContext* context, const ::grpcIFrontEnd::getMapProcessingStatusRequest* request, ::grpcIFrontEnd::getMapProcessingStatusResponse* response); virtual ::grpc::Status getMapProcessingData(::grpc::ServerContext* context, const ::grpcIFrontEnd::getMapProcessingDataRequest* request, ::grpcIFrontEnd::getMapProcessingDataResponse* response); @@ -1243,12 +1291,52 @@ class grpcIFrontEndService final { } }; template + class WithAsyncMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithAsyncMethod_backupMap() { + ::grpc::Service::MarkMethodAsync(25); + } + ~WithAsyncMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::backupMapRequest* /*request*/, ::grpcIFrontEnd::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestbackupMap(::grpc::ServerContext* context, ::grpcIFrontEnd::backupMapRequest* request, ::grpc::ServerAsyncResponseWriter< ::grpcIFrontEnd::backupMapResponse>* 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_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithAsyncMethod_restoreMap() { + ::grpc::Service::MarkMethodAsync(26); + } + ~WithAsyncMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::restoreMapRequest* /*request*/, ::grpcIFrontEnd::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestrestoreMap(::grpc::ServerContext* context, ::grpcIFrontEnd::restoreMapRequest* request, ::grpc::ServerAsyncResponseWriter< ::grpcIFrontEnd::restoreMapResponse>* 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_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithAsyncMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodAsync(25); + ::grpc::Service::MarkMethodAsync(27); } ~WithAsyncMethod_requestMapProcessing() override { BaseClassMustBeDerivedFromService(this); @@ -1259,7 +1347,7 @@ class grpcIFrontEndService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestrequestMapProcessing(::grpc::ServerContext* context, ::grpcIFrontEnd::requestMapProcessingRequest* request, ::grpc::ServerAsyncResponseWriter< ::grpcIFrontEnd::requestMapProcessingResponse>* 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); + ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1268,7 +1356,7 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithAsyncMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodAsync(26); + ::grpc::Service::MarkMethodAsync(28); } ~WithAsyncMethod_getMapProcessingStatus() override { BaseClassMustBeDerivedFromService(this); @@ -1279,7 +1367,7 @@ class grpcIFrontEndService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestgetMapProcessingStatus(::grpc::ServerContext* context, ::grpcIFrontEnd::getMapProcessingStatusRequest* request, ::grpc::ServerAsyncResponseWriter< ::grpcIFrontEnd::getMapProcessingStatusResponse>* 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); + ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1288,7 +1376,7 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithAsyncMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodAsync(27); + ::grpc::Service::MarkMethodAsync(29); } ~WithAsyncMethod_getMapProcessingData() override { BaseClassMustBeDerivedFromService(this); @@ -1299,10 +1387,10 @@ class grpcIFrontEndService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestgetMapProcessingData(::grpc::ServerContext* context, ::grpcIFrontEnd::getMapProcessingDataRequest* request, ::grpc::ServerAsyncResponseWriter< ::grpcIFrontEnd::getMapProcessingDataResponse>* 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); + ::grpc::Service::RequestAsyncUnary(29, context, request, response, new_call_cq, notification_cq, tag); } }; - typedef WithAsyncMethod_registerClient > > > > > > > > > > > > > > > > > > > > > > > > > > > AsyncService; + typedef WithAsyncMethod_registerClient > > > > > > > > > > > > > > > > > > > > > > > > > > > > > AsyncService; template class WithCallbackMethod_registerClient : public BaseClass { private: @@ -1979,18 +2067,72 @@ class grpcIFrontEndService final { ::grpc::CallbackServerContext* /*context*/, const ::grpcIFrontEnd::getMapInfoRequest* /*request*/, ::grpcIFrontEnd::getMapInfoResponse* /*response*/) { return nullptr; } }; template + class WithCallbackMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithCallbackMethod_backupMap() { + ::grpc::Service::MarkMethodCallback(25, + new ::grpc::internal::CallbackUnaryHandler< ::grpcIFrontEnd::backupMapRequest, ::grpcIFrontEnd::backupMapResponse>( + [this]( + ::grpc::CallbackServerContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response) { return this->backupMap(context, request, response); }));} + void SetMessageAllocatorFor_backupMap( + ::grpc::MessageAllocator< ::grpcIFrontEnd::backupMapRequest, ::grpcIFrontEnd::backupMapResponse>* allocator) { + ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(25); + static_cast<::grpc::internal::CallbackUnaryHandler< ::grpcIFrontEnd::backupMapRequest, ::grpcIFrontEnd::backupMapResponse>*>(handler) + ->SetMessageAllocator(allocator); + } + ~WithCallbackMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::backupMapRequest* /*request*/, ::grpcIFrontEnd::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + virtual ::grpc::ServerUnaryReactor* backupMap( + ::grpc::CallbackServerContext* /*context*/, const ::grpcIFrontEnd::backupMapRequest* /*request*/, ::grpcIFrontEnd::backupMapResponse* /*response*/) { return nullptr; } + }; + template + class WithCallbackMethod_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithCallbackMethod_restoreMap() { + ::grpc::Service::MarkMethodCallback(26, + new ::grpc::internal::CallbackUnaryHandler< ::grpcIFrontEnd::restoreMapRequest, ::grpcIFrontEnd::restoreMapResponse>( + [this]( + ::grpc::CallbackServerContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response) { return this->restoreMap(context, request, response); }));} + void SetMessageAllocatorFor_restoreMap( + ::grpc::MessageAllocator< ::grpcIFrontEnd::restoreMapRequest, ::grpcIFrontEnd::restoreMapResponse>* allocator) { + ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(26); + static_cast<::grpc::internal::CallbackUnaryHandler< ::grpcIFrontEnd::restoreMapRequest, ::grpcIFrontEnd::restoreMapResponse>*>(handler) + ->SetMessageAllocator(allocator); + } + ~WithCallbackMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::restoreMapRequest* /*request*/, ::grpcIFrontEnd::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + virtual ::grpc::ServerUnaryReactor* restoreMap( + ::grpc::CallbackServerContext* /*context*/, const ::grpcIFrontEnd::restoreMapRequest* /*request*/, ::grpcIFrontEnd::restoreMapResponse* /*response*/) { return nullptr; } + }; + template class WithCallbackMethod_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithCallbackMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodCallback(25, + ::grpc::Service::MarkMethodCallback(27, new ::grpc::internal::CallbackUnaryHandler< ::grpcIFrontEnd::requestMapProcessingRequest, ::grpcIFrontEnd::requestMapProcessingResponse>( [this]( ::grpc::CallbackServerContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest* request, ::grpcIFrontEnd::requestMapProcessingResponse* response) { return this->requestMapProcessing(context, request, response); }));} void SetMessageAllocatorFor_requestMapProcessing( ::grpc::MessageAllocator< ::grpcIFrontEnd::requestMapProcessingRequest, ::grpcIFrontEnd::requestMapProcessingResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(25); + ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(27); static_cast<::grpc::internal::CallbackUnaryHandler< ::grpcIFrontEnd::requestMapProcessingRequest, ::grpcIFrontEnd::requestMapProcessingResponse>*>(handler) ->SetMessageAllocator(allocator); } @@ -2011,13 +2153,13 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithCallbackMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodCallback(26, + ::grpc::Service::MarkMethodCallback(28, new ::grpc::internal::CallbackUnaryHandler< ::grpcIFrontEnd::getMapProcessingStatusRequest, ::grpcIFrontEnd::getMapProcessingStatusResponse>( [this]( ::grpc::CallbackServerContext* context, const ::grpcIFrontEnd::getMapProcessingStatusRequest* request, ::grpcIFrontEnd::getMapProcessingStatusResponse* response) { return this->getMapProcessingStatus(context, request, response); }));} void SetMessageAllocatorFor_getMapProcessingStatus( ::grpc::MessageAllocator< ::grpcIFrontEnd::getMapProcessingStatusRequest, ::grpcIFrontEnd::getMapProcessingStatusResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(26); + ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(28); static_cast<::grpc::internal::CallbackUnaryHandler< ::grpcIFrontEnd::getMapProcessingStatusRequest, ::grpcIFrontEnd::getMapProcessingStatusResponse>*>(handler) ->SetMessageAllocator(allocator); } @@ -2038,13 +2180,13 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithCallbackMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodCallback(27, + ::grpc::Service::MarkMethodCallback(29, new ::grpc::internal::CallbackUnaryHandler< ::grpcIFrontEnd::getMapProcessingDataRequest, ::grpcIFrontEnd::getMapProcessingDataResponse>( [this]( ::grpc::CallbackServerContext* context, const ::grpcIFrontEnd::getMapProcessingDataRequest* request, ::grpcIFrontEnd::getMapProcessingDataResponse* response) { return this->getMapProcessingData(context, request, response); }));} void SetMessageAllocatorFor_getMapProcessingData( ::grpc::MessageAllocator< ::grpcIFrontEnd::getMapProcessingDataRequest, ::grpcIFrontEnd::getMapProcessingDataResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(27); + ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(29); static_cast<::grpc::internal::CallbackUnaryHandler< ::grpcIFrontEnd::getMapProcessingDataRequest, ::grpcIFrontEnd::getMapProcessingDataResponse>*>(handler) ->SetMessageAllocator(allocator); } @@ -2059,7 +2201,7 @@ class grpcIFrontEndService final { virtual ::grpc::ServerUnaryReactor* getMapProcessingData( ::grpc::CallbackServerContext* /*context*/, const ::grpcIFrontEnd::getMapProcessingDataRequest* /*request*/, ::grpcIFrontEnd::getMapProcessingDataResponse* /*response*/) { return nullptr; } }; - typedef WithCallbackMethod_registerClient > > > > > > > > > > > > > > > > > > > > > > > > > > > CallbackService; + typedef WithCallbackMethod_registerClient > > > > > > > > > > > > > > > > > > > > > > > > > > > > > CallbackService; typedef CallbackService ExperimentalCallbackService; template class WithGenericMethod_registerClient : public BaseClass { @@ -2487,12 +2629,46 @@ class grpcIFrontEndService final { } }; template + class WithGenericMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithGenericMethod_backupMap() { + ::grpc::Service::MarkMethodGeneric(25); + } + ~WithGenericMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::backupMapRequest* /*request*/, ::grpcIFrontEnd::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithGenericMethod_restoreMap() { + ::grpc::Service::MarkMethodGeneric(26); + } + ~WithGenericMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::restoreMapRequest* /*request*/, ::grpcIFrontEnd::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template class WithGenericMethod_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithGenericMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodGeneric(25); + ::grpc::Service::MarkMethodGeneric(27); } ~WithGenericMethod_requestMapProcessing() override { BaseClassMustBeDerivedFromService(this); @@ -2509,7 +2685,7 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithGenericMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodGeneric(26); + ::grpc::Service::MarkMethodGeneric(28); } ~WithGenericMethod_getMapProcessingStatus() override { BaseClassMustBeDerivedFromService(this); @@ -2526,7 +2702,7 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithGenericMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodGeneric(27); + ::grpc::Service::MarkMethodGeneric(29); } ~WithGenericMethod_getMapProcessingData() override { BaseClassMustBeDerivedFromService(this); @@ -3038,12 +3214,52 @@ class grpcIFrontEndService final { } }; template + class WithRawMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithRawMethod_backupMap() { + ::grpc::Service::MarkMethodRaw(25); + } + ~WithRawMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::backupMapRequest* /*request*/, ::grpcIFrontEnd::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestbackupMap(::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_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithRawMethod_restoreMap() { + ::grpc::Service::MarkMethodRaw(26); + } + ~WithRawMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::restoreMapRequest* /*request*/, ::grpcIFrontEnd::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestrestoreMap(::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_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodRaw(25); + ::grpc::Service::MarkMethodRaw(27); } ~WithRawMethod_requestMapProcessing() override { BaseClassMustBeDerivedFromService(this); @@ -3054,7 +3270,7 @@ class grpcIFrontEndService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestrequestMapProcessing(::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); + ::grpc::Service::RequestAsyncUnary(27, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -3063,7 +3279,7 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodRaw(26); + ::grpc::Service::MarkMethodRaw(28); } ~WithRawMethod_getMapProcessingStatus() override { BaseClassMustBeDerivedFromService(this); @@ -3074,7 +3290,7 @@ class grpcIFrontEndService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestgetMapProcessingStatus(::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); + ::grpc::Service::RequestAsyncUnary(28, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -3083,7 +3299,7 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodRaw(27); + ::grpc::Service::MarkMethodRaw(29); } ~WithRawMethod_getMapProcessingData() override { BaseClassMustBeDerivedFromService(this); @@ -3094,7 +3310,7 @@ class grpcIFrontEndService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestgetMapProcessingData(::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); + ::grpc::Service::RequestAsyncUnary(29, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -3648,12 +3864,56 @@ class grpcIFrontEndService final { ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } }; template + class WithRawCallbackMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithRawCallbackMethod_backupMap() { + ::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->backupMap(context, request, response); })); + } + ~WithRawCallbackMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::backupMapRequest* /*request*/, ::grpcIFrontEnd::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + virtual ::grpc::ServerUnaryReactor* backupMap( + ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } + }; + template + class WithRawCallbackMethod_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithRawCallbackMethod_restoreMap() { + ::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->restoreMap(context, request, response); })); + } + ~WithRawCallbackMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::restoreMapRequest* /*request*/, ::grpcIFrontEnd::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + virtual ::grpc::ServerUnaryReactor* restoreMap( + ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } + }; + template class WithRawCallbackMethod_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawCallbackMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodRawCallback(25, + ::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->requestMapProcessing(context, request, response); })); @@ -3675,7 +3935,7 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawCallbackMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodRawCallback(26, + ::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->getMapProcessingStatus(context, request, response); })); @@ -3697,7 +3957,7 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawCallbackMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodRawCallback(27, + ::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->getMapProcessingData(context, request, response); })); @@ -4389,12 +4649,66 @@ class grpcIFrontEndService final { virtual ::grpc::Status StreamedgetMapInfo(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::grpcIFrontEnd::getMapInfoRequest,::grpcIFrontEnd::getMapInfoResponse>* server_unary_streamer) = 0; }; template + class WithStreamedUnaryMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithStreamedUnaryMethod_backupMap() { + ::grpc::Service::MarkMethodStreamed(25, + new ::grpc::internal::StreamedUnaryHandler< + ::grpcIFrontEnd::backupMapRequest, ::grpcIFrontEnd::backupMapResponse>( + [this](::grpc::ServerContext* context, + ::grpc::ServerUnaryStreamer< + ::grpcIFrontEnd::backupMapRequest, ::grpcIFrontEnd::backupMapResponse>* streamer) { + return this->StreamedbackupMap(context, + streamer); + })); + } + ~WithStreamedUnaryMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::backupMapRequest* /*request*/, ::grpcIFrontEnd::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedbackupMap(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::grpcIFrontEnd::backupMapRequest,::grpcIFrontEnd::backupMapResponse>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithStreamedUnaryMethod_restoreMap() { + ::grpc::Service::MarkMethodStreamed(26, + new ::grpc::internal::StreamedUnaryHandler< + ::grpcIFrontEnd::restoreMapRequest, ::grpcIFrontEnd::restoreMapResponse>( + [this](::grpc::ServerContext* context, + ::grpc::ServerUnaryStreamer< + ::grpcIFrontEnd::restoreMapRequest, ::grpcIFrontEnd::restoreMapResponse>* streamer) { + return this->StreamedrestoreMap(context, + streamer); + })); + } + ~WithStreamedUnaryMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIFrontEnd::restoreMapRequest* /*request*/, ::grpcIFrontEnd::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedrestoreMap(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::grpcIFrontEnd::restoreMapRequest,::grpcIFrontEnd::restoreMapResponse>* server_unary_streamer) = 0; + }; + template class WithStreamedUnaryMethod_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithStreamedUnaryMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodStreamed(25, + ::grpc::Service::MarkMethodStreamed(27, new ::grpc::internal::StreamedUnaryHandler< ::grpcIFrontEnd::requestMapProcessingRequest, ::grpcIFrontEnd::requestMapProcessingResponse>( [this](::grpc::ServerContext* context, @@ -4421,7 +4735,7 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithStreamedUnaryMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodStreamed(26, + ::grpc::Service::MarkMethodStreamed(28, new ::grpc::internal::StreamedUnaryHandler< ::grpcIFrontEnd::getMapProcessingStatusRequest, ::grpcIFrontEnd::getMapProcessingStatusResponse>( [this](::grpc::ServerContext* context, @@ -4448,7 +4762,7 @@ class grpcIFrontEndService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithStreamedUnaryMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodStreamed(27, + ::grpc::Service::MarkMethodStreamed(29, new ::grpc::internal::StreamedUnaryHandler< ::grpcIFrontEnd::getMapProcessingDataRequest, ::grpcIFrontEnd::getMapProcessingDataResponse>( [this](::grpc::ServerContext* context, @@ -4469,9 +4783,9 @@ class grpcIFrontEndService final { // replace default version of method with streamed unary virtual ::grpc::Status StreamedgetMapProcessingData(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::grpcIFrontEnd::getMapProcessingDataRequest,::grpcIFrontEnd::getMapProcessingDataResponse>* server_unary_streamer) = 0; }; - typedef WithStreamedUnaryMethod_registerClient > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedUnaryService; + typedef WithStreamedUnaryMethod_registerClient > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedUnaryService; typedef Service SplitStreamedService; - typedef WithStreamedUnaryMethod_registerClient > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedService; + typedef WithStreamedUnaryMethod_registerClient > > > > > > > > > > > > > > > > > > > > > > > > > > > > > StreamedService; }; } // namespace grpcIFrontEnd diff --git a/gen/interfaces/grpcIFrontEndService.pb.h b/gen/interfaces/grpcIFrontEndService.pb.h index 1307ffe..35d809f 100644 --- a/gen/interfaces/grpcIFrontEndService.pb.h +++ b/gen/interfaces/grpcIFrontEndService.pb.h @@ -51,6 +51,12 @@ struct TableStruct_grpcIFrontEndService_2eproto { extern const ::google::protobuf::internal::DescriptorTable descriptor_table_grpcIFrontEndService_2eproto; namespace grpcIFrontEnd { +class backupMapRequest; +struct backupMapRequestDefaultTypeInternal; +extern backupMapRequestDefaultTypeInternal _backupMapRequest_default_instance_; +class backupMapResponse; +struct backupMapResponseDefaultTypeInternal; +extern backupMapResponseDefaultTypeInternal _backupMapResponse_default_instance_; class createMapRequest; struct createMapRequestDefaultTypeInternal; extern createMapRequestDefaultTypeInternal _createMapRequest_default_instance_; @@ -177,6 +183,12 @@ extern requestMapProcessingRequestDefaultTypeInternal _requestMapProcessingReque class requestMapProcessingResponse; struct requestMapProcessingResponseDefaultTypeInternal; extern requestMapProcessingResponseDefaultTypeInternal _requestMapProcessingResponse_default_instance_; +class restoreMapRequest; +struct restoreMapRequestDefaultTypeInternal; +extern restoreMapRequestDefaultTypeInternal _restoreMapRequest_default_instance_; +class restoreMapResponse; +struct restoreMapResponseDefaultTypeInternal; +extern restoreMapResponseDefaultTypeInternal _restoreMapResponse_default_instance_; class setCameraParameters_grpc0Request; struct setCameraParameters_grpc0RequestDefaultTypeInternal; extern setCameraParameters_grpc0RequestDefaultTypeInternal _setCameraParameters_grpc0Request_default_instance_; @@ -2986,23 +2998,23 @@ class setCameraParameters_grpc0Request final : public ::google::protobuf::Messag }; // ------------------------------------------------------------------- -class requestMapProcessingResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.requestMapProcessingResponse) */ { +class restoreMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.restoreMapResponse) */ { public: - inline requestMapProcessingResponse() : requestMapProcessingResponse(nullptr) {} - ~requestMapProcessingResponse() override; + inline restoreMapResponse() : restoreMapResponse(nullptr) {} + ~restoreMapResponse() override; template - explicit PROTOBUF_CONSTEXPR requestMapProcessingResponse( + explicit PROTOBUF_CONSTEXPR restoreMapResponse( ::google::protobuf::internal::ConstantInitialized); - inline requestMapProcessingResponse(const requestMapProcessingResponse& from) : requestMapProcessingResponse(nullptr, from) {} - inline requestMapProcessingResponse(requestMapProcessingResponse&& from) noexcept - : requestMapProcessingResponse(nullptr, std::move(from)) {} - inline requestMapProcessingResponse& operator=(const requestMapProcessingResponse& from) { + inline restoreMapResponse(const restoreMapResponse& from) : restoreMapResponse(nullptr, from) {} + inline restoreMapResponse(restoreMapResponse&& from) noexcept + : restoreMapResponse(nullptr, std::move(from)) {} + inline restoreMapResponse& operator=(const restoreMapResponse& from) { CopyFrom(from); return *this; } - inline requestMapProcessingResponse& operator=(requestMapProcessingResponse&& from) noexcept { + inline restoreMapResponse& operator=(restoreMapResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3034,16 +3046,16 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const requestMapProcessingResponse& default_instance() { + static const restoreMapResponse& default_instance() { return *internal_default_instance(); } - static inline const requestMapProcessingResponse* internal_default_instance() { - return reinterpret_cast( - &_requestMapProcessingResponse_default_instance_); + static inline const restoreMapResponse* internal_default_instance() { + return reinterpret_cast( + &_restoreMapResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 51; - friend void swap(requestMapProcessingResponse& a, requestMapProcessingResponse& b) { a.Swap(&b); } - inline void Swap(requestMapProcessingResponse* other) { + static constexpr int kIndexInFileMessages = 53; + friend void swap(restoreMapResponse& a, restoreMapResponse& b) { a.Swap(&b); } + inline void Swap(restoreMapResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -3055,7 +3067,7 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(requestMapProcessingResponse* other) { + void UnsafeArenaSwap(restoreMapResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3063,13 +3075,13 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - requestMapProcessingResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + restoreMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const requestMapProcessingResponse& from); + void CopyFrom(const restoreMapResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const requestMapProcessingResponse& from) { requestMapProcessingResponse::MergeImpl(*this, from); } + void MergeFrom(const restoreMapResponse& from) { restoreMapResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3090,16 +3102,16 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(requestMapProcessingResponse* other); + void InternalSwap(restoreMapResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.requestMapProcessingResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.restoreMapResponse"; } protected: - explicit requestMapProcessingResponse(::google::protobuf::Arena* arena); - requestMapProcessingResponse(::google::protobuf::Arena* arena, const requestMapProcessingResponse& from); - requestMapProcessingResponse(::google::protobuf::Arena* arena, requestMapProcessingResponse&& from) noexcept - : requestMapProcessingResponse(arena) { + explicit restoreMapResponse(::google::protobuf::Arena* arena); + restoreMapResponse(::google::protobuf::Arena* arena, const restoreMapResponse& from); + restoreMapResponse(::google::protobuf::Arena* arena, restoreMapResponse&& from) noexcept + : restoreMapResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -3122,7 +3134,7 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.requestMapProcessingResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.restoreMapResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -3132,7 +3144,7 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_requestMapProcessingResponse_default_instance_; + &_restoreMapResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3147,7 +3159,7 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const requestMapProcessingResponse& from_msg); + const restoreMapResponse& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -3157,23 +3169,23 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class requestMapProcessingRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.requestMapProcessingRequest) */ { +class restoreMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.restoreMapRequest) */ { public: - inline requestMapProcessingRequest() : requestMapProcessingRequest(nullptr) {} - ~requestMapProcessingRequest() override; + inline restoreMapRequest() : restoreMapRequest(nullptr) {} + ~restoreMapRequest() override; template - explicit PROTOBUF_CONSTEXPR requestMapProcessingRequest( + explicit PROTOBUF_CONSTEXPR restoreMapRequest( ::google::protobuf::internal::ConstantInitialized); - inline requestMapProcessingRequest(const requestMapProcessingRequest& from) : requestMapProcessingRequest(nullptr, from) {} - inline requestMapProcessingRequest(requestMapProcessingRequest&& from) noexcept - : requestMapProcessingRequest(nullptr, std::move(from)) {} - inline requestMapProcessingRequest& operator=(const requestMapProcessingRequest& from) { + inline restoreMapRequest(const restoreMapRequest& from) : restoreMapRequest(nullptr, from) {} + inline restoreMapRequest(restoreMapRequest&& from) noexcept + : restoreMapRequest(nullptr, std::move(from)) {} + inline restoreMapRequest& operator=(const restoreMapRequest& from) { CopyFrom(from); return *this; } - inline requestMapProcessingRequest& operator=(requestMapProcessingRequest&& from) noexcept { + inline restoreMapRequest& operator=(restoreMapRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3205,16 +3217,16 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const requestMapProcessingRequest& default_instance() { + static const restoreMapRequest& default_instance() { return *internal_default_instance(); } - static inline const requestMapProcessingRequest* internal_default_instance() { - return reinterpret_cast( - &_requestMapProcessingRequest_default_instance_); + static inline const restoreMapRequest* internal_default_instance() { + return reinterpret_cast( + &_restoreMapRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 50; - friend void swap(requestMapProcessingRequest& a, requestMapProcessingRequest& b) { a.Swap(&b); } - inline void Swap(requestMapProcessingRequest* other) { + static constexpr int kIndexInFileMessages = 52; + friend void swap(restoreMapRequest& a, restoreMapRequest& b) { a.Swap(&b); } + inline void Swap(restoreMapRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -3226,7 +3238,7 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(requestMapProcessingRequest* other) { + void UnsafeArenaSwap(restoreMapRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3234,13 +3246,13 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - requestMapProcessingRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + restoreMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const requestMapProcessingRequest& from); + void CopyFrom(const restoreMapRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const requestMapProcessingRequest& from) { requestMapProcessingRequest::MergeImpl(*this, from); } + void MergeFrom(const restoreMapRequest& from) { restoreMapRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3261,16 +3273,16 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(requestMapProcessingRequest* other); + void InternalSwap(restoreMapRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.requestMapProcessingRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.restoreMapRequest"; } protected: - explicit requestMapProcessingRequest(::google::protobuf::Arena* arena); - requestMapProcessingRequest(::google::protobuf::Arena* arena, const requestMapProcessingRequest& from); - requestMapProcessingRequest(::google::protobuf::Arena* arena, requestMapProcessingRequest&& from) noexcept - : requestMapProcessingRequest(arena) { + explicit restoreMapRequest(::google::protobuf::Arena* arena); + restoreMapRequest(::google::protobuf::Arena* arena, const restoreMapRequest& from); + restoreMapRequest(::google::protobuf::Arena* arena, restoreMapRequest&& from) noexcept + : restoreMapRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -3283,9 +3295,8 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message enum : int { kAccessTokenFieldNumber = 2, kMapUUIDFieldNumber = 3, - kResultMapUUIDFieldNumber = 4, + kCompressedZipDataFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, - kProcessingTypeFieldNumber = 5, }; // string accessToken = 2; void clear_accesstoken() ; @@ -3319,20 +3330,20 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // string resultMapUUID = 4; - void clear_resultmapuuid() ; - const std::string& resultmapuuid() const; + // bytes compressedZipData = 4; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; template - void set_resultmapuuid(Arg_&& arg, Args_... args); - std::string* mutable_resultmapuuid(); - PROTOBUF_NODISCARD std::string* release_resultmapuuid(); - void set_allocated_resultmapuuid(std::string* value); + void set_compressedzipdata(Arg_&& arg, Args_... args); + std::string* mutable_compressedzipdata(); + PROTOBUF_NODISCARD std::string* release_compressedzipdata(); + void set_allocated_compressedzipdata(std::string* value); private: - const std::string& _internal_resultmapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_resultmapuuid( + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( const std::string& value); - std::string* _internal_mutable_resultmapuuid(); + std::string* _internal_mutable_compressedzipdata(); public: // int32 grpcServerCompressionFormat = 1; @@ -3345,27 +3356,17 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 processingType = 5; - void clear_processingtype() ; - ::int32_t processingtype() const; - void set_processingtype(::int32_t value); - - private: - ::int32_t _internal_processingtype() const; - void _internal_set_processingtype(::int32_t value); - - public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.requestMapProcessingRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.restoreMapRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 5, 0, - 81, 2> + 2, 4, 0, + 58, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_requestMapProcessingRequest_default_instance_; + &_restoreMapRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3380,12 +3381,11 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const requestMapProcessingRequest& from_msg); + const restoreMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr resultmapuuid_; + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; ::int32_t grpcservercompressionformat_; - ::int32_t processingtype_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -3394,23 +3394,23 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class registerClientResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.registerClientResponse) */ { +class requestMapProcessingResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.requestMapProcessingResponse) */ { public: - inline registerClientResponse() : registerClientResponse(nullptr) {} - ~registerClientResponse() override; + inline requestMapProcessingResponse() : requestMapProcessingResponse(nullptr) {} + ~requestMapProcessingResponse() override; template - explicit PROTOBUF_CONSTEXPR registerClientResponse( + explicit PROTOBUF_CONSTEXPR requestMapProcessingResponse( ::google::protobuf::internal::ConstantInitialized); - inline registerClientResponse(const registerClientResponse& from) : registerClientResponse(nullptr, from) {} - inline registerClientResponse(registerClientResponse&& from) noexcept - : registerClientResponse(nullptr, std::move(from)) {} - inline registerClientResponse& operator=(const registerClientResponse& from) { + inline requestMapProcessingResponse(const requestMapProcessingResponse& from) : requestMapProcessingResponse(nullptr, from) {} + inline requestMapProcessingResponse(requestMapProcessingResponse&& from) noexcept + : requestMapProcessingResponse(nullptr, std::move(from)) {} + inline requestMapProcessingResponse& operator=(const requestMapProcessingResponse& from) { CopyFrom(from); return *this; } - inline registerClientResponse& operator=(registerClientResponse&& from) noexcept { + inline requestMapProcessingResponse& operator=(requestMapProcessingResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3442,16 +3442,16 @@ class registerClientResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const registerClientResponse& default_instance() { + static const requestMapProcessingResponse& default_instance() { return *internal_default_instance(); } - static inline const registerClientResponse* internal_default_instance() { - return reinterpret_cast( - &_registerClientResponse_default_instance_); + static inline const requestMapProcessingResponse* internal_default_instance() { + return reinterpret_cast( + &_requestMapProcessingResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 1; - friend void swap(registerClientResponse& a, registerClientResponse& b) { a.Swap(&b); } - inline void Swap(registerClientResponse* other) { + static constexpr int kIndexInFileMessages = 55; + friend void swap(requestMapProcessingResponse& a, requestMapProcessingResponse& b) { a.Swap(&b); } + inline void Swap(requestMapProcessingResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -3463,7 +3463,7 @@ class registerClientResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(registerClientResponse* other) { + void UnsafeArenaSwap(requestMapProcessingResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3471,13 +3471,13 @@ class registerClientResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - registerClientResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + requestMapProcessingResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const registerClientResponse& from); + void CopyFrom(const requestMapProcessingResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const registerClientResponse& from) { registerClientResponse::MergeImpl(*this, from); } + void MergeFrom(const requestMapProcessingResponse& from) { requestMapProcessingResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3498,16 +3498,16 @@ class registerClientResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(registerClientResponse* other); + void InternalSwap(requestMapProcessingResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.registerClientResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.requestMapProcessingResponse"; } protected: - explicit registerClientResponse(::google::protobuf::Arena* arena); - registerClientResponse(::google::protobuf::Arena* arena, const registerClientResponse& from); - registerClientResponse(::google::protobuf::Arena* arena, registerClientResponse&& from) noexcept - : registerClientResponse(arena) { + explicit requestMapProcessingResponse(::google::protobuf::Arena* arena); + requestMapProcessingResponse(::google::protobuf::Arena* arena, const requestMapProcessingResponse& from); + requestMapProcessingResponse(::google::protobuf::Arena* arena, requestMapProcessingResponse&& from) noexcept + : requestMapProcessingResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -3518,26 +3518,9 @@ class registerClientResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kClientUUIDFieldNumber = 1, - kXpcfGrpcReturnValueFieldNumber = 2, + kXpcfGrpcReturnValueFieldNumber = 1, }; - // string clientUUID = 1; - void clear_clientuuid() ; - const std::string& clientuuid() const; - template - void set_clientuuid(Arg_&& arg, Args_... args); - std::string* mutable_clientuuid(); - PROTOBUF_NODISCARD std::string* release_clientuuid(); - void set_allocated_clientuuid(std::string* value); - - private: - const std::string& _internal_clientuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( - const std::string& value); - std::string* _internal_mutable_clientuuid(); - - public: - // sint32 xpcfGrpcReturnValue = 2; + // sint32 xpcfGrpcReturnValue = 1; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -3547,17 +3530,17 @@ class registerClientResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.registerClientResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.requestMapProcessingResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 1, 2, 0, - 55, 2> + 0, 1, 0, + 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_registerClientResponse_default_instance_; + &_requestMapProcessingResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3572,8 +3555,7 @@ class registerClientResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const registerClientResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr clientuuid_; + const requestMapProcessingResponse& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -3583,23 +3565,23 @@ class registerClientResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class registerClientRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.registerClientRequest) */ { +class requestMapProcessingRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.requestMapProcessingRequest) */ { public: - inline registerClientRequest() : registerClientRequest(nullptr) {} - ~registerClientRequest() override; + inline requestMapProcessingRequest() : requestMapProcessingRequest(nullptr) {} + ~requestMapProcessingRequest() override; template - explicit PROTOBUF_CONSTEXPR registerClientRequest( + explicit PROTOBUF_CONSTEXPR requestMapProcessingRequest( ::google::protobuf::internal::ConstantInitialized); - inline registerClientRequest(const registerClientRequest& from) : registerClientRequest(nullptr, from) {} - inline registerClientRequest(registerClientRequest&& from) noexcept - : registerClientRequest(nullptr, std::move(from)) {} - inline registerClientRequest& operator=(const registerClientRequest& from) { + inline requestMapProcessingRequest(const requestMapProcessingRequest& from) : requestMapProcessingRequest(nullptr, from) {} + inline requestMapProcessingRequest(requestMapProcessingRequest&& from) noexcept + : requestMapProcessingRequest(nullptr, std::move(from)) {} + inline requestMapProcessingRequest& operator=(const requestMapProcessingRequest& from) { CopyFrom(from); return *this; } - inline registerClientRequest& operator=(registerClientRequest&& from) noexcept { + inline requestMapProcessingRequest& operator=(requestMapProcessingRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3631,16 +3613,16 @@ class registerClientRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const registerClientRequest& default_instance() { + static const requestMapProcessingRequest& default_instance() { return *internal_default_instance(); } - static inline const registerClientRequest* internal_default_instance() { - return reinterpret_cast( - &_registerClientRequest_default_instance_); + static inline const requestMapProcessingRequest* internal_default_instance() { + return reinterpret_cast( + &_requestMapProcessingRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 0; - friend void swap(registerClientRequest& a, registerClientRequest& b) { a.Swap(&b); } - inline void Swap(registerClientRequest* other) { + static constexpr int kIndexInFileMessages = 54; + friend void swap(requestMapProcessingRequest& a, requestMapProcessingRequest& b) { a.Swap(&b); } + inline void Swap(requestMapProcessingRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -3652,7 +3634,7 @@ class registerClientRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(registerClientRequest* other) { + void UnsafeArenaSwap(requestMapProcessingRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3660,13 +3642,13 @@ class registerClientRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - registerClientRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + requestMapProcessingRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const registerClientRequest& from); + void CopyFrom(const requestMapProcessingRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const registerClientRequest& from) { registerClientRequest::MergeImpl(*this, from); } + void MergeFrom(const requestMapProcessingRequest& from) { requestMapProcessingRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3687,16 +3669,16 @@ class registerClientRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(registerClientRequest* other); + void InternalSwap(requestMapProcessingRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.registerClientRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.requestMapProcessingRequest"; } protected: - explicit registerClientRequest(::google::protobuf::Arena* arena); - registerClientRequest(::google::protobuf::Arena* arena, const registerClientRequest& from); - registerClientRequest(::google::protobuf::Arena* arena, registerClientRequest&& from) noexcept - : registerClientRequest(arena) { + explicit requestMapProcessingRequest(::google::protobuf::Arena* arena); + requestMapProcessingRequest(::google::protobuf::Arena* arena, const requestMapProcessingRequest& from); + requestMapProcessingRequest(::google::protobuf::Arena* arena, requestMapProcessingRequest&& from) noexcept + : requestMapProcessingRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -3708,10 +3690,10 @@ class registerClientRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kDeviceInfoFieldNumber = 3, - kWorldElementUUIDFieldNumber = 4, - kClientUUIDFieldNumber = 5, + kMapUUIDFieldNumber = 3, + kResultMapUUIDFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, + kProcessingTypeFieldNumber = 5, }; // string accessToken = 2; void clear_accesstoken() ; @@ -3729,52 +3711,36 @@ class registerClientRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // bytes deviceInfo = 3; - void clear_deviceinfo() ; - const std::string& deviceinfo() const; + // string mapUUID = 3; + void clear_mapuuid() ; + const std::string& mapuuid() const; template - void set_deviceinfo(Arg_&& arg, Args_... args); - std::string* mutable_deviceinfo(); - PROTOBUF_NODISCARD std::string* release_deviceinfo(); - void set_allocated_deviceinfo(std::string* value); + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); private: - const std::string& _internal_deviceinfo() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_deviceinfo( - const std::string& value); - std::string* _internal_mutable_deviceinfo(); - - public: - // string worldElementUUID = 4; - void clear_worldelementuuid() ; - const std::string& worldelementuuid() const; - template - void set_worldelementuuid(Arg_&& arg, Args_... args); - std::string* mutable_worldelementuuid(); - PROTOBUF_NODISCARD std::string* release_worldelementuuid(); - void set_allocated_worldelementuuid(std::string* value); - - private: - const std::string& _internal_worldelementuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_worldelementuuid( + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( const std::string& value); - std::string* _internal_mutable_worldelementuuid(); + std::string* _internal_mutable_mapuuid(); public: - // string clientUUID = 5; - void clear_clientuuid() ; - const std::string& clientuuid() const; + // string resultMapUUID = 4; + void clear_resultmapuuid() ; + const std::string& resultmapuuid() const; template - void set_clientuuid(Arg_&& arg, Args_... args); - std::string* mutable_clientuuid(); - PROTOBUF_NODISCARD std::string* release_clientuuid(); - void set_allocated_clientuuid(std::string* value); + void set_resultmapuuid(Arg_&& arg, Args_... args); + std::string* mutable_resultmapuuid(); + PROTOBUF_NODISCARD std::string* release_resultmapuuid(); + void set_allocated_resultmapuuid(std::string* value); private: - const std::string& _internal_clientuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( + const std::string& _internal_resultmapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_resultmapuuid( const std::string& value); - std::string* _internal_mutable_clientuuid(); + std::string* _internal_mutable_resultmapuuid(); public: // int32 grpcServerCompressionFormat = 1; @@ -3787,7 +3753,17 @@ class registerClientRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.registerClientRequest) + // sint32 processingType = 5; + void clear_processingtype() ; + ::int32_t processingtype() const; + void set_processingtype(::int32_t value); + + private: + ::int32_t _internal_processingtype() const; + void _internal_set_processingtype(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.requestMapProcessingRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -3797,7 +3773,7 @@ class registerClientRequest final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_registerClientRequest_default_instance_; + &_requestMapProcessingRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3812,12 +3788,12 @@ class registerClientRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const registerClientRequest& from_msg); + const requestMapProcessingRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr deviceinfo_; - ::google::protobuf::internal::ArenaStringPtr worldelementuuid_; - ::google::protobuf::internal::ArenaStringPtr clientuuid_; + ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr resultmapuuid_; ::int32_t grpcservercompressionformat_; + ::int32_t processingtype_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -3826,23 +3802,23 @@ class registerClientRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class init_grpc1Response final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.init_grpc1Response) */ { +class registerClientResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.registerClientResponse) */ { public: - inline init_grpc1Response() : init_grpc1Response(nullptr) {} - ~init_grpc1Response() override; + inline registerClientResponse() : registerClientResponse(nullptr) {} + ~registerClientResponse() override; template - explicit PROTOBUF_CONSTEXPR init_grpc1Response( + explicit PROTOBUF_CONSTEXPR registerClientResponse( ::google::protobuf::internal::ConstantInitialized); - inline init_grpc1Response(const init_grpc1Response& from) : init_grpc1Response(nullptr, from) {} - inline init_grpc1Response(init_grpc1Response&& from) noexcept - : init_grpc1Response(nullptr, std::move(from)) {} - inline init_grpc1Response& operator=(const init_grpc1Response& from) { + inline registerClientResponse(const registerClientResponse& from) : registerClientResponse(nullptr, from) {} + inline registerClientResponse(registerClientResponse&& from) noexcept + : registerClientResponse(nullptr, std::move(from)) {} + inline registerClientResponse& operator=(const registerClientResponse& from) { CopyFrom(from); return *this; } - inline init_grpc1Response& operator=(init_grpc1Response&& from) noexcept { + inline registerClientResponse& operator=(registerClientResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3874,16 +3850,16 @@ class init_grpc1Response final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const init_grpc1Response& default_instance() { + static const registerClientResponse& default_instance() { return *internal_default_instance(); } - static inline const init_grpc1Response* internal_default_instance() { - return reinterpret_cast( - &_init_grpc1Response_default_instance_); + static inline const registerClientResponse* internal_default_instance() { + return reinterpret_cast( + &_registerClientResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 11; - friend void swap(init_grpc1Response& a, init_grpc1Response& b) { a.Swap(&b); } - inline void Swap(init_grpc1Response* other) { + static constexpr int kIndexInFileMessages = 1; + friend void swap(registerClientResponse& a, registerClientResponse& b) { a.Swap(&b); } + inline void Swap(registerClientResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -3895,7 +3871,7 @@ class init_grpc1Response final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(init_grpc1Response* other) { + void UnsafeArenaSwap(registerClientResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3903,13 +3879,13 @@ class init_grpc1Response final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - init_grpc1Response* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + registerClientResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const init_grpc1Response& from); + void CopyFrom(const registerClientResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const init_grpc1Response& from) { init_grpc1Response::MergeImpl(*this, from); } + void MergeFrom(const registerClientResponse& from) { registerClientResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3930,16 +3906,16 @@ class init_grpc1Response final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(init_grpc1Response* other); + void InternalSwap(registerClientResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.init_grpc1Response"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.registerClientResponse"; } protected: - explicit init_grpc1Response(::google::protobuf::Arena* arena); - init_grpc1Response(::google::protobuf::Arena* arena, const init_grpc1Response& from); - init_grpc1Response(::google::protobuf::Arena* arena, init_grpc1Response&& from) noexcept - : init_grpc1Response(arena) { + explicit registerClientResponse(::google::protobuf::Arena* arena); + registerClientResponse(::google::protobuf::Arena* arena, const registerClientResponse& from); + registerClientResponse(::google::protobuf::Arena* arena, registerClientResponse&& from) noexcept + : registerClientResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -3950,9 +3926,26 @@ class init_grpc1Response final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kXpcfGrpcReturnValueFieldNumber = 1, + kClientUUIDFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, }; - // sint32 xpcfGrpcReturnValue = 1; + // string clientUUID = 1; + void clear_clientuuid() ; + const std::string& clientuuid() const; + template + void set_clientuuid(Arg_&& arg, Args_... args); + std::string* mutable_clientuuid(); + PROTOBUF_NODISCARD std::string* release_clientuuid(); + void set_allocated_clientuuid(std::string* value); + + private: + const std::string& _internal_clientuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( + const std::string& value); + std::string* _internal_mutable_clientuuid(); + + public: + // sint32 xpcfGrpcReturnValue = 2; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -3962,17 +3955,17 @@ class init_grpc1Response final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.init_grpc1Response) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.registerClientResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 0, 1, 0, - 0, 2> + 1, 2, 0, + 55, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_init_grpc1Response_default_instance_; + &_registerClientResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3987,7 +3980,8 @@ class init_grpc1Response final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const init_grpc1Response& from_msg); + const registerClientResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr clientuuid_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -3997,23 +3991,23 @@ class init_grpc1Response final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class init_grpc1Request final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.init_grpc1Request) */ { +class registerClientRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.registerClientRequest) */ { public: - inline init_grpc1Request() : init_grpc1Request(nullptr) {} - ~init_grpc1Request() override; + inline registerClientRequest() : registerClientRequest(nullptr) {} + ~registerClientRequest() override; template - explicit PROTOBUF_CONSTEXPR init_grpc1Request( + explicit PROTOBUF_CONSTEXPR registerClientRequest( ::google::protobuf::internal::ConstantInitialized); - inline init_grpc1Request(const init_grpc1Request& from) : init_grpc1Request(nullptr, from) {} - inline init_grpc1Request(init_grpc1Request&& from) noexcept - : init_grpc1Request(nullptr, std::move(from)) {} - inline init_grpc1Request& operator=(const init_grpc1Request& from) { + inline registerClientRequest(const registerClientRequest& from) : registerClientRequest(nullptr, from) {} + inline registerClientRequest(registerClientRequest&& from) noexcept + : registerClientRequest(nullptr, std::move(from)) {} + inline registerClientRequest& operator=(const registerClientRequest& from) { CopyFrom(from); return *this; } - inline init_grpc1Request& operator=(init_grpc1Request&& from) noexcept { + inline registerClientRequest& operator=(registerClientRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4045,16 +4039,16 @@ class init_grpc1Request final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const init_grpc1Request& default_instance() { + static const registerClientRequest& default_instance() { return *internal_default_instance(); } - static inline const init_grpc1Request* internal_default_instance() { - return reinterpret_cast( - &_init_grpc1Request_default_instance_); + static inline const registerClientRequest* internal_default_instance() { + return reinterpret_cast( + &_registerClientRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 10; - friend void swap(init_grpc1Request& a, init_grpc1Request& b) { a.Swap(&b); } - inline void Swap(init_grpc1Request* other) { + static constexpr int kIndexInFileMessages = 0; + friend void swap(registerClientRequest& a, registerClientRequest& b) { a.Swap(&b); } + inline void Swap(registerClientRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -4066,7 +4060,7 @@ class init_grpc1Request final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(init_grpc1Request* other) { + void UnsafeArenaSwap(registerClientRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4074,13 +4068,13 @@ class init_grpc1Request final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - init_grpc1Request* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + registerClientRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const init_grpc1Request& from); + void CopyFrom(const registerClientRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const init_grpc1Request& from) { init_grpc1Request::MergeImpl(*this, from); } + void MergeFrom(const registerClientRequest& from) { registerClientRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4101,16 +4095,16 @@ class init_grpc1Request final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(init_grpc1Request* other); + void InternalSwap(registerClientRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.init_grpc1Request"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.registerClientRequest"; } protected: - explicit init_grpc1Request(::google::protobuf::Arena* arena); - init_grpc1Request(::google::protobuf::Arena* arena, const init_grpc1Request& from); - init_grpc1Request(::google::protobuf::Arena* arena, init_grpc1Request&& from) noexcept - : init_grpc1Request(arena) { + explicit registerClientRequest(::google::protobuf::Arena* arena); + registerClientRequest(::google::protobuf::Arena* arena, const registerClientRequest& from); + registerClientRequest(::google::protobuf::Arena* arena, registerClientRequest&& from) noexcept + : registerClientRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -4122,9 +4116,10 @@ class init_grpc1Request final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kClientUUIDFieldNumber = 3, + kDeviceInfoFieldNumber = 3, + kWorldElementUUIDFieldNumber = 4, + kClientUUIDFieldNumber = 5, kGrpcServerCompressionFormatFieldNumber = 1, - kPipelineModeFieldNumber = 4, }; // string accessToken = 2; void clear_accesstoken() ; @@ -4142,7 +4137,39 @@ class init_grpc1Request final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // string clientUUID = 3; + // bytes deviceInfo = 3; + void clear_deviceinfo() ; + const std::string& deviceinfo() const; + template + void set_deviceinfo(Arg_&& arg, Args_... args); + std::string* mutable_deviceinfo(); + PROTOBUF_NODISCARD std::string* release_deviceinfo(); + void set_allocated_deviceinfo(std::string* value); + + private: + const std::string& _internal_deviceinfo() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_deviceinfo( + const std::string& value); + std::string* _internal_mutable_deviceinfo(); + + public: + // string worldElementUUID = 4; + void clear_worldelementuuid() ; + const std::string& worldelementuuid() const; + template + void set_worldelementuuid(Arg_&& arg, Args_... args); + std::string* mutable_worldelementuuid(); + PROTOBUF_NODISCARD std::string* release_worldelementuuid(); + void set_allocated_worldelementuuid(std::string* value); + + private: + const std::string& _internal_worldelementuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_worldelementuuid( + const std::string& value); + std::string* _internal_mutable_worldelementuuid(); + + public: + // string clientUUID = 5; void clear_clientuuid() ; const std::string& clientuuid() const; template @@ -4168,27 +4195,17 @@ class init_grpc1Request final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 pipelineMode = 4; - void clear_pipelinemode() ; - ::int32_t pipelinemode() const; - void set_pipelinemode(::int32_t value); - - private: - ::int32_t _internal_pipelinemode() const; - void _internal_set_pipelinemode(::int32_t value); - - public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.init_grpc1Request) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.registerClientRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 4, 0, - 61, 2> + 3, 5, 0, + 81, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_init_grpc1Request_default_instance_; + &_registerClientRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4203,11 +4220,12 @@ class init_grpc1Request final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const init_grpc1Request& from_msg); + const registerClientRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; + ::google::protobuf::internal::ArenaStringPtr deviceinfo_; + ::google::protobuf::internal::ArenaStringPtr worldelementuuid_; ::google::protobuf::internal::ArenaStringPtr clientuuid_; ::int32_t grpcservercompressionformat_; - ::int32_t pipelinemode_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -4216,23 +4234,23 @@ class init_grpc1Request final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class init_grpc0Response final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.init_grpc0Response) */ { +class init_grpc1Response final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.init_grpc1Response) */ { public: - inline init_grpc0Response() : init_grpc0Response(nullptr) {} - ~init_grpc0Response() override; + inline init_grpc1Response() : init_grpc1Response(nullptr) {} + ~init_grpc1Response() override; template - explicit PROTOBUF_CONSTEXPR init_grpc0Response( + explicit PROTOBUF_CONSTEXPR init_grpc1Response( ::google::protobuf::internal::ConstantInitialized); - inline init_grpc0Response(const init_grpc0Response& from) : init_grpc0Response(nullptr, from) {} - inline init_grpc0Response(init_grpc0Response&& from) noexcept - : init_grpc0Response(nullptr, std::move(from)) {} - inline init_grpc0Response& operator=(const init_grpc0Response& from) { + inline init_grpc1Response(const init_grpc1Response& from) : init_grpc1Response(nullptr, from) {} + inline init_grpc1Response(init_grpc1Response&& from) noexcept + : init_grpc1Response(nullptr, std::move(from)) {} + inline init_grpc1Response& operator=(const init_grpc1Response& from) { CopyFrom(from); return *this; } - inline init_grpc0Response& operator=(init_grpc0Response&& from) noexcept { + inline init_grpc1Response& operator=(init_grpc1Response&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4264,16 +4282,16 @@ class init_grpc0Response final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const init_grpc0Response& default_instance() { + static const init_grpc1Response& default_instance() { return *internal_default_instance(); } - static inline const init_grpc0Response* internal_default_instance() { - return reinterpret_cast( - &_init_grpc0Response_default_instance_); + static inline const init_grpc1Response* internal_default_instance() { + return reinterpret_cast( + &_init_grpc1Response_default_instance_); } - static constexpr int kIndexInFileMessages = 9; - friend void swap(init_grpc0Response& a, init_grpc0Response& b) { a.Swap(&b); } - inline void Swap(init_grpc0Response* other) { + static constexpr int kIndexInFileMessages = 11; + friend void swap(init_grpc1Response& a, init_grpc1Response& b) { a.Swap(&b); } + inline void Swap(init_grpc1Response* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -4285,7 +4303,7 @@ class init_grpc0Response final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(init_grpc0Response* other) { + void UnsafeArenaSwap(init_grpc1Response* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4293,13 +4311,13 @@ class init_grpc0Response final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - init_grpc0Response* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + init_grpc1Response* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const init_grpc0Response& from); + void CopyFrom(const init_grpc1Response& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const init_grpc0Response& from) { init_grpc0Response::MergeImpl(*this, from); } + void MergeFrom(const init_grpc1Response& from) { init_grpc1Response::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4320,16 +4338,16 @@ class init_grpc0Response final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(init_grpc0Response* other); + void InternalSwap(init_grpc1Response* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.init_grpc0Response"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.init_grpc1Response"; } protected: - explicit init_grpc0Response(::google::protobuf::Arena* arena); - init_grpc0Response(::google::protobuf::Arena* arena, const init_grpc0Response& from); - init_grpc0Response(::google::protobuf::Arena* arena, init_grpc0Response&& from) noexcept - : init_grpc0Response(arena) { + explicit init_grpc1Response(::google::protobuf::Arena* arena); + init_grpc1Response(::google::protobuf::Arena* arena, const init_grpc1Response& from); + init_grpc1Response(::google::protobuf::Arena* arena, init_grpc1Response&& from) noexcept + : init_grpc1Response(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -4352,7 +4370,7 @@ class init_grpc0Response final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.init_grpc0Response) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.init_grpc1Response) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -4362,7 +4380,7 @@ class init_grpc0Response final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_init_grpc0Response_default_instance_; + &_init_grpc1Response_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4377,7 +4395,7 @@ class init_grpc0Response final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const init_grpc0Response& from_msg); + const init_grpc1Response& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -4387,23 +4405,23 @@ class init_grpc0Response final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class init_grpc0Request final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.init_grpc0Request) */ { +class init_grpc1Request final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.init_grpc1Request) */ { public: - inline init_grpc0Request() : init_grpc0Request(nullptr) {} - ~init_grpc0Request() override; + inline init_grpc1Request() : init_grpc1Request(nullptr) {} + ~init_grpc1Request() override; template - explicit PROTOBUF_CONSTEXPR init_grpc0Request( + explicit PROTOBUF_CONSTEXPR init_grpc1Request( ::google::protobuf::internal::ConstantInitialized); - inline init_grpc0Request(const init_grpc0Request& from) : init_grpc0Request(nullptr, from) {} - inline init_grpc0Request(init_grpc0Request&& from) noexcept - : init_grpc0Request(nullptr, std::move(from)) {} - inline init_grpc0Request& operator=(const init_grpc0Request& from) { + inline init_grpc1Request(const init_grpc1Request& from) : init_grpc1Request(nullptr, from) {} + inline init_grpc1Request(init_grpc1Request&& from) noexcept + : init_grpc1Request(nullptr, std::move(from)) {} + inline init_grpc1Request& operator=(const init_grpc1Request& from) { CopyFrom(from); return *this; } - inline init_grpc0Request& operator=(init_grpc0Request&& from) noexcept { + inline init_grpc1Request& operator=(init_grpc1Request&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4435,16 +4453,16 @@ class init_grpc0Request final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const init_grpc0Request& default_instance() { + static const init_grpc1Request& default_instance() { return *internal_default_instance(); } - static inline const init_grpc0Request* internal_default_instance() { - return reinterpret_cast( - &_init_grpc0Request_default_instance_); + static inline const init_grpc1Request* internal_default_instance() { + return reinterpret_cast( + &_init_grpc1Request_default_instance_); } - static constexpr int kIndexInFileMessages = 8; - friend void swap(init_grpc0Request& a, init_grpc0Request& b) { a.Swap(&b); } - inline void Swap(init_grpc0Request* other) { + static constexpr int kIndexInFileMessages = 10; + friend void swap(init_grpc1Request& a, init_grpc1Request& b) { a.Swap(&b); } + inline void Swap(init_grpc1Request* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -4456,7 +4474,7 @@ class init_grpc0Request final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(init_grpc0Request* other) { + void UnsafeArenaSwap(init_grpc1Request* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4464,13 +4482,13 @@ class init_grpc0Request final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - init_grpc0Request* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + init_grpc1Request* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const init_grpc0Request& from); + void CopyFrom(const init_grpc1Request& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const init_grpc0Request& from) { init_grpc0Request::MergeImpl(*this, from); } + void MergeFrom(const init_grpc1Request& from) { init_grpc1Request::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4491,16 +4509,16 @@ class init_grpc0Request final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(init_grpc0Request* other); + void InternalSwap(init_grpc1Request* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.init_grpc0Request"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.init_grpc1Request"; } protected: - explicit init_grpc0Request(::google::protobuf::Arena* arena); - init_grpc0Request(::google::protobuf::Arena* arena, const init_grpc0Request& from); - init_grpc0Request(::google::protobuf::Arena* arena, init_grpc0Request&& from) noexcept - : init_grpc0Request(arena) { + explicit init_grpc1Request(::google::protobuf::Arena* arena); + init_grpc1Request(::google::protobuf::Arena* arena, const init_grpc1Request& from); + init_grpc1Request(::google::protobuf::Arena* arena, init_grpc1Request&& from) noexcept + : init_grpc1Request(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -4514,6 +4532,7 @@ class init_grpc0Request final : public ::google::protobuf::Message kAccessTokenFieldNumber = 2, kClientUUIDFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, + kPipelineModeFieldNumber = 4, }; // string accessToken = 2; void clear_accesstoken() ; @@ -4557,17 +4576,27 @@ class init_grpc0Request final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.init_grpc0Request) + // sint32 pipelineMode = 4; + void clear_pipelinemode() ; + ::int32_t pipelinemode() const; + void set_pipelinemode(::int32_t value); + + private: + ::int32_t _internal_pipelinemode() const; + void _internal_set_pipelinemode(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.init_grpc1Request) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 3, 0, + 2, 4, 0, 61, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_init_grpc0Request_default_instance_; + &_init_grpc1Request_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4582,10 +4611,11 @@ class init_grpc0Request final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const init_grpc0Request& from_msg); + const init_grpc1Request& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr clientuuid_; ::int32_t grpcservercompressionformat_; + ::int32_t pipelinemode_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -4594,23 +4624,23 @@ class init_grpc0Request final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class imageProcessRequestResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.imageProcessRequestResponse) */ { +class init_grpc0Response final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.init_grpc0Response) */ { public: - inline imageProcessRequestResponse() : imageProcessRequestResponse(nullptr) {} - ~imageProcessRequestResponse() override; + inline init_grpc0Response() : init_grpc0Response(nullptr) {} + ~init_grpc0Response() override; template - explicit PROTOBUF_CONSTEXPR imageProcessRequestResponse( + explicit PROTOBUF_CONSTEXPR init_grpc0Response( ::google::protobuf::internal::ConstantInitialized); - inline imageProcessRequestResponse(const imageProcessRequestResponse& from) : imageProcessRequestResponse(nullptr, from) {} - inline imageProcessRequestResponse(imageProcessRequestResponse&& from) noexcept - : imageProcessRequestResponse(nullptr, std::move(from)) {} - inline imageProcessRequestResponse& operator=(const imageProcessRequestResponse& from) { + inline init_grpc0Response(const init_grpc0Response& from) : init_grpc0Response(nullptr, from) {} + inline init_grpc0Response(init_grpc0Response&& from) noexcept + : init_grpc0Response(nullptr, std::move(from)) {} + inline init_grpc0Response& operator=(const init_grpc0Response& from) { CopyFrom(from); return *this; } - inline imageProcessRequestResponse& operator=(imageProcessRequestResponse&& from) noexcept { + inline init_grpc0Response& operator=(init_grpc0Response&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4642,16 +4672,16 @@ class imageProcessRequestResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const imageProcessRequestResponse& default_instance() { + static const init_grpc0Response& default_instance() { return *internal_default_instance(); } - static inline const imageProcessRequestResponse* internal_default_instance() { - return reinterpret_cast( - &_imageProcessRequestResponse_default_instance_); + static inline const init_grpc0Response* internal_default_instance() { + return reinterpret_cast( + &_init_grpc0Response_default_instance_); } - static constexpr int kIndexInFileMessages = 27; - friend void swap(imageProcessRequestResponse& a, imageProcessRequestResponse& b) { a.Swap(&b); } - inline void Swap(imageProcessRequestResponse* other) { + static constexpr int kIndexInFileMessages = 9; + friend void swap(init_grpc0Response& a, init_grpc0Response& b) { a.Swap(&b); } + inline void Swap(init_grpc0Response* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -4663,7 +4693,7 @@ class imageProcessRequestResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(imageProcessRequestResponse* other) { + void UnsafeArenaSwap(init_grpc0Response* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4671,13 +4701,13 @@ class imageProcessRequestResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - imageProcessRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + init_grpc0Response* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const imageProcessRequestResponse& from); + void CopyFrom(const init_grpc0Response& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const imageProcessRequestResponse& from) { imageProcessRequestResponse::MergeImpl(*this, from); } + void MergeFrom(const init_grpc0Response& from) { init_grpc0Response::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4698,16 +4728,16 @@ class imageProcessRequestResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(imageProcessRequestResponse* other); + void InternalSwap(init_grpc0Response* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.imageProcessRequestResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.init_grpc0Response"; } protected: - explicit imageProcessRequestResponse(::google::protobuf::Arena* arena); - imageProcessRequestResponse(::google::protobuf::Arena* arena, const imageProcessRequestResponse& from); - imageProcessRequestResponse(::google::protobuf::Arena* arena, imageProcessRequestResponse&& from) noexcept - : imageProcessRequestResponse(arena) { + explicit init_grpc0Response(::google::protobuf::Arena* arena); + init_grpc0Response(::google::protobuf::Arena* arena, const init_grpc0Response& from); + init_grpc0Response(::google::protobuf::Arena* arena, init_grpc0Response&& from) noexcept + : init_grpc0Response(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -4718,102 +4748,29 @@ class imageProcessRequestResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kTransform3DFieldNumber = 2, - kConfidenceFieldNumber = 3, - kDetectedObjectsFieldNumber = 5, - kTransform3DStatusFieldNumber = 1, - kMappingStatusFieldNumber = 4, - kXpcfGrpcReturnValueFieldNumber = 6, + kXpcfGrpcReturnValueFieldNumber = 1, }; - // bytes transform3D = 2; - void clear_transform3d() ; - const std::string& transform3d() const; - template - void set_transform3d(Arg_&& arg, Args_... args); - std::string* mutable_transform3d(); - PROTOBUF_NODISCARD std::string* release_transform3d(); - void set_allocated_transform3d(std::string* value); + // sint32 xpcfGrpcReturnValue = 1; + void clear_xpcfgrpcreturnvalue() ; + ::int32_t xpcfgrpcreturnvalue() const; + void set_xpcfgrpcreturnvalue(::int32_t value); private: - const std::string& _internal_transform3d() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_transform3d( - const std::string& value); - std::string* _internal_mutable_transform3d(); + ::int32_t _internal_xpcfgrpcreturnvalue() const; + void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // bytes confidence = 3; - void clear_confidence() ; - const std::string& confidence() const; - template - void set_confidence(Arg_&& arg, Args_... args); - std::string* mutable_confidence(); - PROTOBUF_NODISCARD std::string* release_confidence(); - void set_allocated_confidence(std::string* value); + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.init_grpc0Response) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 0, 1, 0, + 0, 2> + _table_; - private: - const std::string& _internal_confidence() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_confidence( - const std::string& value); - std::string* _internal_mutable_confidence(); - - public: - // bytes detectedObjects = 5; - void clear_detectedobjects() ; - const std::string& detectedobjects() const; - template - void set_detectedobjects(Arg_&& arg, Args_... args); - std::string* mutable_detectedobjects(); - PROTOBUF_NODISCARD std::string* release_detectedobjects(); - void set_allocated_detectedobjects(std::string* value); - - private: - const std::string& _internal_detectedobjects() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_detectedobjects( - const std::string& value); - std::string* _internal_mutable_detectedobjects(); - - public: - // sint32 transform3DStatus = 1; - void clear_transform3dstatus() ; - ::int32_t transform3dstatus() const; - void set_transform3dstatus(::int32_t value); - - private: - ::int32_t _internal_transform3dstatus() const; - void _internal_set_transform3dstatus(::int32_t value); - - public: - // sint32 mappingStatus = 4; - void clear_mappingstatus() ; - ::int32_t mappingstatus() const; - void set_mappingstatus(::int32_t value); - - private: - ::int32_t _internal_mappingstatus() const; - void _internal_set_mappingstatus(::int32_t value); - - public: - // sint32 xpcfGrpcReturnValue = 6; - void clear_xpcfgrpcreturnvalue() ; - ::int32_t xpcfgrpcreturnvalue() const; - void set_xpcfgrpcreturnvalue(::int32_t value); - - private: - ::int32_t _internal_xpcfgrpcreturnvalue() const; - void _internal_set_xpcfgrpcreturnvalue(::int32_t value); - - public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.imageProcessRequestResponse) - private: - class _Internal; - friend class ::google::protobuf::internal::TcParser; - static const ::google::protobuf::internal::TcParseTable< - 3, 6, 0, - 0, 2> - _table_; - - static constexpr const void* _raw_default_instance_ = - &_imageProcessRequestResponse_default_instance_; + static constexpr const void* _raw_default_instance_ = + &_init_grpc0Response_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4828,12 +4785,7 @@ class imageProcessRequestResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const imageProcessRequestResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr transform3d_; - ::google::protobuf::internal::ArenaStringPtr confidence_; - ::google::protobuf::internal::ArenaStringPtr detectedobjects_; - ::int32_t transform3dstatus_; - ::int32_t mappingstatus_; + const init_grpc0Response& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -4843,23 +4795,23 @@ class imageProcessRequestResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class imageProcessRequestRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.imageProcessRequestRequest) */ { +class init_grpc0Request final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.init_grpc0Request) */ { public: - inline imageProcessRequestRequest() : imageProcessRequestRequest(nullptr) {} - ~imageProcessRequestRequest() override; + inline init_grpc0Request() : init_grpc0Request(nullptr) {} + ~init_grpc0Request() override; template - explicit PROTOBUF_CONSTEXPR imageProcessRequestRequest( + explicit PROTOBUF_CONSTEXPR init_grpc0Request( ::google::protobuf::internal::ConstantInitialized); - inline imageProcessRequestRequest(const imageProcessRequestRequest& from) : imageProcessRequestRequest(nullptr, from) {} - inline imageProcessRequestRequest(imageProcessRequestRequest&& from) noexcept - : imageProcessRequestRequest(nullptr, std::move(from)) {} - inline imageProcessRequestRequest& operator=(const imageProcessRequestRequest& from) { + inline init_grpc0Request(const init_grpc0Request& from) : init_grpc0Request(nullptr, from) {} + inline init_grpc0Request(init_grpc0Request&& from) noexcept + : init_grpc0Request(nullptr, std::move(from)) {} + inline init_grpc0Request& operator=(const init_grpc0Request& from) { CopyFrom(from); return *this; } - inline imageProcessRequestRequest& operator=(imageProcessRequestRequest&& from) noexcept { + inline init_grpc0Request& operator=(init_grpc0Request&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4891,16 +4843,16 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const imageProcessRequestRequest& default_instance() { + static const init_grpc0Request& default_instance() { return *internal_default_instance(); } - static inline const imageProcessRequestRequest* internal_default_instance() { - return reinterpret_cast( - &_imageProcessRequestRequest_default_instance_); + static inline const init_grpc0Request* internal_default_instance() { + return reinterpret_cast( + &_init_grpc0Request_default_instance_); } - static constexpr int kIndexInFileMessages = 26; - friend void swap(imageProcessRequestRequest& a, imageProcessRequestRequest& b) { a.Swap(&b); } - inline void Swap(imageProcessRequestRequest* other) { + static constexpr int kIndexInFileMessages = 8; + friend void swap(init_grpc0Request& a, init_grpc0Request& b) { a.Swap(&b); } + inline void Swap(init_grpc0Request* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -4912,7 +4864,7 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(imageProcessRequestRequest* other) { + void UnsafeArenaSwap(init_grpc0Request* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4920,13 +4872,13 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - imageProcessRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + init_grpc0Request* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const imageProcessRequestRequest& from); + void CopyFrom(const init_grpc0Request& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const imageProcessRequestRequest& from) { imageProcessRequestRequest::MergeImpl(*this, from); } + void MergeFrom(const init_grpc0Request& from) { init_grpc0Request::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4947,16 +4899,16 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(imageProcessRequestRequest* other); + void InternalSwap(init_grpc0Request* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.imageProcessRequestRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.init_grpc0Request"; } protected: - explicit imageProcessRequestRequest(::google::protobuf::Arena* arena); - imageProcessRequestRequest(::google::protobuf::Arena* arena, const imageProcessRequestRequest& from); - imageProcessRequestRequest(::google::protobuf::Arena* arena, imageProcessRequestRequest&& from) noexcept - : imageProcessRequestRequest(arena) { + explicit init_grpc0Request(::google::protobuf::Arena* arena); + init_grpc0Request(::google::protobuf::Arena* arena, const init_grpc0Request& from); + init_grpc0Request(::google::protobuf::Arena* arena, init_grpc0Request&& from) noexcept + : init_grpc0Request(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -4969,17 +4921,7 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message enum : int { kAccessTokenFieldNumber = 2, kClientUUIDFieldNumber = 3, - kImagesFieldNumber = 4, - kPosesFieldNumber = 5, - kWorldTransformFieldNumber = 7, - kTimestampFieldNumber = 8, - kTransform3DFieldNumber = 10, - kConfidenceFieldNumber = 11, - kDetectedObjectsFieldNumber = 13, kGrpcServerCompressionFormatFieldNumber = 1, - kFixedPoseFieldNumber = 6, - kTransform3DStatusFieldNumber = 9, - kMappingStatusFieldNumber = 12, }; // string accessToken = 2; void clear_accesstoken() ; @@ -5012,118 +4954,6 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message const std::string& value); std::string* _internal_mutable_clientuuid(); - public: - // bytes images = 4; - void clear_images() ; - const std::string& images() const; - template - void set_images(Arg_&& arg, Args_... args); - std::string* mutable_images(); - PROTOBUF_NODISCARD std::string* release_images(); - void set_allocated_images(std::string* value); - - private: - const std::string& _internal_images() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_images( - const std::string& value); - std::string* _internal_mutable_images(); - - public: - // bytes poses = 5; - void clear_poses() ; - const std::string& poses() const; - template - void set_poses(Arg_&& arg, Args_... args); - std::string* mutable_poses(); - PROTOBUF_NODISCARD std::string* release_poses(); - void set_allocated_poses(std::string* value); - - private: - const std::string& _internal_poses() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_poses( - const std::string& value); - std::string* _internal_mutable_poses(); - - public: - // bytes worldTransform = 7; - void clear_worldtransform() ; - const std::string& worldtransform() const; - template - void set_worldtransform(Arg_&& arg, Args_... args); - std::string* mutable_worldtransform(); - PROTOBUF_NODISCARD std::string* release_worldtransform(); - void set_allocated_worldtransform(std::string* value); - - private: - const std::string& _internal_worldtransform() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_worldtransform( - const std::string& value); - std::string* _internal_mutable_worldtransform(); - - public: - // bytes timestamp = 8; - void clear_timestamp() ; - const std::string& timestamp() const; - template - void set_timestamp(Arg_&& arg, Args_... args); - std::string* mutable_timestamp(); - PROTOBUF_NODISCARD std::string* release_timestamp(); - void set_allocated_timestamp(std::string* value); - - private: - const std::string& _internal_timestamp() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_timestamp( - const std::string& value); - std::string* _internal_mutable_timestamp(); - - public: - // bytes transform3D = 10; - void clear_transform3d() ; - const std::string& transform3d() const; - template - void set_transform3d(Arg_&& arg, Args_... args); - std::string* mutable_transform3d(); - PROTOBUF_NODISCARD std::string* release_transform3d(); - void set_allocated_transform3d(std::string* value); - - private: - const std::string& _internal_transform3d() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_transform3d( - const std::string& value); - std::string* _internal_mutable_transform3d(); - - public: - // bytes confidence = 11; - void clear_confidence() ; - const std::string& confidence() const; - template - void set_confidence(Arg_&& arg, Args_... args); - std::string* mutable_confidence(); - PROTOBUF_NODISCARD std::string* release_confidence(); - void set_allocated_confidence(std::string* value); - - private: - const std::string& _internal_confidence() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_confidence( - const std::string& value); - std::string* _internal_mutable_confidence(); - - public: - // bytes detectedObjects = 13; - void clear_detectedobjects() ; - const std::string& detectedobjects() const; - template - void set_detectedobjects(Arg_&& arg, Args_... args); - std::string* mutable_detectedobjects(); - PROTOBUF_NODISCARD std::string* release_detectedobjects(); - void set_allocated_detectedobjects(std::string* value); - - private: - const std::string& _internal_detectedobjects() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_detectedobjects( - const std::string& value); - std::string* _internal_mutable_detectedobjects(); - public: // int32 grpcServerCompressionFormat = 1; void clear_grpcservercompressionformat() ; @@ -5135,47 +4965,17 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // bool fixedPose = 6; - void clear_fixedpose() ; - bool fixedpose() const; - void set_fixedpose(bool value); - - private: - bool _internal_fixedpose() const; - void _internal_set_fixedpose(bool value); - - public: - // sint32 transform3DStatus = 9; - void clear_transform3dstatus() ; - ::int32_t transform3dstatus() const; - void set_transform3dstatus(::int32_t value); - - private: - ::int32_t _internal_transform3dstatus() const; - void _internal_set_transform3dstatus(::int32_t value); - - public: - // sint32 mappingStatus = 12; - void clear_mappingstatus() ; - ::int32_t mappingstatus() const; - void set_mappingstatus(::int32_t value); - - private: - ::int32_t _internal_mappingstatus() const; - void _internal_set_mappingstatus(::int32_t value); - - public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.imageProcessRequestRequest) - private: - class _Internal; - friend class ::google::protobuf::internal::TcParser; - static const ::google::protobuf::internal::TcParseTable< - 4, 13, 0, - 78, 2> - _table_; + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.init_grpc0Request) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 2, 3, 0, + 61, 2> + _table_; static constexpr const void* _raw_default_instance_ = - &_imageProcessRequestRequest_default_instance_; + &_init_grpc0Request_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -5190,20 +4990,10 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const imageProcessRequestRequest& from_msg); + const init_grpc0Request& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr clientuuid_; - ::google::protobuf::internal::ArenaStringPtr images_; - ::google::protobuf::internal::ArenaStringPtr poses_; - ::google::protobuf::internal::ArenaStringPtr worldtransform_; - ::google::protobuf::internal::ArenaStringPtr timestamp_; - ::google::protobuf::internal::ArenaStringPtr transform3d_; - ::google::protobuf::internal::ArenaStringPtr confidence_; - ::google::protobuf::internal::ArenaStringPtr detectedobjects_; ::int32_t grpcservercompressionformat_; - bool fixedpose_; - ::int32_t transform3dstatus_; - ::int32_t mappingstatus_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -5212,23 +5002,23 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getProcessingModeResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getProcessingModeResponse) */ { +class imageProcessRequestResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.imageProcessRequestResponse) */ { public: - inline getProcessingModeResponse() : getProcessingModeResponse(nullptr) {} - ~getProcessingModeResponse() override; + inline imageProcessRequestResponse() : imageProcessRequestResponse(nullptr) {} + ~imageProcessRequestResponse() override; template - explicit PROTOBUF_CONSTEXPR getProcessingModeResponse( + explicit PROTOBUF_CONSTEXPR imageProcessRequestResponse( ::google::protobuf::internal::ConstantInitialized); - inline getProcessingModeResponse(const getProcessingModeResponse& from) : getProcessingModeResponse(nullptr, from) {} - inline getProcessingModeResponse(getProcessingModeResponse&& from) noexcept - : getProcessingModeResponse(nullptr, std::move(from)) {} - inline getProcessingModeResponse& operator=(const getProcessingModeResponse& from) { + inline imageProcessRequestResponse(const imageProcessRequestResponse& from) : imageProcessRequestResponse(nullptr, from) {} + inline imageProcessRequestResponse(imageProcessRequestResponse&& from) noexcept + : imageProcessRequestResponse(nullptr, std::move(from)) {} + inline imageProcessRequestResponse& operator=(const imageProcessRequestResponse& from) { CopyFrom(from); return *this; } - inline getProcessingModeResponse& operator=(getProcessingModeResponse&& from) noexcept { + inline imageProcessRequestResponse& operator=(imageProcessRequestResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -5260,16 +5050,16 @@ class getProcessingModeResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getProcessingModeResponse& default_instance() { + static const imageProcessRequestResponse& default_instance() { return *internal_default_instance(); } - static inline const getProcessingModeResponse* internal_default_instance() { - return reinterpret_cast( - &_getProcessingModeResponse_default_instance_); + static inline const imageProcessRequestResponse* internal_default_instance() { + return reinterpret_cast( + &_imageProcessRequestResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 17; - friend void swap(getProcessingModeResponse& a, getProcessingModeResponse& b) { a.Swap(&b); } - inline void Swap(getProcessingModeResponse* other) { + static constexpr int kIndexInFileMessages = 27; + friend void swap(imageProcessRequestResponse& a, imageProcessRequestResponse& b) { a.Swap(&b); } + inline void Swap(imageProcessRequestResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -5281,7 +5071,7 @@ class getProcessingModeResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getProcessingModeResponse* other) { + void UnsafeArenaSwap(imageProcessRequestResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -5289,13 +5079,13 @@ class getProcessingModeResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getProcessingModeResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + imageProcessRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getProcessingModeResponse& from); + void CopyFrom(const imageProcessRequestResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getProcessingModeResponse& from) { getProcessingModeResponse::MergeImpl(*this, from); } + void MergeFrom(const imageProcessRequestResponse& from) { imageProcessRequestResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -5316,16 +5106,16 @@ class getProcessingModeResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getProcessingModeResponse* other); + void InternalSwap(imageProcessRequestResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getProcessingModeResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.imageProcessRequestResponse"; } protected: - explicit getProcessingModeResponse(::google::protobuf::Arena* arena); - getProcessingModeResponse(::google::protobuf::Arena* arena, const getProcessingModeResponse& from); - getProcessingModeResponse(::google::protobuf::Arena* arena, getProcessingModeResponse&& from) noexcept - : getProcessingModeResponse(arena) { + explicit imageProcessRequestResponse(::google::protobuf::Arena* arena); + imageProcessRequestResponse(::google::protobuf::Arena* arena, const imageProcessRequestResponse& from); + imageProcessRequestResponse(::google::protobuf::Arena* arena, imageProcessRequestResponse&& from) noexcept + : imageProcessRequestResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -5336,20 +5126,82 @@ class getProcessingModeResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kPipelineModeFieldNumber = 1, - kXpcfGrpcReturnValueFieldNumber = 2, + kTransform3DFieldNumber = 2, + kConfidenceFieldNumber = 3, + kDetectedObjectsFieldNumber = 5, + kTransform3DStatusFieldNumber = 1, + kMappingStatusFieldNumber = 4, + kXpcfGrpcReturnValueFieldNumber = 6, }; - // sint32 pipelineMode = 1; - void clear_pipelinemode() ; - ::int32_t pipelinemode() const; - void set_pipelinemode(::int32_t value); + // bytes transform3D = 2; + void clear_transform3d() ; + const std::string& transform3d() const; + template + void set_transform3d(Arg_&& arg, Args_... args); + std::string* mutable_transform3d(); + PROTOBUF_NODISCARD std::string* release_transform3d(); + void set_allocated_transform3d(std::string* value); private: - ::int32_t _internal_pipelinemode() const; - void _internal_set_pipelinemode(::int32_t value); + const std::string& _internal_transform3d() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_transform3d( + const std::string& value); + std::string* _internal_mutable_transform3d(); public: - // sint32 xpcfGrpcReturnValue = 2; + // bytes confidence = 3; + void clear_confidence() ; + const std::string& confidence() const; + template + void set_confidence(Arg_&& arg, Args_... args); + std::string* mutable_confidence(); + PROTOBUF_NODISCARD std::string* release_confidence(); + void set_allocated_confidence(std::string* value); + + private: + const std::string& _internal_confidence() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_confidence( + const std::string& value); + std::string* _internal_mutable_confidence(); + + public: + // bytes detectedObjects = 5; + void clear_detectedobjects() ; + const std::string& detectedobjects() const; + template + void set_detectedobjects(Arg_&& arg, Args_... args); + std::string* mutable_detectedobjects(); + PROTOBUF_NODISCARD std::string* release_detectedobjects(); + void set_allocated_detectedobjects(std::string* value); + + private: + const std::string& _internal_detectedobjects() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_detectedobjects( + const std::string& value); + std::string* _internal_mutable_detectedobjects(); + + public: + // sint32 transform3DStatus = 1; + void clear_transform3dstatus() ; + ::int32_t transform3dstatus() const; + void set_transform3dstatus(::int32_t value); + + private: + ::int32_t _internal_transform3dstatus() const; + void _internal_set_transform3dstatus(::int32_t value); + + public: + // sint32 mappingStatus = 4; + void clear_mappingstatus() ; + ::int32_t mappingstatus() const; + void set_mappingstatus(::int32_t value); + + private: + ::int32_t _internal_mappingstatus() const; + void _internal_set_mappingstatus(::int32_t value); + + public: + // sint32 xpcfGrpcReturnValue = 6; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -5359,17 +5211,17 @@ class getProcessingModeResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getProcessingModeResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.imageProcessRequestResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 1, 2, 0, + 3, 6, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getProcessingModeResponse_default_instance_; + &_imageProcessRequestResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -5384,8 +5236,12 @@ class getProcessingModeResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getProcessingModeResponse& from_msg); - ::int32_t pipelinemode_; + const imageProcessRequestResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr transform3d_; + ::google::protobuf::internal::ArenaStringPtr confidence_; + ::google::protobuf::internal::ArenaStringPtr detectedobjects_; + ::int32_t transform3dstatus_; + ::int32_t mappingstatus_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -5395,23 +5251,23 @@ class getProcessingModeResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getProcessingModeRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getProcessingModeRequest) */ { +class imageProcessRequestRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.imageProcessRequestRequest) */ { public: - inline getProcessingModeRequest() : getProcessingModeRequest(nullptr) {} - ~getProcessingModeRequest() override; + inline imageProcessRequestRequest() : imageProcessRequestRequest(nullptr) {} + ~imageProcessRequestRequest() override; template - explicit PROTOBUF_CONSTEXPR getProcessingModeRequest( + explicit PROTOBUF_CONSTEXPR imageProcessRequestRequest( ::google::protobuf::internal::ConstantInitialized); - inline getProcessingModeRequest(const getProcessingModeRequest& from) : getProcessingModeRequest(nullptr, from) {} - inline getProcessingModeRequest(getProcessingModeRequest&& from) noexcept - : getProcessingModeRequest(nullptr, std::move(from)) {} - inline getProcessingModeRequest& operator=(const getProcessingModeRequest& from) { + inline imageProcessRequestRequest(const imageProcessRequestRequest& from) : imageProcessRequestRequest(nullptr, from) {} + inline imageProcessRequestRequest(imageProcessRequestRequest&& from) noexcept + : imageProcessRequestRequest(nullptr, std::move(from)) {} + inline imageProcessRequestRequest& operator=(const imageProcessRequestRequest& from) { CopyFrom(from); return *this; } - inline getProcessingModeRequest& operator=(getProcessingModeRequest&& from) noexcept { + inline imageProcessRequestRequest& operator=(imageProcessRequestRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -5443,16 +5299,16 @@ class getProcessingModeRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getProcessingModeRequest& default_instance() { + static const imageProcessRequestRequest& default_instance() { return *internal_default_instance(); } - static inline const getProcessingModeRequest* internal_default_instance() { - return reinterpret_cast( - &_getProcessingModeRequest_default_instance_); + static inline const imageProcessRequestRequest* internal_default_instance() { + return reinterpret_cast( + &_imageProcessRequestRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 16; - friend void swap(getProcessingModeRequest& a, getProcessingModeRequest& b) { a.Swap(&b); } - inline void Swap(getProcessingModeRequest* other) { + static constexpr int kIndexInFileMessages = 26; + friend void swap(imageProcessRequestRequest& a, imageProcessRequestRequest& b) { a.Swap(&b); } + inline void Swap(imageProcessRequestRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -5464,7 +5320,7 @@ class getProcessingModeRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getProcessingModeRequest* other) { + void UnsafeArenaSwap(imageProcessRequestRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -5472,13 +5328,13 @@ class getProcessingModeRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getProcessingModeRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + imageProcessRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getProcessingModeRequest& from); + void CopyFrom(const imageProcessRequestRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getProcessingModeRequest& from) { getProcessingModeRequest::MergeImpl(*this, from); } + void MergeFrom(const imageProcessRequestRequest& from) { imageProcessRequestRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -5499,16 +5355,16 @@ class getProcessingModeRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getProcessingModeRequest* other); + void InternalSwap(imageProcessRequestRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getProcessingModeRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.imageProcessRequestRequest"; } protected: - explicit getProcessingModeRequest(::google::protobuf::Arena* arena); - getProcessingModeRequest(::google::protobuf::Arena* arena, const getProcessingModeRequest& from); - getProcessingModeRequest(::google::protobuf::Arena* arena, getProcessingModeRequest&& from) noexcept - : getProcessingModeRequest(arena) { + explicit imageProcessRequestRequest(::google::protobuf::Arena* arena); + imageProcessRequestRequest(::google::protobuf::Arena* arena, const imageProcessRequestRequest& from); + imageProcessRequestRequest(::google::protobuf::Arena* arena, imageProcessRequestRequest&& from) noexcept + : imageProcessRequestRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -5521,8 +5377,17 @@ class getProcessingModeRequest final : public ::google::protobuf::Message enum : int { kAccessTokenFieldNumber = 2, kClientUUIDFieldNumber = 3, - kGrpcServerCompressionFormatFieldNumber = 1, - kPipelineModeFieldNumber = 4, + kImagesFieldNumber = 4, + kPosesFieldNumber = 5, + kWorldTransformFieldNumber = 7, + kTimestampFieldNumber = 8, + kTransform3DFieldNumber = 10, + kConfidenceFieldNumber = 11, + kDetectedObjectsFieldNumber = 13, + kGrpcServerCompressionFormatFieldNumber = 1, + kFixedPoseFieldNumber = 6, + kTransform3DStatusFieldNumber = 9, + kMappingStatusFieldNumber = 12, }; // string accessToken = 2; void clear_accesstoken() ; @@ -5555,6 +5420,118 @@ class getProcessingModeRequest final : public ::google::protobuf::Message const std::string& value); std::string* _internal_mutable_clientuuid(); + public: + // bytes images = 4; + void clear_images() ; + const std::string& images() const; + template + void set_images(Arg_&& arg, Args_... args); + std::string* mutable_images(); + PROTOBUF_NODISCARD std::string* release_images(); + void set_allocated_images(std::string* value); + + private: + const std::string& _internal_images() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_images( + const std::string& value); + std::string* _internal_mutable_images(); + + public: + // bytes poses = 5; + void clear_poses() ; + const std::string& poses() const; + template + void set_poses(Arg_&& arg, Args_... args); + std::string* mutable_poses(); + PROTOBUF_NODISCARD std::string* release_poses(); + void set_allocated_poses(std::string* value); + + private: + const std::string& _internal_poses() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_poses( + const std::string& value); + std::string* _internal_mutable_poses(); + + public: + // bytes worldTransform = 7; + void clear_worldtransform() ; + const std::string& worldtransform() const; + template + void set_worldtransform(Arg_&& arg, Args_... args); + std::string* mutable_worldtransform(); + PROTOBUF_NODISCARD std::string* release_worldtransform(); + void set_allocated_worldtransform(std::string* value); + + private: + const std::string& _internal_worldtransform() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_worldtransform( + const std::string& value); + std::string* _internal_mutable_worldtransform(); + + public: + // bytes timestamp = 8; + void clear_timestamp() ; + const std::string& timestamp() const; + template + void set_timestamp(Arg_&& arg, Args_... args); + std::string* mutable_timestamp(); + PROTOBUF_NODISCARD std::string* release_timestamp(); + void set_allocated_timestamp(std::string* value); + + private: + const std::string& _internal_timestamp() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_timestamp( + const std::string& value); + std::string* _internal_mutable_timestamp(); + + public: + // bytes transform3D = 10; + void clear_transform3d() ; + const std::string& transform3d() const; + template + void set_transform3d(Arg_&& arg, Args_... args); + std::string* mutable_transform3d(); + PROTOBUF_NODISCARD std::string* release_transform3d(); + void set_allocated_transform3d(std::string* value); + + private: + const std::string& _internal_transform3d() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_transform3d( + const std::string& value); + std::string* _internal_mutable_transform3d(); + + public: + // bytes confidence = 11; + void clear_confidence() ; + const std::string& confidence() const; + template + void set_confidence(Arg_&& arg, Args_... args); + std::string* mutable_confidence(); + PROTOBUF_NODISCARD std::string* release_confidence(); + void set_allocated_confidence(std::string* value); + + private: + const std::string& _internal_confidence() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_confidence( + const std::string& value); + std::string* _internal_mutable_confidence(); + + public: + // bytes detectedObjects = 13; + void clear_detectedobjects() ; + const std::string& detectedobjects() const; + template + void set_detectedobjects(Arg_&& arg, Args_... args); + std::string* mutable_detectedobjects(); + PROTOBUF_NODISCARD std::string* release_detectedobjects(); + void set_allocated_detectedobjects(std::string* value); + + private: + const std::string& _internal_detectedobjects() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_detectedobjects( + const std::string& value); + std::string* _internal_mutable_detectedobjects(); + public: // int32 grpcServerCompressionFormat = 1; void clear_grpcservercompressionformat() ; @@ -5566,27 +5543,47 @@ class getProcessingModeRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 pipelineMode = 4; - void clear_pipelinemode() ; - ::int32_t pipelinemode() const; - void set_pipelinemode(::int32_t value); + // bool fixedPose = 6; + void clear_fixedpose() ; + bool fixedpose() const; + void set_fixedpose(bool value); private: - ::int32_t _internal_pipelinemode() const; - void _internal_set_pipelinemode(::int32_t value); + bool _internal_fixedpose() const; + void _internal_set_fixedpose(bool value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getProcessingModeRequest) + // sint32 transform3DStatus = 9; + void clear_transform3dstatus() ; + ::int32_t transform3dstatus() const; + void set_transform3dstatus(::int32_t value); + + private: + ::int32_t _internal_transform3dstatus() const; + void _internal_set_transform3dstatus(::int32_t value); + + public: + // sint32 mappingStatus = 12; + void clear_mappingstatus() ; + ::int32_t mappingstatus() const; + void set_mappingstatus(::int32_t value); + + private: + ::int32_t _internal_mappingstatus() const; + void _internal_set_mappingstatus(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.imageProcessRequestRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 4, 0, - 68, 2> + 4, 13, 0, + 78, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getProcessingModeRequest_default_instance_; + &_imageProcessRequestRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -5601,11 +5598,20 @@ class getProcessingModeRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getProcessingModeRequest& from_msg); + const imageProcessRequestRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr clientuuid_; + ::google::protobuf::internal::ArenaStringPtr images_; + ::google::protobuf::internal::ArenaStringPtr poses_; + ::google::protobuf::internal::ArenaStringPtr worldtransform_; + ::google::protobuf::internal::ArenaStringPtr timestamp_; + ::google::protobuf::internal::ArenaStringPtr transform3d_; + ::google::protobuf::internal::ArenaStringPtr confidence_; + ::google::protobuf::internal::ArenaStringPtr detectedobjects_; ::int32_t grpcservercompressionformat_; - ::int32_t pipelinemode_; + bool fixedpose_; + ::int32_t transform3dstatus_; + ::int32_t mappingstatus_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -5614,23 +5620,23 @@ class getProcessingModeRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getPointCloudRequestResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getPointCloudRequestResponse) */ { +class getProcessingModeResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getProcessingModeResponse) */ { public: - inline getPointCloudRequestResponse() : getPointCloudRequestResponse(nullptr) {} - ~getPointCloudRequestResponse() override; + inline getProcessingModeResponse() : getProcessingModeResponse(nullptr) {} + ~getProcessingModeResponse() override; template - explicit PROTOBUF_CONSTEXPR getPointCloudRequestResponse( + explicit PROTOBUF_CONSTEXPR getProcessingModeResponse( ::google::protobuf::internal::ConstantInitialized); - inline getPointCloudRequestResponse(const getPointCloudRequestResponse& from) : getPointCloudRequestResponse(nullptr, from) {} - inline getPointCloudRequestResponse(getPointCloudRequestResponse&& from) noexcept - : getPointCloudRequestResponse(nullptr, std::move(from)) {} - inline getPointCloudRequestResponse& operator=(const getPointCloudRequestResponse& from) { + inline getProcessingModeResponse(const getProcessingModeResponse& from) : getProcessingModeResponse(nullptr, from) {} + inline getProcessingModeResponse(getProcessingModeResponse&& from) noexcept + : getProcessingModeResponse(nullptr, std::move(from)) {} + inline getProcessingModeResponse& operator=(const getProcessingModeResponse& from) { CopyFrom(from); return *this; } - inline getPointCloudRequestResponse& operator=(getPointCloudRequestResponse&& from) noexcept { + inline getProcessingModeResponse& operator=(getProcessingModeResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -5662,16 +5668,16 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getPointCloudRequestResponse& default_instance() { + static const getProcessingModeResponse& default_instance() { return *internal_default_instance(); } - static inline const getPointCloudRequestResponse* internal_default_instance() { - return reinterpret_cast( - &_getPointCloudRequestResponse_default_instance_); + static inline const getProcessingModeResponse* internal_default_instance() { + return reinterpret_cast( + &_getProcessingModeResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 47; - friend void swap(getPointCloudRequestResponse& a, getPointCloudRequestResponse& b) { a.Swap(&b); } - inline void Swap(getPointCloudRequestResponse* other) { + static constexpr int kIndexInFileMessages = 17; + friend void swap(getProcessingModeResponse& a, getProcessingModeResponse& b) { a.Swap(&b); } + inline void Swap(getProcessingModeResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -5683,7 +5689,7 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getPointCloudRequestResponse* other) { + void UnsafeArenaSwap(getProcessingModeResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -5691,13 +5697,13 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getPointCloudRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getProcessingModeResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getPointCloudRequestResponse& from); + void CopyFrom(const getProcessingModeResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getPointCloudRequestResponse& from) { getPointCloudRequestResponse::MergeImpl(*this, from); } + void MergeFrom(const getProcessingModeResponse& from) { getProcessingModeResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -5718,16 +5724,16 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getPointCloudRequestResponse* other); + void InternalSwap(getProcessingModeResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getPointCloudRequestResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getProcessingModeResponse"; } protected: - explicit getPointCloudRequestResponse(::google::protobuf::Arena* arena); - getPointCloudRequestResponse(::google::protobuf::Arena* arena, const getPointCloudRequestResponse& from); - getPointCloudRequestResponse(::google::protobuf::Arena* arena, getPointCloudRequestResponse&& from) noexcept - : getPointCloudRequestResponse(arena) { + explicit getProcessingModeResponse(::google::protobuf::Arena* arena); + getProcessingModeResponse(::google::protobuf::Arena* arena, const getProcessingModeResponse& from); + getProcessingModeResponse(::google::protobuf::Arena* arena, getProcessingModeResponse&& from) noexcept + : getProcessingModeResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -5738,23 +5744,17 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kPointCloudFieldNumber = 1, + kPipelineModeFieldNumber = 1, kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes pointCloud = 1; - void clear_pointcloud() ; - const std::string& pointcloud() const; - template - void set_pointcloud(Arg_&& arg, Args_... args); - std::string* mutable_pointcloud(); - PROTOBUF_NODISCARD std::string* release_pointcloud(); - void set_allocated_pointcloud(std::string* value); + // sint32 pipelineMode = 1; + void clear_pipelinemode() ; + ::int32_t pipelinemode() const; + void set_pipelinemode(::int32_t value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( - const std::string& value); - std::string* _internal_mutable_pointcloud(); + ::int32_t _internal_pipelinemode() const; + void _internal_set_pipelinemode(::int32_t value); public: // sint32 xpcfGrpcReturnValue = 2; @@ -5767,7 +5767,7 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getPointCloudRequestResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getProcessingModeResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -5777,7 +5777,7 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_getPointCloudRequestResponse_default_instance_; + &_getProcessingModeResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -5792,8 +5792,8 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getPointCloudRequestResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr pointcloud_; + const getProcessingModeResponse& from_msg); + ::int32_t pipelinemode_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -5803,23 +5803,23 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getPointCloudRequestRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getPointCloudRequestRequest) */ { +class getProcessingModeRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getProcessingModeRequest) */ { public: - inline getPointCloudRequestRequest() : getPointCloudRequestRequest(nullptr) {} - ~getPointCloudRequestRequest() override; + inline getProcessingModeRequest() : getProcessingModeRequest(nullptr) {} + ~getProcessingModeRequest() override; template - explicit PROTOBUF_CONSTEXPR getPointCloudRequestRequest( + explicit PROTOBUF_CONSTEXPR getProcessingModeRequest( ::google::protobuf::internal::ConstantInitialized); - inline getPointCloudRequestRequest(const getPointCloudRequestRequest& from) : getPointCloudRequestRequest(nullptr, from) {} - inline getPointCloudRequestRequest(getPointCloudRequestRequest&& from) noexcept - : getPointCloudRequestRequest(nullptr, std::move(from)) {} - inline getPointCloudRequestRequest& operator=(const getPointCloudRequestRequest& from) { + inline getProcessingModeRequest(const getProcessingModeRequest& from) : getProcessingModeRequest(nullptr, from) {} + inline getProcessingModeRequest(getProcessingModeRequest&& from) noexcept + : getProcessingModeRequest(nullptr, std::move(from)) {} + inline getProcessingModeRequest& operator=(const getProcessingModeRequest& from) { CopyFrom(from); return *this; } - inline getPointCloudRequestRequest& operator=(getPointCloudRequestRequest&& from) noexcept { + inline getProcessingModeRequest& operator=(getProcessingModeRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -5851,16 +5851,16 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getPointCloudRequestRequest& default_instance() { + static const getProcessingModeRequest& default_instance() { return *internal_default_instance(); } - static inline const getPointCloudRequestRequest* internal_default_instance() { - return reinterpret_cast( - &_getPointCloudRequestRequest_default_instance_); + static inline const getProcessingModeRequest* internal_default_instance() { + return reinterpret_cast( + &_getProcessingModeRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 46; - friend void swap(getPointCloudRequestRequest& a, getPointCloudRequestRequest& b) { a.Swap(&b); } - inline void Swap(getPointCloudRequestRequest* other) { + static constexpr int kIndexInFileMessages = 16; + friend void swap(getProcessingModeRequest& a, getProcessingModeRequest& b) { a.Swap(&b); } + inline void Swap(getProcessingModeRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -5872,7 +5872,7 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getPointCloudRequestRequest* other) { + void UnsafeArenaSwap(getProcessingModeRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -5880,13 +5880,13 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getPointCloudRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getProcessingModeRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getPointCloudRequestRequest& from); + void CopyFrom(const getProcessingModeRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getPointCloudRequestRequest& from) { getPointCloudRequestRequest::MergeImpl(*this, from); } + void MergeFrom(const getProcessingModeRequest& from) { getProcessingModeRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -5907,16 +5907,16 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getPointCloudRequestRequest* other); + void InternalSwap(getProcessingModeRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getPointCloudRequestRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getProcessingModeRequest"; } protected: - explicit getPointCloudRequestRequest(::google::protobuf::Arena* arena); - getPointCloudRequestRequest(::google::protobuf::Arena* arena, const getPointCloudRequestRequest& from); - getPointCloudRequestRequest(::google::protobuf::Arena* arena, getPointCloudRequestRequest&& from) noexcept - : getPointCloudRequestRequest(arena) { + explicit getProcessingModeRequest(::google::protobuf::Arena* arena); + getProcessingModeRequest(::google::protobuf::Arena* arena, const getProcessingModeRequest& from); + getProcessingModeRequest(::google::protobuf::Arena* arena, getProcessingModeRequest&& from) noexcept + : getProcessingModeRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -5928,9 +5928,9 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kMapUUIDFieldNumber = 3, - kPointCloudFieldNumber = 4, + kClientUUIDFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, + kPipelineModeFieldNumber = 4, }; // string accessToken = 2; void clear_accesstoken() ; @@ -5948,36 +5948,20 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // string mapUUID = 3; - void clear_mapuuid() ; - const std::string& mapuuid() const; - template - void set_mapuuid(Arg_&& arg, Args_... args); - std::string* mutable_mapuuid(); - PROTOBUF_NODISCARD std::string* release_mapuuid(); - void set_allocated_mapuuid(std::string* value); - - private: - const std::string& _internal_mapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( - const std::string& value); - std::string* _internal_mutable_mapuuid(); - - public: - // bytes pointCloud = 4; - void clear_pointcloud() ; - const std::string& pointcloud() const; + // string clientUUID = 3; + void clear_clientuuid() ; + const std::string& clientuuid() const; template - void set_pointcloud(Arg_&& arg, Args_... args); - std::string* mutable_pointcloud(); - PROTOBUF_NODISCARD std::string* release_pointcloud(); - void set_allocated_pointcloud(std::string* value); + void set_clientuuid(Arg_&& arg, Args_... args); + std::string* mutable_clientuuid(); + PROTOBUF_NODISCARD std::string* release_clientuuid(); + void set_allocated_clientuuid(std::string* value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& _internal_clientuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( const std::string& value); - std::string* _internal_mutable_pointcloud(); + std::string* _internal_mutable_clientuuid(); public: // int32 grpcServerCompressionFormat = 1; @@ -5990,7 +5974,17 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getPointCloudRequestRequest) + // sint32 pipelineMode = 4; + void clear_pipelinemode() ; + ::int32_t pipelinemode() const; + void set_pipelinemode(::int32_t value); + + private: + ::int32_t _internal_pipelinemode() const; + void _internal_set_pipelinemode(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getProcessingModeRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -6000,7 +5994,7 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_getPointCloudRequestRequest_default_instance_; + &_getProcessingModeRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -6015,11 +6009,11 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getPointCloudRequestRequest& from_msg); + const getProcessingModeRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr clientuuid_; ::int32_t grpcservercompressionformat_; + ::int32_t pipelinemode_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -6028,23 +6022,23 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMappingDataRequestResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMappingDataRequestResponse) */ { +class getPointCloudRequestResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getPointCloudRequestResponse) */ { public: - inline getMappingDataRequestResponse() : getMappingDataRequestResponse(nullptr) {} - ~getMappingDataRequestResponse() override; + inline getPointCloudRequestResponse() : getPointCloudRequestResponse(nullptr) {} + ~getPointCloudRequestResponse() override; template - explicit PROTOBUF_CONSTEXPR getMappingDataRequestResponse( + explicit PROTOBUF_CONSTEXPR getPointCloudRequestResponse( ::google::protobuf::internal::ConstantInitialized); - inline getMappingDataRequestResponse(const getMappingDataRequestResponse& from) : getMappingDataRequestResponse(nullptr, from) {} - inline getMappingDataRequestResponse(getMappingDataRequestResponse&& from) noexcept - : getMappingDataRequestResponse(nullptr, std::move(from)) {} - inline getMappingDataRequestResponse& operator=(const getMappingDataRequestResponse& from) { + inline getPointCloudRequestResponse(const getPointCloudRequestResponse& from) : getPointCloudRequestResponse(nullptr, from) {} + inline getPointCloudRequestResponse(getPointCloudRequestResponse&& from) noexcept + : getPointCloudRequestResponse(nullptr, std::move(from)) {} + inline getPointCloudRequestResponse& operator=(const getPointCloudRequestResponse& from) { CopyFrom(from); return *this; } - inline getMappingDataRequestResponse& operator=(getMappingDataRequestResponse&& from) noexcept { + inline getPointCloudRequestResponse& operator=(getPointCloudRequestResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -6076,16 +6070,16 @@ class getMappingDataRequestResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMappingDataRequestResponse& default_instance() { + static const getPointCloudRequestResponse& default_instance() { return *internal_default_instance(); } - static inline const getMappingDataRequestResponse* internal_default_instance() { - return reinterpret_cast( - &_getMappingDataRequestResponse_default_instance_); + static inline const getPointCloudRequestResponse* internal_default_instance() { + return reinterpret_cast( + &_getPointCloudRequestResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 29; - friend void swap(getMappingDataRequestResponse& a, getMappingDataRequestResponse& b) { a.Swap(&b); } - inline void Swap(getMappingDataRequestResponse* other) { + static constexpr int kIndexInFileMessages = 47; + friend void swap(getPointCloudRequestResponse& a, getPointCloudRequestResponse& b) { a.Swap(&b); } + inline void Swap(getPointCloudRequestResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -6097,7 +6091,7 @@ class getMappingDataRequestResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMappingDataRequestResponse* other) { + void UnsafeArenaSwap(getPointCloudRequestResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -6105,13 +6099,13 @@ class getMappingDataRequestResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMappingDataRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getPointCloudRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMappingDataRequestResponse& from); + void CopyFrom(const getPointCloudRequestResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMappingDataRequestResponse& from) { getMappingDataRequestResponse::MergeImpl(*this, from); } + void MergeFrom(const getPointCloudRequestResponse& from) { getPointCloudRequestResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -6132,16 +6126,16 @@ class getMappingDataRequestResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMappingDataRequestResponse* other); + void InternalSwap(getPointCloudRequestResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMappingDataRequestResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getPointCloudRequestResponse"; } protected: - explicit getMappingDataRequestResponse(::google::protobuf::Arena* arena); - getMappingDataRequestResponse(::google::protobuf::Arena* arena, const getMappingDataRequestResponse& from); - getMappingDataRequestResponse(::google::protobuf::Arena* arena, getMappingDataRequestResponse&& from) noexcept - : getMappingDataRequestResponse(arena) { + explicit getPointCloudRequestResponse(::google::protobuf::Arena* arena); + getPointCloudRequestResponse(::google::protobuf::Arena* arena, const getPointCloudRequestResponse& from); + getPointCloudRequestResponse(::google::protobuf::Arena* arena, getPointCloudRequestResponse&& from) noexcept + : getPointCloudRequestResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -6152,43 +6146,26 @@ class getMappingDataRequestResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kOutputPointCloudsFieldNumber = 1, - kKeyframePosesFieldNumber = 2, - kXpcfGrpcReturnValueFieldNumber = 3, + kPointCloudFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes outputPointClouds = 1; - void clear_outputpointclouds() ; - const std::string& outputpointclouds() const; - template - void set_outputpointclouds(Arg_&& arg, Args_... args); - std::string* mutable_outputpointclouds(); - PROTOBUF_NODISCARD std::string* release_outputpointclouds(); - void set_allocated_outputpointclouds(std::string* value); - - private: - const std::string& _internal_outputpointclouds() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_outputpointclouds( - const std::string& value); - std::string* _internal_mutable_outputpointclouds(); - - public: - // bytes keyframePoses = 2; - void clear_keyframeposes() ; - const std::string& keyframeposes() const; + // bytes pointCloud = 1; + void clear_pointcloud() ; + const std::string& pointcloud() const; template - void set_keyframeposes(Arg_&& arg, Args_... args); - std::string* mutable_keyframeposes(); - PROTOBUF_NODISCARD std::string* release_keyframeposes(); - void set_allocated_keyframeposes(std::string* value); + void set_pointcloud(Arg_&& arg, Args_... args); + std::string* mutable_pointcloud(); + PROTOBUF_NODISCARD std::string* release_pointcloud(); + void set_allocated_pointcloud(std::string* value); private: - const std::string& _internal_keyframeposes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( const std::string& value); - std::string* _internal_mutable_keyframeposes(); + std::string* _internal_mutable_pointcloud(); public: - // sint32 xpcfGrpcReturnValue = 3; + // sint32 xpcfGrpcReturnValue = 2; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -6198,17 +6175,17 @@ class getMappingDataRequestResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMappingDataRequestResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getPointCloudRequestResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 3, 0, + 1, 2, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMappingDataRequestResponse_default_instance_; + &_getPointCloudRequestResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -6223,9 +6200,8 @@ class getMappingDataRequestResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMappingDataRequestResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr outputpointclouds_; - ::google::protobuf::internal::ArenaStringPtr keyframeposes_; + const getPointCloudRequestResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr pointcloud_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -6235,23 +6211,23 @@ class getMappingDataRequestResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMappingDataRequestRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMappingDataRequestRequest) */ { +class getPointCloudRequestRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getPointCloudRequestRequest) */ { public: - inline getMappingDataRequestRequest() : getMappingDataRequestRequest(nullptr) {} - ~getMappingDataRequestRequest() override; + inline getPointCloudRequestRequest() : getPointCloudRequestRequest(nullptr) {} + ~getPointCloudRequestRequest() override; template - explicit PROTOBUF_CONSTEXPR getMappingDataRequestRequest( + explicit PROTOBUF_CONSTEXPR getPointCloudRequestRequest( ::google::protobuf::internal::ConstantInitialized); - inline getMappingDataRequestRequest(const getMappingDataRequestRequest& from) : getMappingDataRequestRequest(nullptr, from) {} - inline getMappingDataRequestRequest(getMappingDataRequestRequest&& from) noexcept - : getMappingDataRequestRequest(nullptr, std::move(from)) {} - inline getMappingDataRequestRequest& operator=(const getMappingDataRequestRequest& from) { + inline getPointCloudRequestRequest(const getPointCloudRequestRequest& from) : getPointCloudRequestRequest(nullptr, from) {} + inline getPointCloudRequestRequest(getPointCloudRequestRequest&& from) noexcept + : getPointCloudRequestRequest(nullptr, std::move(from)) {} + inline getPointCloudRequestRequest& operator=(const getPointCloudRequestRequest& from) { CopyFrom(from); return *this; } - inline getMappingDataRequestRequest& operator=(getMappingDataRequestRequest&& from) noexcept { + inline getPointCloudRequestRequest& operator=(getPointCloudRequestRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -6283,16 +6259,16 @@ class getMappingDataRequestRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMappingDataRequestRequest& default_instance() { + static const getPointCloudRequestRequest& default_instance() { return *internal_default_instance(); } - static inline const getMappingDataRequestRequest* internal_default_instance() { - return reinterpret_cast( - &_getMappingDataRequestRequest_default_instance_); - } - static constexpr int kIndexInFileMessages = 28; - friend void swap(getMappingDataRequestRequest& a, getMappingDataRequestRequest& b) { a.Swap(&b); } - inline void Swap(getMappingDataRequestRequest* other) { + static inline const getPointCloudRequestRequest* internal_default_instance() { + return reinterpret_cast( + &_getPointCloudRequestRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = 46; + friend void swap(getPointCloudRequestRequest& a, getPointCloudRequestRequest& b) { a.Swap(&b); } + inline void Swap(getPointCloudRequestRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -6304,7 +6280,7 @@ class getMappingDataRequestRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMappingDataRequestRequest* other) { + void UnsafeArenaSwap(getPointCloudRequestRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -6312,13 +6288,13 @@ class getMappingDataRequestRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMappingDataRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getPointCloudRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMappingDataRequestRequest& from); + void CopyFrom(const getPointCloudRequestRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMappingDataRequestRequest& from) { getMappingDataRequestRequest::MergeImpl(*this, from); } + void MergeFrom(const getPointCloudRequestRequest& from) { getPointCloudRequestRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -6339,16 +6315,16 @@ class getMappingDataRequestRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMappingDataRequestRequest* other); + void InternalSwap(getPointCloudRequestRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMappingDataRequestRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getPointCloudRequestRequest"; } protected: - explicit getMappingDataRequestRequest(::google::protobuf::Arena* arena); - getMappingDataRequestRequest(::google::protobuf::Arena* arena, const getMappingDataRequestRequest& from); - getMappingDataRequestRequest(::google::protobuf::Arena* arena, getMappingDataRequestRequest&& from) noexcept - : getMappingDataRequestRequest(arena) { + explicit getPointCloudRequestRequest(::google::protobuf::Arena* arena); + getPointCloudRequestRequest(::google::protobuf::Arena* arena, const getPointCloudRequestRequest& from); + getPointCloudRequestRequest(::google::protobuf::Arena* arena, getPointCloudRequestRequest&& from) noexcept + : getPointCloudRequestRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -6360,9 +6336,8 @@ class getMappingDataRequestRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kClientUUIDFieldNumber = 3, - kOutputPointCloudsFieldNumber = 4, - kKeyframePosesFieldNumber = 5, + kMapUUIDFieldNumber = 3, + kPointCloudFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, }; // string accessToken = 2; @@ -6381,52 +6356,36 @@ class getMappingDataRequestRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // string clientUUID = 3; - void clear_clientuuid() ; - const std::string& clientuuid() const; - template - void set_clientuuid(Arg_&& arg, Args_... args); - std::string* mutable_clientuuid(); - PROTOBUF_NODISCARD std::string* release_clientuuid(); - void set_allocated_clientuuid(std::string* value); - - private: - const std::string& _internal_clientuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( - const std::string& value); - std::string* _internal_mutable_clientuuid(); - - public: - // bytes outputPointClouds = 4; - void clear_outputpointclouds() ; - const std::string& outputpointclouds() const; + // string mapUUID = 3; + void clear_mapuuid() ; + const std::string& mapuuid() const; template - void set_outputpointclouds(Arg_&& arg, Args_... args); - std::string* mutable_outputpointclouds(); - PROTOBUF_NODISCARD std::string* release_outputpointclouds(); - void set_allocated_outputpointclouds(std::string* value); + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); private: - const std::string& _internal_outputpointclouds() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_outputpointclouds( + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( const std::string& value); - std::string* _internal_mutable_outputpointclouds(); + std::string* _internal_mutable_mapuuid(); public: - // bytes keyframePoses = 5; - void clear_keyframeposes() ; - const std::string& keyframeposes() const; + // bytes pointCloud = 4; + void clear_pointcloud() ; + const std::string& pointcloud() const; template - void set_keyframeposes(Arg_&& arg, Args_... args); - std::string* mutable_keyframeposes(); - PROTOBUF_NODISCARD std::string* release_keyframeposes(); - void set_allocated_keyframeposes(std::string* value); + void set_pointcloud(Arg_&& arg, Args_... args); + std::string* mutable_pointcloud(); + PROTOBUF_NODISCARD std::string* release_pointcloud(); + void set_allocated_pointcloud(std::string* value); private: - const std::string& _internal_keyframeposes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( const std::string& value); - std::string* _internal_mutable_keyframeposes(); + std::string* _internal_mutable_pointcloud(); public: // int32 grpcServerCompressionFormat = 1; @@ -6439,17 +6398,17 @@ class getMappingDataRequestRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMappingDataRequestRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getPointCloudRequestRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 5, 0, - 72, 2> + 2, 4, 0, + 68, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMappingDataRequestRequest_default_instance_; + &_getPointCloudRequestRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -6464,11 +6423,10 @@ class getMappingDataRequestRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMappingDataRequestRequest& from_msg); + const getPointCloudRequestRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr clientuuid_; - ::google::protobuf::internal::ArenaStringPtr outputpointclouds_; - ::google::protobuf::internal::ArenaStringPtr keyframeposes_; + ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr pointcloud_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -6478,23 +6436,23 @@ class getMappingDataRequestRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapRequestResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapRequestResponse) */ { +class getMappingDataRequestResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMappingDataRequestResponse) */ { public: - inline getMapRequestResponse() : getMapRequestResponse(nullptr) {} - ~getMapRequestResponse() override; + inline getMappingDataRequestResponse() : getMappingDataRequestResponse(nullptr) {} + ~getMappingDataRequestResponse() override; template - explicit PROTOBUF_CONSTEXPR getMapRequestResponse( + explicit PROTOBUF_CONSTEXPR getMappingDataRequestResponse( ::google::protobuf::internal::ConstantInitialized); - inline getMapRequestResponse(const getMapRequestResponse& from) : getMapRequestResponse(nullptr, from) {} - inline getMapRequestResponse(getMapRequestResponse&& from) noexcept - : getMapRequestResponse(nullptr, std::move(from)) {} - inline getMapRequestResponse& operator=(const getMapRequestResponse& from) { + inline getMappingDataRequestResponse(const getMappingDataRequestResponse& from) : getMappingDataRequestResponse(nullptr, from) {} + inline getMappingDataRequestResponse(getMappingDataRequestResponse&& from) noexcept + : getMappingDataRequestResponse(nullptr, std::move(from)) {} + inline getMappingDataRequestResponse& operator=(const getMappingDataRequestResponse& from) { CopyFrom(from); return *this; } - inline getMapRequestResponse& operator=(getMapRequestResponse&& from) noexcept { + inline getMappingDataRequestResponse& operator=(getMappingDataRequestResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -6526,16 +6484,16 @@ class getMapRequestResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapRequestResponse& default_instance() { + static const getMappingDataRequestResponse& default_instance() { return *internal_default_instance(); } - static inline const getMapRequestResponse* internal_default_instance() { - return reinterpret_cast( - &_getMapRequestResponse_default_instance_); + static inline const getMappingDataRequestResponse* internal_default_instance() { + return reinterpret_cast( + &_getMappingDataRequestResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 43; - friend void swap(getMapRequestResponse& a, getMapRequestResponse& b) { a.Swap(&b); } - inline void Swap(getMapRequestResponse* other) { + static constexpr int kIndexInFileMessages = 29; + friend void swap(getMappingDataRequestResponse& a, getMappingDataRequestResponse& b) { a.Swap(&b); } + inline void Swap(getMappingDataRequestResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -6547,7 +6505,7 @@ class getMapRequestResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapRequestResponse* other) { + void UnsafeArenaSwap(getMappingDataRequestResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -6555,13 +6513,13 @@ class getMapRequestResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMappingDataRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapRequestResponse& from); + void CopyFrom(const getMappingDataRequestResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapRequestResponse& from) { getMapRequestResponse::MergeImpl(*this, from); } + void MergeFrom(const getMappingDataRequestResponse& from) { getMappingDataRequestResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -6582,16 +6540,16 @@ class getMapRequestResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapRequestResponse* other); + void InternalSwap(getMappingDataRequestResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapRequestResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMappingDataRequestResponse"; } protected: - explicit getMapRequestResponse(::google::protobuf::Arena* arena); - getMapRequestResponse(::google::protobuf::Arena* arena, const getMapRequestResponse& from); - getMapRequestResponse(::google::protobuf::Arena* arena, getMapRequestResponse&& from) noexcept - : getMapRequestResponse(arena) { + explicit getMappingDataRequestResponse(::google::protobuf::Arena* arena); + getMappingDataRequestResponse(::google::protobuf::Arena* arena, const getMappingDataRequestResponse& from); + getMappingDataRequestResponse(::google::protobuf::Arena* arena, getMappingDataRequestResponse&& from) noexcept + : getMappingDataRequestResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -6602,26 +6560,43 @@ class getMapRequestResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapDatastructureFieldNumber = 1, - kXpcfGrpcReturnValueFieldNumber = 2, + kOutputPointCloudsFieldNumber = 1, + kKeyframePosesFieldNumber = 2, + kXpcfGrpcReturnValueFieldNumber = 3, }; - // bytes mapDatastructure = 1; - void clear_mapdatastructure() ; - const std::string& mapdatastructure() const; + // bytes outputPointClouds = 1; + void clear_outputpointclouds() ; + const std::string& outputpointclouds() const; template - void set_mapdatastructure(Arg_&& arg, Args_... args); - std::string* mutable_mapdatastructure(); - PROTOBUF_NODISCARD std::string* release_mapdatastructure(); - void set_allocated_mapdatastructure(std::string* value); + void set_outputpointclouds(Arg_&& arg, Args_... args); + std::string* mutable_outputpointclouds(); + PROTOBUF_NODISCARD std::string* release_outputpointclouds(); + void set_allocated_outputpointclouds(std::string* value); private: - const std::string& _internal_mapdatastructure() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapdatastructure( + const std::string& _internal_outputpointclouds() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_outputpointclouds( const std::string& value); - std::string* _internal_mutable_mapdatastructure(); + std::string* _internal_mutable_outputpointclouds(); public: - // sint32 xpcfGrpcReturnValue = 2; + // bytes keyframePoses = 2; + void clear_keyframeposes() ; + const std::string& keyframeposes() const; + template + void set_keyframeposes(Arg_&& arg, Args_... args); + std::string* mutable_keyframeposes(); + PROTOBUF_NODISCARD std::string* release_keyframeposes(); + void set_allocated_keyframeposes(std::string* value); + + private: + const std::string& _internal_keyframeposes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( + const std::string& value); + std::string* _internal_mutable_keyframeposes(); + + public: + // sint32 xpcfGrpcReturnValue = 3; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -6631,17 +6606,17 @@ class getMapRequestResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapRequestResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMappingDataRequestResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 1, 2, 0, + 2, 3, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapRequestResponse_default_instance_; + &_getMappingDataRequestResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -6656,8 +6631,9 @@ class getMapRequestResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapRequestResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr mapdatastructure_; + const getMappingDataRequestResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr outputpointclouds_; + ::google::protobuf::internal::ArenaStringPtr keyframeposes_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -6667,23 +6643,23 @@ class getMapRequestResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapRequestRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapRequestRequest) */ { +class getMappingDataRequestRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMappingDataRequestRequest) */ { public: - inline getMapRequestRequest() : getMapRequestRequest(nullptr) {} - ~getMapRequestRequest() override; + inline getMappingDataRequestRequest() : getMappingDataRequestRequest(nullptr) {} + ~getMappingDataRequestRequest() override; template - explicit PROTOBUF_CONSTEXPR getMapRequestRequest( + explicit PROTOBUF_CONSTEXPR getMappingDataRequestRequest( ::google::protobuf::internal::ConstantInitialized); - inline getMapRequestRequest(const getMapRequestRequest& from) : getMapRequestRequest(nullptr, from) {} - inline getMapRequestRequest(getMapRequestRequest&& from) noexcept - : getMapRequestRequest(nullptr, std::move(from)) {} - inline getMapRequestRequest& operator=(const getMapRequestRequest& from) { + inline getMappingDataRequestRequest(const getMappingDataRequestRequest& from) : getMappingDataRequestRequest(nullptr, from) {} + inline getMappingDataRequestRequest(getMappingDataRequestRequest&& from) noexcept + : getMappingDataRequestRequest(nullptr, std::move(from)) {} + inline getMappingDataRequestRequest& operator=(const getMappingDataRequestRequest& from) { CopyFrom(from); return *this; } - inline getMapRequestRequest& operator=(getMapRequestRequest&& from) noexcept { + inline getMappingDataRequestRequest& operator=(getMappingDataRequestRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -6715,16 +6691,16 @@ class getMapRequestRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapRequestRequest& default_instance() { + static const getMappingDataRequestRequest& default_instance() { return *internal_default_instance(); } - static inline const getMapRequestRequest* internal_default_instance() { - return reinterpret_cast( - &_getMapRequestRequest_default_instance_); + static inline const getMappingDataRequestRequest* internal_default_instance() { + return reinterpret_cast( + &_getMappingDataRequestRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 42; - friend void swap(getMapRequestRequest& a, getMapRequestRequest& b) { a.Swap(&b); } - inline void Swap(getMapRequestRequest* other) { + static constexpr int kIndexInFileMessages = 28; + friend void swap(getMappingDataRequestRequest& a, getMappingDataRequestRequest& b) { a.Swap(&b); } + inline void Swap(getMappingDataRequestRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -6736,7 +6712,7 @@ class getMapRequestRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapRequestRequest* other) { + void UnsafeArenaSwap(getMappingDataRequestRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -6744,13 +6720,13 @@ class getMapRequestRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMappingDataRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapRequestRequest& from); + void CopyFrom(const getMappingDataRequestRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapRequestRequest& from) { getMapRequestRequest::MergeImpl(*this, from); } + void MergeFrom(const getMappingDataRequestRequest& from) { getMappingDataRequestRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -6771,16 +6747,16 @@ class getMapRequestRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapRequestRequest* other); + void InternalSwap(getMappingDataRequestRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapRequestRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMappingDataRequestRequest"; } protected: - explicit getMapRequestRequest(::google::protobuf::Arena* arena); - getMapRequestRequest(::google::protobuf::Arena* arena, const getMapRequestRequest& from); - getMapRequestRequest(::google::protobuf::Arena* arena, getMapRequestRequest&& from) noexcept - : getMapRequestRequest(arena) { + explicit getMappingDataRequestRequest(::google::protobuf::Arena* arena); + getMappingDataRequestRequest(::google::protobuf::Arena* arena, const getMappingDataRequestRequest& from); + getMappingDataRequestRequest(::google::protobuf::Arena* arena, getMappingDataRequestRequest&& from) noexcept + : getMappingDataRequestRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -6792,10 +6768,10 @@ class getMapRequestRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kMapUUIDFieldNumber = 3, - kMapDatastructureFieldNumber = 5, + kClientUUIDFieldNumber = 3, + kOutputPointCloudsFieldNumber = 4, + kKeyframePosesFieldNumber = 5, kGrpcServerCompressionFormatFieldNumber = 1, - kKeyframeImagesOptionFieldNumber = 4, }; // string accessToken = 2; void clear_accesstoken() ; @@ -6813,36 +6789,52 @@ class getMapRequestRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // string mapUUID = 3; - void clear_mapuuid() ; - const std::string& mapuuid() const; + // string clientUUID = 3; + void clear_clientuuid() ; + const std::string& clientuuid() const; template - void set_mapuuid(Arg_&& arg, Args_... args); - std::string* mutable_mapuuid(); - PROTOBUF_NODISCARD std::string* release_mapuuid(); - void set_allocated_mapuuid(std::string* value); + void set_clientuuid(Arg_&& arg, Args_... args); + std::string* mutable_clientuuid(); + PROTOBUF_NODISCARD std::string* release_clientuuid(); + void set_allocated_clientuuid(std::string* value); private: - const std::string& _internal_mapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( + const std::string& _internal_clientuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( const std::string& value); - std::string* _internal_mutable_mapuuid(); + std::string* _internal_mutable_clientuuid(); public: - // bytes mapDatastructure = 5; - void clear_mapdatastructure() ; - const std::string& mapdatastructure() const; + // bytes outputPointClouds = 4; + void clear_outputpointclouds() ; + const std::string& outputpointclouds() const; template - void set_mapdatastructure(Arg_&& arg, Args_... args); - std::string* mutable_mapdatastructure(); - PROTOBUF_NODISCARD std::string* release_mapdatastructure(); - void set_allocated_mapdatastructure(std::string* value); + void set_outputpointclouds(Arg_&& arg, Args_... args); + std::string* mutable_outputpointclouds(); + PROTOBUF_NODISCARD std::string* release_outputpointclouds(); + void set_allocated_outputpointclouds(std::string* value); private: - const std::string& _internal_mapdatastructure() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapdatastructure( + const std::string& _internal_outputpointclouds() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_outputpointclouds( const std::string& value); - std::string* _internal_mutable_mapdatastructure(); + std::string* _internal_mutable_outputpointclouds(); + + public: + // bytes keyframePoses = 5; + void clear_keyframeposes() ; + const std::string& keyframeposes() const; + template + void set_keyframeposes(Arg_&& arg, Args_... args); + std::string* mutable_keyframeposes(); + PROTOBUF_NODISCARD std::string* release_keyframeposes(); + void set_allocated_keyframeposes(std::string* value); + + private: + const std::string& _internal_keyframeposes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( + const std::string& value); + std::string* _internal_mutable_keyframeposes(); public: // int32 grpcServerCompressionFormat = 1; @@ -6855,27 +6847,17 @@ class getMapRequestRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 keyframeImagesOption = 4; - void clear_keyframeimagesoption() ; - ::int32_t keyframeimagesoption() const; - void set_keyframeimagesoption(::int32_t value); - - private: - ::int32_t _internal_keyframeimagesoption() const; - void _internal_set_keyframeimagesoption(::int32_t value); - - public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapRequestRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMappingDataRequestRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 3, 5, 0, - 61, 2> + 72, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapRequestRequest_default_instance_; + &_getMappingDataRequestRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -6890,12 +6872,12 @@ class getMapRequestRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapRequestRequest& from_msg); + const getMappingDataRequestRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr mapdatastructure_; + ::google::protobuf::internal::ArenaStringPtr clientuuid_; + ::google::protobuf::internal::ArenaStringPtr outputpointclouds_; + ::google::protobuf::internal::ArenaStringPtr keyframeposes_; ::int32_t grpcservercompressionformat_; - ::int32_t keyframeimagesoption_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -6904,23 +6886,23 @@ class getMapRequestRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapProcessingStatusResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapProcessingStatusResponse) */ { +class getMapRequestResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapRequestResponse) */ { public: - inline getMapProcessingStatusResponse() : getMapProcessingStatusResponse(nullptr) {} - ~getMapProcessingStatusResponse() override; + inline getMapRequestResponse() : getMapRequestResponse(nullptr) {} + ~getMapRequestResponse() override; template - explicit PROTOBUF_CONSTEXPR getMapProcessingStatusResponse( + explicit PROTOBUF_CONSTEXPR getMapRequestResponse( ::google::protobuf::internal::ConstantInitialized); - inline getMapProcessingStatusResponse(const getMapProcessingStatusResponse& from) : getMapProcessingStatusResponse(nullptr, from) {} - inline getMapProcessingStatusResponse(getMapProcessingStatusResponse&& from) noexcept - : getMapProcessingStatusResponse(nullptr, std::move(from)) {} - inline getMapProcessingStatusResponse& operator=(const getMapProcessingStatusResponse& from) { + inline getMapRequestResponse(const getMapRequestResponse& from) : getMapRequestResponse(nullptr, from) {} + inline getMapRequestResponse(getMapRequestResponse&& from) noexcept + : getMapRequestResponse(nullptr, std::move(from)) {} + inline getMapRequestResponse& operator=(const getMapRequestResponse& from) { CopyFrom(from); return *this; } - inline getMapProcessingStatusResponse& operator=(getMapProcessingStatusResponse&& from) noexcept { + inline getMapRequestResponse& operator=(getMapRequestResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -6952,16 +6934,16 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapProcessingStatusResponse& default_instance() { + static const getMapRequestResponse& default_instance() { return *internal_default_instance(); } - static inline const getMapProcessingStatusResponse* internal_default_instance() { - return reinterpret_cast( - &_getMapProcessingStatusResponse_default_instance_); + static inline const getMapRequestResponse* internal_default_instance() { + return reinterpret_cast( + &_getMapRequestResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 53; - friend void swap(getMapProcessingStatusResponse& a, getMapProcessingStatusResponse& b) { a.Swap(&b); } - inline void Swap(getMapProcessingStatusResponse* other) { + static constexpr int kIndexInFileMessages = 43; + friend void swap(getMapRequestResponse& a, getMapRequestResponse& b) { a.Swap(&b); } + inline void Swap(getMapRequestResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -6973,7 +6955,7 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapProcessingStatusResponse* other) { + void UnsafeArenaSwap(getMapRequestResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -6981,13 +6963,13 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapProcessingStatusResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapProcessingStatusResponse& from); + void CopyFrom(const getMapRequestResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapProcessingStatusResponse& from) { getMapProcessingStatusResponse::MergeImpl(*this, from); } + void MergeFrom(const getMapRequestResponse& from) { getMapRequestResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -7008,16 +6990,16 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapProcessingStatusResponse* other); + void InternalSwap(getMapRequestResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapProcessingStatusResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapRequestResponse"; } protected: - explicit getMapProcessingStatusResponse(::google::protobuf::Arena* arena); - getMapProcessingStatusResponse(::google::protobuf::Arena* arena, const getMapProcessingStatusResponse& from); - getMapProcessingStatusResponse(::google::protobuf::Arena* arena, getMapProcessingStatusResponse&& from) noexcept - : getMapProcessingStatusResponse(arena) { + explicit getMapRequestResponse(::google::protobuf::Arena* arena); + getMapRequestResponse(::google::protobuf::Arena* arena, const getMapRequestResponse& from); + getMapRequestResponse(::google::protobuf::Arena* arena, getMapRequestResponse&& from) noexcept + : getMapRequestResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -7028,42 +7010,26 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kStatusFieldNumber = 1, - kProcessingTypeFieldNumber = 2, - kProgressFieldNumber = 3, - kXpcfGrpcReturnValueFieldNumber = 4, + kMapDatastructureFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, }; - // sint32 status = 1; - void clear_status() ; - ::int32_t status() const; - void set_status(::int32_t value); - - private: - ::int32_t _internal_status() const; - void _internal_set_status(::int32_t value); - - public: - // sint32 processingType = 2; - void clear_processingtype() ; - ::int32_t processingtype() const; - void set_processingtype(::int32_t value); - - private: - ::int32_t _internal_processingtype() const; - void _internal_set_processingtype(::int32_t value); - - public: - // float progress = 3; - void clear_progress() ; - float progress() const; - void set_progress(float value); + // bytes mapDatastructure = 1; + void clear_mapdatastructure() ; + const std::string& mapdatastructure() const; + template + void set_mapdatastructure(Arg_&& arg, Args_... args); + std::string* mutable_mapdatastructure(); + PROTOBUF_NODISCARD std::string* release_mapdatastructure(); + void set_allocated_mapdatastructure(std::string* value); private: - float _internal_progress() const; - void _internal_set_progress(float value); + const std::string& _internal_mapdatastructure() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapdatastructure( + const std::string& value); + std::string* _internal_mutable_mapdatastructure(); public: - // sint32 xpcfGrpcReturnValue = 4; + // sint32 xpcfGrpcReturnValue = 2; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -7073,17 +7039,17 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapProcessingStatusResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapRequestResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 4, 0, + 1, 2, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapProcessingStatusResponse_default_instance_; + &_getMapRequestResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -7098,10 +7064,8 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapProcessingStatusResponse& from_msg); - ::int32_t status_; - ::int32_t processingtype_; - float progress_; + const getMapRequestResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr mapdatastructure_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -7111,23 +7075,23 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapProcessingStatusRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapProcessingStatusRequest) */ { +class getMapRequestRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapRequestRequest) */ { public: - inline getMapProcessingStatusRequest() : getMapProcessingStatusRequest(nullptr) {} - ~getMapProcessingStatusRequest() override; + inline getMapRequestRequest() : getMapRequestRequest(nullptr) {} + ~getMapRequestRequest() override; template - explicit PROTOBUF_CONSTEXPR getMapProcessingStatusRequest( + explicit PROTOBUF_CONSTEXPR getMapRequestRequest( ::google::protobuf::internal::ConstantInitialized); - inline getMapProcessingStatusRequest(const getMapProcessingStatusRequest& from) : getMapProcessingStatusRequest(nullptr, from) {} - inline getMapProcessingStatusRequest(getMapProcessingStatusRequest&& from) noexcept - : getMapProcessingStatusRequest(nullptr, std::move(from)) {} - inline getMapProcessingStatusRequest& operator=(const getMapProcessingStatusRequest& from) { + inline getMapRequestRequest(const getMapRequestRequest& from) : getMapRequestRequest(nullptr, from) {} + inline getMapRequestRequest(getMapRequestRequest&& from) noexcept + : getMapRequestRequest(nullptr, std::move(from)) {} + inline getMapRequestRequest& operator=(const getMapRequestRequest& from) { CopyFrom(from); return *this; } - inline getMapProcessingStatusRequest& operator=(getMapProcessingStatusRequest&& from) noexcept { + inline getMapRequestRequest& operator=(getMapRequestRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -7159,16 +7123,16 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapProcessingStatusRequest& default_instance() { + static const getMapRequestRequest& default_instance() { return *internal_default_instance(); } - static inline const getMapProcessingStatusRequest* internal_default_instance() { - return reinterpret_cast( - &_getMapProcessingStatusRequest_default_instance_); + static inline const getMapRequestRequest* internal_default_instance() { + return reinterpret_cast( + &_getMapRequestRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 52; - friend void swap(getMapProcessingStatusRequest& a, getMapProcessingStatusRequest& b) { a.Swap(&b); } - inline void Swap(getMapProcessingStatusRequest* other) { + static constexpr int kIndexInFileMessages = 42; + friend void swap(getMapRequestRequest& a, getMapRequestRequest& b) { a.Swap(&b); } + inline void Swap(getMapRequestRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -7180,7 +7144,7 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapProcessingStatusRequest* other) { + void UnsafeArenaSwap(getMapRequestRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -7188,13 +7152,13 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapProcessingStatusRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapProcessingStatusRequest& from); + void CopyFrom(const getMapRequestRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapProcessingStatusRequest& from) { getMapProcessingStatusRequest::MergeImpl(*this, from); } + void MergeFrom(const getMapRequestRequest& from) { getMapRequestRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -7215,16 +7179,16 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapProcessingStatusRequest* other); + void InternalSwap(getMapRequestRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapProcessingStatusRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapRequestRequest"; } protected: - explicit getMapProcessingStatusRequest(::google::protobuf::Arena* arena); - getMapProcessingStatusRequest(::google::protobuf::Arena* arena, const getMapProcessingStatusRequest& from); - getMapProcessingStatusRequest(::google::protobuf::Arena* arena, getMapProcessingStatusRequest&& from) noexcept - : getMapProcessingStatusRequest(arena) { + explicit getMapRequestRequest(::google::protobuf::Arena* arena); + getMapRequestRequest(::google::protobuf::Arena* arena, const getMapRequestRequest& from); + getMapRequestRequest(::google::protobuf::Arena* arena, getMapRequestRequest&& from) noexcept + : getMapRequestRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -7236,11 +7200,10 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kResultMapUUIDFieldNumber = 3, + kMapUUIDFieldNumber = 3, + kMapDatastructureFieldNumber = 5, kGrpcServerCompressionFormatFieldNumber = 1, - kStatusFieldNumber = 4, - kProcessingTypeFieldNumber = 5, - kProgressFieldNumber = 6, + kKeyframeImagesOptionFieldNumber = 4, }; // string accessToken = 2; void clear_accesstoken() ; @@ -7258,20 +7221,36 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // string resultMapUUID = 3; - void clear_resultmapuuid() ; - const std::string& resultmapuuid() const; + // string mapUUID = 3; + void clear_mapuuid() ; + const std::string& mapuuid() const; template - void set_resultmapuuid(Arg_&& arg, Args_... args); - std::string* mutable_resultmapuuid(); - PROTOBUF_NODISCARD std::string* release_resultmapuuid(); - void set_allocated_resultmapuuid(std::string* value); + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); private: - const std::string& _internal_resultmapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_resultmapuuid( + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( const std::string& value); - std::string* _internal_mutable_resultmapuuid(); + std::string* _internal_mutable_mapuuid(); + + public: + // bytes mapDatastructure = 5; + void clear_mapdatastructure() ; + const std::string& mapdatastructure() const; + template + void set_mapdatastructure(Arg_&& arg, Args_... args); + std::string* mutable_mapdatastructure(); + PROTOBUF_NODISCARD std::string* release_mapdatastructure(); + void set_allocated_mapdatastructure(std::string* value); + + private: + const std::string& _internal_mapdatastructure() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapdatastructure( + const std::string& value); + std::string* _internal_mutable_mapdatastructure(); public: // int32 grpcServerCompressionFormat = 1; @@ -7284,47 +7263,27 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 status = 4; - void clear_status() ; - ::int32_t status() const; - void set_status(::int32_t value); - - private: - ::int32_t _internal_status() const; - void _internal_set_status(::int32_t value); - - public: - // sint32 processingType = 5; - void clear_processingtype() ; - ::int32_t processingtype() const; - void set_processingtype(::int32_t value); - - private: - ::int32_t _internal_processingtype() const; - void _internal_set_processingtype(::int32_t value); - - public: - // float progress = 6; - void clear_progress() ; - float progress() const; - void set_progress(float value); + // sint32 keyframeImagesOption = 4; + void clear_keyframeimagesoption() ; + ::int32_t keyframeimagesoption() const; + void set_keyframeimagesoption(::int32_t value); private: - float _internal_progress() const; - void _internal_set_progress(float value); + ::int32_t _internal_keyframeimagesoption() const; + void _internal_set_keyframeimagesoption(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapProcessingStatusRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapRequestRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 6, 0, - 76, 2> + 3, 5, 0, + 61, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapProcessingStatusRequest_default_instance_; + &_getMapRequestRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -7339,13 +7298,12 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapProcessingStatusRequest& from_msg); + const getMapRequestRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr resultmapuuid_; + ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr mapdatastructure_; ::int32_t grpcservercompressionformat_; - ::int32_t status_; - ::int32_t processingtype_; - float progress_; + ::int32_t keyframeimagesoption_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -7354,23 +7312,23 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapProcessingDataResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapProcessingDataResponse) */ { +class getMapProcessingStatusResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapProcessingStatusResponse) */ { public: - inline getMapProcessingDataResponse() : getMapProcessingDataResponse(nullptr) {} - ~getMapProcessingDataResponse() override; + inline getMapProcessingStatusResponse() : getMapProcessingStatusResponse(nullptr) {} + ~getMapProcessingStatusResponse() override; template - explicit PROTOBUF_CONSTEXPR getMapProcessingDataResponse( + explicit PROTOBUF_CONSTEXPR getMapProcessingStatusResponse( ::google::protobuf::internal::ConstantInitialized); - inline getMapProcessingDataResponse(const getMapProcessingDataResponse& from) : getMapProcessingDataResponse(nullptr, from) {} - inline getMapProcessingDataResponse(getMapProcessingDataResponse&& from) noexcept - : getMapProcessingDataResponse(nullptr, std::move(from)) {} - inline getMapProcessingDataResponse& operator=(const getMapProcessingDataResponse& from) { + inline getMapProcessingStatusResponse(const getMapProcessingStatusResponse& from) : getMapProcessingStatusResponse(nullptr, from) {} + inline getMapProcessingStatusResponse(getMapProcessingStatusResponse&& from) noexcept + : getMapProcessingStatusResponse(nullptr, std::move(from)) {} + inline getMapProcessingStatusResponse& operator=(const getMapProcessingStatusResponse& from) { CopyFrom(from); return *this; } - inline getMapProcessingDataResponse& operator=(getMapProcessingDataResponse&& from) noexcept { + inline getMapProcessingStatusResponse& operator=(getMapProcessingStatusResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -7402,16 +7360,16 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapProcessingDataResponse& default_instance() { + static const getMapProcessingStatusResponse& default_instance() { return *internal_default_instance(); } - static inline const getMapProcessingDataResponse* internal_default_instance() { - return reinterpret_cast( - &_getMapProcessingDataResponse_default_instance_); + static inline const getMapProcessingStatusResponse* internal_default_instance() { + return reinterpret_cast( + &_getMapProcessingStatusResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 55; - friend void swap(getMapProcessingDataResponse& a, getMapProcessingDataResponse& b) { a.Swap(&b); } - inline void Swap(getMapProcessingDataResponse* other) { + static constexpr int kIndexInFileMessages = 57; + friend void swap(getMapProcessingStatusResponse& a, getMapProcessingStatusResponse& b) { a.Swap(&b); } + inline void Swap(getMapProcessingStatusResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -7423,7 +7381,7 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapProcessingDataResponse* other) { + void UnsafeArenaSwap(getMapProcessingStatusResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -7431,13 +7389,13 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapProcessingDataResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapProcessingStatusResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapProcessingDataResponse& from); + void CopyFrom(const getMapProcessingStatusResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapProcessingDataResponse& from) { getMapProcessingDataResponse::MergeImpl(*this, from); } + void MergeFrom(const getMapProcessingStatusResponse& from) { getMapProcessingStatusResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -7458,16 +7416,16 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapProcessingDataResponse* other); + void InternalSwap(getMapProcessingStatusResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapProcessingDataResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapProcessingStatusResponse"; } protected: - explicit getMapProcessingDataResponse(::google::protobuf::Arena* arena); - getMapProcessingDataResponse(::google::protobuf::Arena* arena, const getMapProcessingDataResponse& from); - getMapProcessingDataResponse(::google::protobuf::Arena* arena, getMapProcessingDataResponse&& from) noexcept - : getMapProcessingDataResponse(arena) { + explicit getMapProcessingStatusResponse(::google::protobuf::Arena* arena); + getMapProcessingStatusResponse(::google::protobuf::Arena* arena, const getMapProcessingStatusResponse& from); + getMapProcessingStatusResponse(::google::protobuf::Arena* arena, getMapProcessingStatusResponse&& from) noexcept + : getMapProcessingStatusResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -7478,43 +7436,42 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kPointCloudFieldNumber = 1, - kKeyframePosesFieldNumber = 2, - kXpcfGrpcReturnValueFieldNumber = 3, + kStatusFieldNumber = 1, + kProcessingTypeFieldNumber = 2, + kProgressFieldNumber = 3, + kXpcfGrpcReturnValueFieldNumber = 4, }; - // bytes pointCloud = 1; - void clear_pointcloud() ; - const std::string& pointcloud() const; - template - void set_pointcloud(Arg_&& arg, Args_... args); - std::string* mutable_pointcloud(); - PROTOBUF_NODISCARD std::string* release_pointcloud(); - void set_allocated_pointcloud(std::string* value); + // sint32 status = 1; + void clear_status() ; + ::int32_t status() const; + void set_status(::int32_t value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( - const std::string& value); - std::string* _internal_mutable_pointcloud(); + ::int32_t _internal_status() const; + void _internal_set_status(::int32_t value); public: - // bytes keyframePoses = 2; - void clear_keyframeposes() ; - const std::string& keyframeposes() const; - template - void set_keyframeposes(Arg_&& arg, Args_... args); - std::string* mutable_keyframeposes(); - PROTOBUF_NODISCARD std::string* release_keyframeposes(); - void set_allocated_keyframeposes(std::string* value); + // sint32 processingType = 2; + void clear_processingtype() ; + ::int32_t processingtype() const; + void set_processingtype(::int32_t value); private: - const std::string& _internal_keyframeposes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( - const std::string& value); - std::string* _internal_mutable_keyframeposes(); + ::int32_t _internal_processingtype() const; + void _internal_set_processingtype(::int32_t value); public: - // sint32 xpcfGrpcReturnValue = 3; + // float progress = 3; + void clear_progress() ; + float progress() const; + void set_progress(float value); + + private: + float _internal_progress() const; + void _internal_set_progress(float value); + + public: + // sint32 xpcfGrpcReturnValue = 4; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -7524,17 +7481,17 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapProcessingDataResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapProcessingStatusResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 3, 0, + 2, 4, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapProcessingDataResponse_default_instance_; + &_getMapProcessingStatusResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -7549,9 +7506,10 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapProcessingDataResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr pointcloud_; - ::google::protobuf::internal::ArenaStringPtr keyframeposes_; + const getMapProcessingStatusResponse& from_msg); + ::int32_t status_; + ::int32_t processingtype_; + float progress_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -7561,23 +7519,23 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapProcessingDataRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapProcessingDataRequest) */ { +class getMapProcessingStatusRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapProcessingStatusRequest) */ { public: - inline getMapProcessingDataRequest() : getMapProcessingDataRequest(nullptr) {} - ~getMapProcessingDataRequest() override; + inline getMapProcessingStatusRequest() : getMapProcessingStatusRequest(nullptr) {} + ~getMapProcessingStatusRequest() override; template - explicit PROTOBUF_CONSTEXPR getMapProcessingDataRequest( + explicit PROTOBUF_CONSTEXPR getMapProcessingStatusRequest( ::google::protobuf::internal::ConstantInitialized); - inline getMapProcessingDataRequest(const getMapProcessingDataRequest& from) : getMapProcessingDataRequest(nullptr, from) {} - inline getMapProcessingDataRequest(getMapProcessingDataRequest&& from) noexcept - : getMapProcessingDataRequest(nullptr, std::move(from)) {} - inline getMapProcessingDataRequest& operator=(const getMapProcessingDataRequest& from) { + inline getMapProcessingStatusRequest(const getMapProcessingStatusRequest& from) : getMapProcessingStatusRequest(nullptr, from) {} + inline getMapProcessingStatusRequest(getMapProcessingStatusRequest&& from) noexcept + : getMapProcessingStatusRequest(nullptr, std::move(from)) {} + inline getMapProcessingStatusRequest& operator=(const getMapProcessingStatusRequest& from) { CopyFrom(from); return *this; } - inline getMapProcessingDataRequest& operator=(getMapProcessingDataRequest&& from) noexcept { + inline getMapProcessingStatusRequest& operator=(getMapProcessingStatusRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -7609,16 +7567,16 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapProcessingDataRequest& default_instance() { + static const getMapProcessingStatusRequest& default_instance() { return *internal_default_instance(); } - static inline const getMapProcessingDataRequest* internal_default_instance() { - return reinterpret_cast( - &_getMapProcessingDataRequest_default_instance_); + static inline const getMapProcessingStatusRequest* internal_default_instance() { + return reinterpret_cast( + &_getMapProcessingStatusRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 54; - friend void swap(getMapProcessingDataRequest& a, getMapProcessingDataRequest& b) { a.Swap(&b); } - inline void Swap(getMapProcessingDataRequest* other) { + static constexpr int kIndexInFileMessages = 56; + friend void swap(getMapProcessingStatusRequest& a, getMapProcessingStatusRequest& b) { a.Swap(&b); } + inline void Swap(getMapProcessingStatusRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -7630,7 +7588,7 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapProcessingDataRequest* other) { + void UnsafeArenaSwap(getMapProcessingStatusRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -7638,13 +7596,13 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapProcessingDataRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapProcessingStatusRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapProcessingDataRequest& from); + void CopyFrom(const getMapProcessingStatusRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapProcessingDataRequest& from) { getMapProcessingDataRequest::MergeImpl(*this, from); } + void MergeFrom(const getMapProcessingStatusRequest& from) { getMapProcessingStatusRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -7665,16 +7623,16 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapProcessingDataRequest* other); + void InternalSwap(getMapProcessingStatusRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapProcessingDataRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapProcessingStatusRequest"; } protected: - explicit getMapProcessingDataRequest(::google::protobuf::Arena* arena); - getMapProcessingDataRequest(::google::protobuf::Arena* arena, const getMapProcessingDataRequest& from); - getMapProcessingDataRequest(::google::protobuf::Arena* arena, getMapProcessingDataRequest&& from) noexcept - : getMapProcessingDataRequest(arena) { + explicit getMapProcessingStatusRequest(::google::protobuf::Arena* arena); + getMapProcessingStatusRequest(::google::protobuf::Arena* arena, const getMapProcessingStatusRequest& from); + getMapProcessingStatusRequest(::google::protobuf::Arena* arena, getMapProcessingStatusRequest&& from) noexcept + : getMapProcessingStatusRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -7687,9 +7645,10 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message enum : int { kAccessTokenFieldNumber = 2, kResultMapUUIDFieldNumber = 3, - kPointCloudFieldNumber = 4, - kKeyframePosesFieldNumber = 5, kGrpcServerCompressionFormatFieldNumber = 1, + kStatusFieldNumber = 4, + kProcessingTypeFieldNumber = 5, + kProgressFieldNumber = 6, }; // string accessToken = 2; void clear_accesstoken() ; @@ -7723,59 +7682,57 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message std::string* _internal_mutable_resultmapuuid(); public: - // bytes pointCloud = 4; - void clear_pointcloud() ; - const std::string& pointcloud() const; - template - void set_pointcloud(Arg_&& arg, Args_... args); - std::string* mutable_pointcloud(); - PROTOBUF_NODISCARD std::string* release_pointcloud(); - void set_allocated_pointcloud(std::string* value); + // int32 grpcServerCompressionFormat = 1; + void clear_grpcservercompressionformat() ; + ::int32_t grpcservercompressionformat() const; + void set_grpcservercompressionformat(::int32_t value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( - const std::string& value); - std::string* _internal_mutable_pointcloud(); + ::int32_t _internal_grpcservercompressionformat() const; + void _internal_set_grpcservercompressionformat(::int32_t value); public: - // bytes keyframePoses = 5; - void clear_keyframeposes() ; - const std::string& keyframeposes() const; - template - void set_keyframeposes(Arg_&& arg, Args_... args); - std::string* mutable_keyframeposes(); - PROTOBUF_NODISCARD std::string* release_keyframeposes(); - void set_allocated_keyframeposes(std::string* value); + // sint32 status = 4; + void clear_status() ; + ::int32_t status() const; + void set_status(::int32_t value); private: - const std::string& _internal_keyframeposes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( - const std::string& value); - std::string* _internal_mutable_keyframeposes(); + ::int32_t _internal_status() const; + void _internal_set_status(::int32_t value); public: - // int32 grpcServerCompressionFormat = 1; - void clear_grpcservercompressionformat() ; - ::int32_t grpcservercompressionformat() const; - void set_grpcservercompressionformat(::int32_t value); + // sint32 processingType = 5; + void clear_processingtype() ; + ::int32_t processingtype() const; + void set_processingtype(::int32_t value); private: - ::int32_t _internal_grpcservercompressionformat() const; - void _internal_set_grpcservercompressionformat(::int32_t value); + ::int32_t _internal_processingtype() const; + void _internal_set_processingtype(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapProcessingDataRequest) + // float progress = 6; + void clear_progress() ; + float progress() const; + void set_progress(float value); + + private: + float _internal_progress() const; + void _internal_set_progress(float value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapProcessingStatusRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 5, 0, - 74, 2> + 3, 6, 0, + 76, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapProcessingDataRequest_default_instance_; + &_getMapProcessingStatusRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -7790,12 +7747,13 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapProcessingDataRequest& from_msg); + const getMapProcessingStatusRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr resultmapuuid_; - ::google::protobuf::internal::ArenaStringPtr pointcloud_; - ::google::protobuf::internal::ArenaStringPtr keyframeposes_; ::int32_t grpcservercompressionformat_; + ::int32_t status_; + ::int32_t processingtype_; + float progress_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -7804,23 +7762,23 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapInfoResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapInfoResponse) */ { +class getMapProcessingDataResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapProcessingDataResponse) */ { public: - inline getMapInfoResponse() : getMapInfoResponse(nullptr) {} - ~getMapInfoResponse() override; + inline getMapProcessingDataResponse() : getMapProcessingDataResponse(nullptr) {} + ~getMapProcessingDataResponse() override; template - explicit PROTOBUF_CONSTEXPR getMapInfoResponse( + explicit PROTOBUF_CONSTEXPR getMapProcessingDataResponse( ::google::protobuf::internal::ConstantInitialized); - inline getMapInfoResponse(const getMapInfoResponse& from) : getMapInfoResponse(nullptr, from) {} - inline getMapInfoResponse(getMapInfoResponse&& from) noexcept - : getMapInfoResponse(nullptr, std::move(from)) {} - inline getMapInfoResponse& operator=(const getMapInfoResponse& from) { + inline getMapProcessingDataResponse(const getMapProcessingDataResponse& from) : getMapProcessingDataResponse(nullptr, from) {} + inline getMapProcessingDataResponse(getMapProcessingDataResponse&& from) noexcept + : getMapProcessingDataResponse(nullptr, std::move(from)) {} + inline getMapProcessingDataResponse& operator=(const getMapProcessingDataResponse& from) { CopyFrom(from); return *this; } - inline getMapInfoResponse& operator=(getMapInfoResponse&& from) noexcept { + inline getMapProcessingDataResponse& operator=(getMapProcessingDataResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -7852,16 +7810,16 @@ class getMapInfoResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapInfoResponse& default_instance() { + static const getMapProcessingDataResponse& default_instance() { return *internal_default_instance(); } - static inline const getMapInfoResponse* internal_default_instance() { - return reinterpret_cast( - &_getMapInfoResponse_default_instance_); + static inline const getMapProcessingDataResponse* internal_default_instance() { + return reinterpret_cast( + &_getMapProcessingDataResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 49; - friend void swap(getMapInfoResponse& a, getMapInfoResponse& b) { a.Swap(&b); } - inline void Swap(getMapInfoResponse* other) { + static constexpr int kIndexInFileMessages = 59; + friend void swap(getMapProcessingDataResponse& a, getMapProcessingDataResponse& b) { a.Swap(&b); } + inline void Swap(getMapProcessingDataResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -7873,7 +7831,7 @@ class getMapInfoResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapInfoResponse* other) { + void UnsafeArenaSwap(getMapProcessingDataResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -7881,13 +7839,13 @@ class getMapInfoResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapInfoResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapProcessingDataResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapInfoResponse& from); + void CopyFrom(const getMapProcessingDataResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapInfoResponse& from) { getMapInfoResponse::MergeImpl(*this, from); } + void MergeFrom(const getMapProcessingDataResponse& from) { getMapProcessingDataResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -7908,16 +7866,16 @@ class getMapInfoResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapInfoResponse* other); + void InternalSwap(getMapProcessingDataResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapInfoResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapProcessingDataResponse"; } protected: - explicit getMapInfoResponse(::google::protobuf::Arena* arena); - getMapInfoResponse(::google::protobuf::Arena* arena, const getMapInfoResponse& from); - getMapInfoResponse(::google::protobuf::Arena* arena, getMapInfoResponse&& from) noexcept - : getMapInfoResponse(arena) { + explicit getMapProcessingDataResponse(::google::protobuf::Arena* arena); + getMapProcessingDataResponse(::google::protobuf::Arena* arena, const getMapProcessingDataResponse& from); + getMapProcessingDataResponse(::google::protobuf::Arena* arena, getMapProcessingDataResponse&& from) noexcept + : getMapProcessingDataResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -7928,70 +7886,43 @@ class getMapInfoResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kVersionFieldNumber = 1, - kGlobalDescriptorTypeFieldNumber = 2, - kDescriptorTypeFieldNumber = 3, - kDataSizeFieldNumber = 4, - kAreImageSavedFieldNumber = 5, - kXpcfGrpcReturnValueFieldNumber = 6, + kPointCloudFieldNumber = 1, + kKeyframePosesFieldNumber = 2, + kXpcfGrpcReturnValueFieldNumber = 3, }; - // string version = 1; - void clear_version() ; - const std::string& version() const; + // bytes pointCloud = 1; + void clear_pointcloud() ; + const std::string& pointcloud() const; template - void set_version(Arg_&& arg, Args_... args); - std::string* mutable_version(); - PROTOBUF_NODISCARD std::string* release_version(); - void set_allocated_version(std::string* value); + void set_pointcloud(Arg_&& arg, Args_... args); + std::string* mutable_pointcloud(); + PROTOBUF_NODISCARD std::string* release_pointcloud(); + void set_allocated_pointcloud(std::string* value); private: - const std::string& _internal_version() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_version( + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( const std::string& value); - std::string* _internal_mutable_version(); - - public: - // sint32 globalDescriptorType = 2; - void clear_globaldescriptortype() ; - ::int32_t globaldescriptortype() const; - void set_globaldescriptortype(::int32_t value); - - private: - ::int32_t _internal_globaldescriptortype() const; - void _internal_set_globaldescriptortype(::int32_t value); - - public: - // sint32 descriptorType = 3; - void clear_descriptortype() ; - ::int32_t descriptortype() const; - void set_descriptortype(::int32_t value); - - private: - ::int32_t _internal_descriptortype() const; - void _internal_set_descriptortype(::int32_t value); - - public: - // uint32 dataSize = 4; - void clear_datasize() ; - ::uint32_t datasize() const; - void set_datasize(::uint32_t value); - - private: - ::uint32_t _internal_datasize() const; - void _internal_set_datasize(::uint32_t value); + std::string* _internal_mutable_pointcloud(); public: - // bool areImageSaved = 5; - void clear_areimagesaved() ; - bool areimagesaved() const; - void set_areimagesaved(bool value); + // bytes keyframePoses = 2; + void clear_keyframeposes() ; + const std::string& keyframeposes() const; + template + void set_keyframeposes(Arg_&& arg, Args_... args); + std::string* mutable_keyframeposes(); + PROTOBUF_NODISCARD std::string* release_keyframeposes(); + void set_allocated_keyframeposes(std::string* value); private: - bool _internal_areimagesaved() const; - void _internal_set_areimagesaved(bool value); + const std::string& _internal_keyframeposes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( + const std::string& value); + std::string* _internal_mutable_keyframeposes(); public: - // sint32 xpcfGrpcReturnValue = 6; + // sint32 xpcfGrpcReturnValue = 3; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -8001,17 +7932,17 @@ class getMapInfoResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapInfoResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapProcessingDataResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 6, 0, - 48, 2> + 2, 3, 0, + 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapInfoResponse_default_instance_; + &_getMapProcessingDataResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -8026,12 +7957,9 @@ class getMapInfoResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapInfoResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr version_; - ::int32_t globaldescriptortype_; - ::int32_t descriptortype_; - ::uint32_t datasize_; - bool areimagesaved_; + const getMapProcessingDataResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr keyframeposes_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -8041,23 +7969,23 @@ class getMapInfoResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapInfoRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapInfoRequest) */ { +class getMapProcessingDataRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapProcessingDataRequest) */ { public: - inline getMapInfoRequest() : getMapInfoRequest(nullptr) {} - ~getMapInfoRequest() override; + inline getMapProcessingDataRequest() : getMapProcessingDataRequest(nullptr) {} + ~getMapProcessingDataRequest() override; template - explicit PROTOBUF_CONSTEXPR getMapInfoRequest( + explicit PROTOBUF_CONSTEXPR getMapProcessingDataRequest( ::google::protobuf::internal::ConstantInitialized); - inline getMapInfoRequest(const getMapInfoRequest& from) : getMapInfoRequest(nullptr, from) {} - inline getMapInfoRequest(getMapInfoRequest&& from) noexcept - : getMapInfoRequest(nullptr, std::move(from)) {} - inline getMapInfoRequest& operator=(const getMapInfoRequest& from) { + inline getMapProcessingDataRequest(const getMapProcessingDataRequest& from) : getMapProcessingDataRequest(nullptr, from) {} + inline getMapProcessingDataRequest(getMapProcessingDataRequest&& from) noexcept + : getMapProcessingDataRequest(nullptr, std::move(from)) {} + inline getMapProcessingDataRequest& operator=(const getMapProcessingDataRequest& from) { CopyFrom(from); return *this; } - inline getMapInfoRequest& operator=(getMapInfoRequest&& from) noexcept { + inline getMapProcessingDataRequest& operator=(getMapProcessingDataRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -8089,16 +8017,16 @@ class getMapInfoRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapInfoRequest& default_instance() { + static const getMapProcessingDataRequest& default_instance() { return *internal_default_instance(); } - static inline const getMapInfoRequest* internal_default_instance() { - return reinterpret_cast( - &_getMapInfoRequest_default_instance_); + static inline const getMapProcessingDataRequest* internal_default_instance() { + return reinterpret_cast( + &_getMapProcessingDataRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 48; - friend void swap(getMapInfoRequest& a, getMapInfoRequest& b) { a.Swap(&b); } - inline void Swap(getMapInfoRequest* other) { + static constexpr int kIndexInFileMessages = 58; + friend void swap(getMapProcessingDataRequest& a, getMapProcessingDataRequest& b) { a.Swap(&b); } + inline void Swap(getMapProcessingDataRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -8110,7 +8038,7 @@ class getMapInfoRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapInfoRequest* other) { + void UnsafeArenaSwap(getMapProcessingDataRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -8118,13 +8046,13 @@ class getMapInfoRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapInfoRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapProcessingDataRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapInfoRequest& from); + void CopyFrom(const getMapProcessingDataRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapInfoRequest& from) { getMapInfoRequest::MergeImpl(*this, from); } + void MergeFrom(const getMapProcessingDataRequest& from) { getMapProcessingDataRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -8145,16 +8073,16 @@ class getMapInfoRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapInfoRequest* other); + void InternalSwap(getMapProcessingDataRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapInfoRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapProcessingDataRequest"; } protected: - explicit getMapInfoRequest(::google::protobuf::Arena* arena); - getMapInfoRequest(::google::protobuf::Arena* arena, const getMapInfoRequest& from); - getMapInfoRequest(::google::protobuf::Arena* arena, getMapInfoRequest&& from) noexcept - : getMapInfoRequest(arena) { + explicit getMapProcessingDataRequest(::google::protobuf::Arena* arena); + getMapProcessingDataRequest(::google::protobuf::Arena* arena, const getMapProcessingDataRequest& from); + getMapProcessingDataRequest(::google::protobuf::Arena* arena, getMapProcessingDataRequest&& from) noexcept + : getMapProcessingDataRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -8166,13 +8094,10 @@ class getMapInfoRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kMapUUIDFieldNumber = 3, - kVersionFieldNumber = 4, + kResultMapUUIDFieldNumber = 3, + kPointCloudFieldNumber = 4, + kKeyframePosesFieldNumber = 5, kGrpcServerCompressionFormatFieldNumber = 1, - kGlobalDescriptorTypeFieldNumber = 5, - kDescriptorTypeFieldNumber = 6, - kDataSizeFieldNumber = 7, - kAreImageSavedFieldNumber = 8, }; // string accessToken = 2; void clear_accesstoken() ; @@ -8190,36 +8115,52 @@ class getMapInfoRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // string mapUUID = 3; - void clear_mapuuid() ; - const std::string& mapuuid() const; + // string resultMapUUID = 3; + void clear_resultmapuuid() ; + const std::string& resultmapuuid() const; template - void set_mapuuid(Arg_&& arg, Args_... args); - std::string* mutable_mapuuid(); - PROTOBUF_NODISCARD std::string* release_mapuuid(); - void set_allocated_mapuuid(std::string* value); + void set_resultmapuuid(Arg_&& arg, Args_... args); + std::string* mutable_resultmapuuid(); + PROTOBUF_NODISCARD std::string* release_resultmapuuid(); + void set_allocated_resultmapuuid(std::string* value); private: - const std::string& _internal_mapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( + const std::string& _internal_resultmapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_resultmapuuid( const std::string& value); - std::string* _internal_mutable_mapuuid(); + std::string* _internal_mutable_resultmapuuid(); public: - // string version = 4; - void clear_version() ; - const std::string& version() const; + // bytes pointCloud = 4; + void clear_pointcloud() ; + const std::string& pointcloud() const; template - void set_version(Arg_&& arg, Args_... args); - std::string* mutable_version(); - PROTOBUF_NODISCARD std::string* release_version(); - void set_allocated_version(std::string* value); + void set_pointcloud(Arg_&& arg, Args_... args); + std::string* mutable_pointcloud(); + PROTOBUF_NODISCARD std::string* release_pointcloud(); + void set_allocated_pointcloud(std::string* value); private: - const std::string& _internal_version() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_version( + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( const std::string& value); - std::string* _internal_mutable_version(); + std::string* _internal_mutable_pointcloud(); + + public: + // bytes keyframePoses = 5; + void clear_keyframeposes() ; + const std::string& keyframeposes() const; + template + void set_keyframeposes(Arg_&& arg, Args_... args); + std::string* mutable_keyframeposes(); + PROTOBUF_NODISCARD std::string* release_keyframeposes(); + void set_allocated_keyframeposes(std::string* value); + + private: + const std::string& _internal_keyframeposes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( + const std::string& value); + std::string* _internal_mutable_keyframeposes(); public: // int32 grpcServerCompressionFormat = 1; @@ -8232,57 +8173,17 @@ class getMapInfoRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 globalDescriptorType = 5; - void clear_globaldescriptortype() ; - ::int32_t globaldescriptortype() const; - void set_globaldescriptortype(::int32_t value); - - private: - ::int32_t _internal_globaldescriptortype() const; - void _internal_set_globaldescriptortype(::int32_t value); - - public: - // sint32 descriptorType = 6; - void clear_descriptortype() ; - ::int32_t descriptortype() const; - void set_descriptortype(::int32_t value); - - private: - ::int32_t _internal_descriptortype() const; - void _internal_set_descriptortype(::int32_t value); - - public: - // uint32 dataSize = 7; - void clear_datasize() ; - ::uint32_t datasize() const; - void set_datasize(::uint32_t value); - - private: - ::uint32_t _internal_datasize() const; - void _internal_set_datasize(::uint32_t value); - - public: - // bool areImageSaved = 8; - void clear_areimagesaved() ; - bool areimagesaved() const; - void set_areimagesaved(bool value); - - private: - bool _internal_areimagesaved() const; - void _internal_set_areimagesaved(bool value); - - public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapInfoRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapProcessingDataRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 8, 0, - 73, 2> + 3, 5, 0, + 74, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapInfoRequest_default_instance_; + &_getMapProcessingDataRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -8297,15 +8198,12 @@ class getMapInfoRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapInfoRequest& from_msg); + const getMapProcessingDataRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr version_; + ::google::protobuf::internal::ArenaStringPtr resultmapuuid_; + ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr keyframeposes_; ::int32_t grpcservercompressionformat_; - ::int32_t globaldescriptortype_; - ::int32_t descriptortype_; - ::uint32_t datasize_; - bool areimagesaved_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -8314,23 +8212,23 @@ class getMapInfoRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getDeviceInfoResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getDeviceInfoResponse) */ { +class getMapInfoResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapInfoResponse) */ { public: - inline getDeviceInfoResponse() : getDeviceInfoResponse(nullptr) {} - ~getDeviceInfoResponse() override; + inline getMapInfoResponse() : getMapInfoResponse(nullptr) {} + ~getMapInfoResponse() override; template - explicit PROTOBUF_CONSTEXPR getDeviceInfoResponse( + explicit PROTOBUF_CONSTEXPR getMapInfoResponse( ::google::protobuf::internal::ConstantInitialized); - inline getDeviceInfoResponse(const getDeviceInfoResponse& from) : getDeviceInfoResponse(nullptr, from) {} - inline getDeviceInfoResponse(getDeviceInfoResponse&& from) noexcept - : getDeviceInfoResponse(nullptr, std::move(from)) {} - inline getDeviceInfoResponse& operator=(const getDeviceInfoResponse& from) { + inline getMapInfoResponse(const getMapInfoResponse& from) : getMapInfoResponse(nullptr, from) {} + inline getMapInfoResponse(getMapInfoResponse&& from) noexcept + : getMapInfoResponse(nullptr, std::move(from)) {} + inline getMapInfoResponse& operator=(const getMapInfoResponse& from) { CopyFrom(from); return *this; } - inline getDeviceInfoResponse& operator=(getDeviceInfoResponse&& from) noexcept { + inline getMapInfoResponse& operator=(getMapInfoResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -8362,16 +8260,16 @@ class getDeviceInfoResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getDeviceInfoResponse& default_instance() { + static const getMapInfoResponse& default_instance() { return *internal_default_instance(); } - static inline const getDeviceInfoResponse* internal_default_instance() { - return reinterpret_cast( - &_getDeviceInfoResponse_default_instance_); + static inline const getMapInfoResponse* internal_default_instance() { + return reinterpret_cast( + &_getMapInfoResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 7; - friend void swap(getDeviceInfoResponse& a, getDeviceInfoResponse& b) { a.Swap(&b); } - inline void Swap(getDeviceInfoResponse* other) { + static constexpr int kIndexInFileMessages = 49; + friend void swap(getMapInfoResponse& a, getMapInfoResponse& b) { a.Swap(&b); } + inline void Swap(getMapInfoResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -8383,7 +8281,7 @@ class getDeviceInfoResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getDeviceInfoResponse* other) { + void UnsafeArenaSwap(getMapInfoResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -8391,13 +8289,13 @@ class getDeviceInfoResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getDeviceInfoResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapInfoResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getDeviceInfoResponse& from); + void CopyFrom(const getMapInfoResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getDeviceInfoResponse& from) { getDeviceInfoResponse::MergeImpl(*this, from); } + void MergeFrom(const getMapInfoResponse& from) { getMapInfoResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -8418,16 +8316,16 @@ class getDeviceInfoResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getDeviceInfoResponse* other); + void InternalSwap(getMapInfoResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getDeviceInfoResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapInfoResponse"; } protected: - explicit getDeviceInfoResponse(::google::protobuf::Arena* arena); - getDeviceInfoResponse(::google::protobuf::Arena* arena, const getDeviceInfoResponse& from); - getDeviceInfoResponse(::google::protobuf::Arena* arena, getDeviceInfoResponse&& from) noexcept - : getDeviceInfoResponse(arena) { + explicit getMapInfoResponse(::google::protobuf::Arena* arena); + getMapInfoResponse(::google::protobuf::Arena* arena, const getMapInfoResponse& from); + getMapInfoResponse(::google::protobuf::Arena* arena, getMapInfoResponse&& from) noexcept + : getMapInfoResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -8438,26 +8336,70 @@ class getDeviceInfoResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kDeviceInfoFieldNumber = 1, - kXpcfGrpcReturnValueFieldNumber = 2, + kVersionFieldNumber = 1, + kGlobalDescriptorTypeFieldNumber = 2, + kDescriptorTypeFieldNumber = 3, + kDataSizeFieldNumber = 4, + kAreImageSavedFieldNumber = 5, + kXpcfGrpcReturnValueFieldNumber = 6, }; - // bytes deviceInfo = 1; - void clear_deviceinfo() ; - const std::string& deviceinfo() const; + // string version = 1; + void clear_version() ; + const std::string& version() const; template - void set_deviceinfo(Arg_&& arg, Args_... args); - std::string* mutable_deviceinfo(); - PROTOBUF_NODISCARD std::string* release_deviceinfo(); - void set_allocated_deviceinfo(std::string* value); + void set_version(Arg_&& arg, Args_... args); + std::string* mutable_version(); + PROTOBUF_NODISCARD std::string* release_version(); + void set_allocated_version(std::string* value); private: - const std::string& _internal_deviceinfo() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_deviceinfo( + const std::string& _internal_version() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_version( const std::string& value); - std::string* _internal_mutable_deviceinfo(); + std::string* _internal_mutable_version(); public: - // sint32 xpcfGrpcReturnValue = 2; + // sint32 globalDescriptorType = 2; + void clear_globaldescriptortype() ; + ::int32_t globaldescriptortype() const; + void set_globaldescriptortype(::int32_t value); + + private: + ::int32_t _internal_globaldescriptortype() const; + void _internal_set_globaldescriptortype(::int32_t value); + + public: + // sint32 descriptorType = 3; + void clear_descriptortype() ; + ::int32_t descriptortype() const; + void set_descriptortype(::int32_t value); + + private: + ::int32_t _internal_descriptortype() const; + void _internal_set_descriptortype(::int32_t value); + + public: + // uint32 dataSize = 4; + void clear_datasize() ; + ::uint32_t datasize() const; + void set_datasize(::uint32_t value); + + private: + ::uint32_t _internal_datasize() const; + void _internal_set_datasize(::uint32_t value); + + public: + // bool areImageSaved = 5; + void clear_areimagesaved() ; + bool areimagesaved() const; + void set_areimagesaved(bool value); + + private: + bool _internal_areimagesaved() const; + void _internal_set_areimagesaved(bool value); + + public: + // sint32 xpcfGrpcReturnValue = 6; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -8467,17 +8409,17 @@ class getDeviceInfoResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getDeviceInfoResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapInfoResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 1, 2, 0, - 0, 2> + 3, 6, 0, + 48, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getDeviceInfoResponse_default_instance_; + &_getMapInfoResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -8492,8 +8434,12 @@ class getDeviceInfoResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getDeviceInfoResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr deviceinfo_; + const getMapInfoResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr version_; + ::int32_t globaldescriptortype_; + ::int32_t descriptortype_; + ::uint32_t datasize_; + bool areimagesaved_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -8503,23 +8449,23 @@ class getDeviceInfoResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getDeviceInfoRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getDeviceInfoRequest) */ { +class getMapInfoRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getMapInfoRequest) */ { public: - inline getDeviceInfoRequest() : getDeviceInfoRequest(nullptr) {} - ~getDeviceInfoRequest() override; + inline getMapInfoRequest() : getMapInfoRequest(nullptr) {} + ~getMapInfoRequest() override; template - explicit PROTOBUF_CONSTEXPR getDeviceInfoRequest( + explicit PROTOBUF_CONSTEXPR getMapInfoRequest( ::google::protobuf::internal::ConstantInitialized); - inline getDeviceInfoRequest(const getDeviceInfoRequest& from) : getDeviceInfoRequest(nullptr, from) {} - inline getDeviceInfoRequest(getDeviceInfoRequest&& from) noexcept - : getDeviceInfoRequest(nullptr, std::move(from)) {} - inline getDeviceInfoRequest& operator=(const getDeviceInfoRequest& from) { + inline getMapInfoRequest(const getMapInfoRequest& from) : getMapInfoRequest(nullptr, from) {} + inline getMapInfoRequest(getMapInfoRequest&& from) noexcept + : getMapInfoRequest(nullptr, std::move(from)) {} + inline getMapInfoRequest& operator=(const getMapInfoRequest& from) { CopyFrom(from); return *this; } - inline getDeviceInfoRequest& operator=(getDeviceInfoRequest&& from) noexcept { + inline getMapInfoRequest& operator=(getMapInfoRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -8551,16 +8497,16 @@ class getDeviceInfoRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getDeviceInfoRequest& default_instance() { + static const getMapInfoRequest& default_instance() { return *internal_default_instance(); } - static inline const getDeviceInfoRequest* internal_default_instance() { - return reinterpret_cast( - &_getDeviceInfoRequest_default_instance_); + static inline const getMapInfoRequest* internal_default_instance() { + return reinterpret_cast( + &_getMapInfoRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 6; - friend void swap(getDeviceInfoRequest& a, getDeviceInfoRequest& b) { a.Swap(&b); } - inline void Swap(getDeviceInfoRequest* other) { + static constexpr int kIndexInFileMessages = 48; + friend void swap(getMapInfoRequest& a, getMapInfoRequest& b) { a.Swap(&b); } + inline void Swap(getMapInfoRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -8572,7 +8518,7 @@ class getDeviceInfoRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getDeviceInfoRequest* other) { + void UnsafeArenaSwap(getMapInfoRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -8580,13 +8526,13 @@ class getDeviceInfoRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getDeviceInfoRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapInfoRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getDeviceInfoRequest& from); + void CopyFrom(const getMapInfoRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getDeviceInfoRequest& from) { getDeviceInfoRequest::MergeImpl(*this, from); } + void MergeFrom(const getMapInfoRequest& from) { getMapInfoRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -8607,16 +8553,16 @@ class getDeviceInfoRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getDeviceInfoRequest* other); + void InternalSwap(getMapInfoRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getDeviceInfoRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getMapInfoRequest"; } protected: - explicit getDeviceInfoRequest(::google::protobuf::Arena* arena); - getDeviceInfoRequest(::google::protobuf::Arena* arena, const getDeviceInfoRequest& from); - getDeviceInfoRequest(::google::protobuf::Arena* arena, getDeviceInfoRequest&& from) noexcept - : getDeviceInfoRequest(arena) { + explicit getMapInfoRequest(::google::protobuf::Arena* arena); + getMapInfoRequest(::google::protobuf::Arena* arena, const getMapInfoRequest& from); + getMapInfoRequest(::google::protobuf::Arena* arena, getMapInfoRequest&& from) noexcept + : getMapInfoRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -8628,9 +8574,13 @@ class getDeviceInfoRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kClientUUIDFieldNumber = 3, - kDeviceInfoFieldNumber = 4, + kMapUUIDFieldNumber = 3, + kVersionFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, + kGlobalDescriptorTypeFieldNumber = 5, + kDescriptorTypeFieldNumber = 6, + kDataSizeFieldNumber = 7, + kAreImageSavedFieldNumber = 8, }; // string accessToken = 2; void clear_accesstoken() ; @@ -8648,36 +8598,36 @@ class getDeviceInfoRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // string clientUUID = 3; - void clear_clientuuid() ; - const std::string& clientuuid() const; + // string mapUUID = 3; + void clear_mapuuid() ; + const std::string& mapuuid() const; template - void set_clientuuid(Arg_&& arg, Args_... args); - std::string* mutable_clientuuid(); - PROTOBUF_NODISCARD std::string* release_clientuuid(); - void set_allocated_clientuuid(std::string* value); + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); private: - const std::string& _internal_clientuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( const std::string& value); - std::string* _internal_mutable_clientuuid(); + std::string* _internal_mutable_mapuuid(); public: - // bytes deviceInfo = 4; - void clear_deviceinfo() ; - const std::string& deviceinfo() const; + // string version = 4; + void clear_version() ; + const std::string& version() const; template - void set_deviceinfo(Arg_&& arg, Args_... args); - std::string* mutable_deviceinfo(); - PROTOBUF_NODISCARD std::string* release_deviceinfo(); - void set_allocated_deviceinfo(std::string* value); + void set_version(Arg_&& arg, Args_... args); + std::string* mutable_version(); + PROTOBUF_NODISCARD std::string* release_version(); + void set_allocated_version(std::string* value); private: - const std::string& _internal_deviceinfo() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_deviceinfo( + const std::string& _internal_version() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_version( const std::string& value); - std::string* _internal_mutable_deviceinfo(); + std::string* _internal_mutable_version(); public: // int32 grpcServerCompressionFormat = 1; @@ -8690,17 +8640,57 @@ class getDeviceInfoRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getDeviceInfoRequest) + // sint32 globalDescriptorType = 5; + void clear_globaldescriptortype() ; + ::int32_t globaldescriptortype() const; + void set_globaldescriptortype(::int32_t value); + + private: + ::int32_t _internal_globaldescriptortype() const; + void _internal_set_globaldescriptortype(::int32_t value); + + public: + // sint32 descriptorType = 6; + void clear_descriptortype() ; + ::int32_t descriptortype() const; + void set_descriptortype(::int32_t value); + + private: + ::int32_t _internal_descriptortype() const; + void _internal_set_descriptortype(::int32_t value); + + public: + // uint32 dataSize = 7; + void clear_datasize() ; + ::uint32_t datasize() const; + void set_datasize(::uint32_t value); + + private: + ::uint32_t _internal_datasize() const; + void _internal_set_datasize(::uint32_t value); + + public: + // bool areImageSaved = 8; + void clear_areimagesaved() ; + bool areimagesaved() const; + void set_areimagesaved(bool value); + + private: + bool _internal_areimagesaved() const; + void _internal_set_areimagesaved(bool value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getMapInfoRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 4, 0, - 64, 2> + 3, 8, 0, + 73, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getDeviceInfoRequest_default_instance_; + &_getMapInfoRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -8715,11 +8705,15 @@ class getDeviceInfoRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getDeviceInfoRequest& from_msg); + const getMapInfoRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr clientuuid_; - ::google::protobuf::internal::ArenaStringPtr deviceinfo_; + ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr version_; ::int32_t grpcservercompressionformat_; + ::int32_t globaldescriptortype_; + ::int32_t descriptortype_; + ::uint32_t datasize_; + bool areimagesaved_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -8728,23 +8722,23 @@ class getDeviceInfoRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getClientPoseResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientPoseResponse) */ { +class getDeviceInfoResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getDeviceInfoResponse) */ { public: - inline getClientPoseResponse() : getClientPoseResponse(nullptr) {} - ~getClientPoseResponse() override; + inline getDeviceInfoResponse() : getDeviceInfoResponse(nullptr) {} + ~getDeviceInfoResponse() override; template - explicit PROTOBUF_CONSTEXPR getClientPoseResponse( + explicit PROTOBUF_CONSTEXPR getDeviceInfoResponse( ::google::protobuf::internal::ConstantInitialized); - inline getClientPoseResponse(const getClientPoseResponse& from) : getClientPoseResponse(nullptr, from) {} - inline getClientPoseResponse(getClientPoseResponse&& from) noexcept - : getClientPoseResponse(nullptr, std::move(from)) {} - inline getClientPoseResponse& operator=(const getClientPoseResponse& from) { + inline getDeviceInfoResponse(const getDeviceInfoResponse& from) : getDeviceInfoResponse(nullptr, from) {} + inline getDeviceInfoResponse(getDeviceInfoResponse&& from) noexcept + : getDeviceInfoResponse(nullptr, std::move(from)) {} + inline getDeviceInfoResponse& operator=(const getDeviceInfoResponse& from) { CopyFrom(from); return *this; } - inline getClientPoseResponse& operator=(getClientPoseResponse&& from) noexcept { + inline getDeviceInfoResponse& operator=(getDeviceInfoResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -8776,16 +8770,16 @@ class getClientPoseResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getClientPoseResponse& default_instance() { + static const getDeviceInfoResponse& default_instance() { return *internal_default_instance(); } - static inline const getClientPoseResponse* internal_default_instance() { - return reinterpret_cast( - &_getClientPoseResponse_default_instance_); + static inline const getDeviceInfoResponse* internal_default_instance() { + return reinterpret_cast( + &_getDeviceInfoResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 31; - friend void swap(getClientPoseResponse& a, getClientPoseResponse& b) { a.Swap(&b); } - inline void Swap(getClientPoseResponse* other) { + static constexpr int kIndexInFileMessages = 7; + friend void swap(getDeviceInfoResponse& a, getDeviceInfoResponse& b) { a.Swap(&b); } + inline void Swap(getDeviceInfoResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -8797,7 +8791,7 @@ class getClientPoseResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getClientPoseResponse* other) { + void UnsafeArenaSwap(getDeviceInfoResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -8805,13 +8799,13 @@ class getClientPoseResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getClientPoseResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getDeviceInfoResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getClientPoseResponse& from); + void CopyFrom(const getDeviceInfoResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getClientPoseResponse& from) { getClientPoseResponse::MergeImpl(*this, from); } + void MergeFrom(const getDeviceInfoResponse& from) { getDeviceInfoResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -8832,16 +8826,16 @@ class getClientPoseResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getClientPoseResponse* other); + void InternalSwap(getDeviceInfoResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientPoseResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getDeviceInfoResponse"; } protected: - explicit getClientPoseResponse(::google::protobuf::Arena* arena); - getClientPoseResponse(::google::protobuf::Arena* arena, const getClientPoseResponse& from); - getClientPoseResponse(::google::protobuf::Arena* arena, getClientPoseResponse&& from) noexcept - : getClientPoseResponse(arena) { + explicit getDeviceInfoResponse(::google::protobuf::Arena* arena); + getDeviceInfoResponse(::google::protobuf::Arena* arena, const getDeviceInfoResponse& from); + getDeviceInfoResponse(::google::protobuf::Arena* arena, getDeviceInfoResponse&& from) noexcept + : getDeviceInfoResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -8852,71 +8846,26 @@ class getClientPoseResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kTransform3DFieldNumber = 2, - kConfidenceFieldNumber = 3, - kPoseFieldNumber = 4, - kTransform3DStatusFieldNumber = 1, - kXpcfGrpcReturnValueFieldNumber = 5, + kDeviceInfoFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes transform3D = 2; - void clear_transform3d() ; - const std::string& transform3d() const; - template - void set_transform3d(Arg_&& arg, Args_... args); - std::string* mutable_transform3d(); - PROTOBUF_NODISCARD std::string* release_transform3d(); - void set_allocated_transform3d(std::string* value); - - private: - const std::string& _internal_transform3d() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_transform3d( - const std::string& value); - std::string* _internal_mutable_transform3d(); - - public: - // bytes confidence = 3; - void clear_confidence() ; - const std::string& confidence() const; - template - void set_confidence(Arg_&& arg, Args_... args); - std::string* mutable_confidence(); - PROTOBUF_NODISCARD std::string* release_confidence(); - void set_allocated_confidence(std::string* value); - - private: - const std::string& _internal_confidence() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_confidence( - const std::string& value); - std::string* _internal_mutable_confidence(); - - public: - // bytes pose = 4; - void clear_pose() ; - const std::string& pose() const; + // bytes deviceInfo = 1; + void clear_deviceinfo() ; + const std::string& deviceinfo() const; template - void set_pose(Arg_&& arg, Args_... args); - std::string* mutable_pose(); - PROTOBUF_NODISCARD std::string* release_pose(); - void set_allocated_pose(std::string* value); + void set_deviceinfo(Arg_&& arg, Args_... args); + std::string* mutable_deviceinfo(); + PROTOBUF_NODISCARD std::string* release_deviceinfo(); + void set_allocated_deviceinfo(std::string* value); private: - const std::string& _internal_pose() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pose( + const std::string& _internal_deviceinfo() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_deviceinfo( const std::string& value); - std::string* _internal_mutable_pose(); - - public: - // sint32 transform3DStatus = 1; - void clear_transform3dstatus() ; - ::int32_t transform3dstatus() const; - void set_transform3dstatus(::int32_t value); - - private: - ::int32_t _internal_transform3dstatus() const; - void _internal_set_transform3dstatus(::int32_t value); + std::string* _internal_mutable_deviceinfo(); public: - // sint32 xpcfGrpcReturnValue = 5; + // sint32 xpcfGrpcReturnValue = 2; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -8926,17 +8875,17 @@ class getClientPoseResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientPoseResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getDeviceInfoResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 5, 0, + 1, 2, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getClientPoseResponse_default_instance_; + &_getDeviceInfoResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -8951,11 +8900,8 @@ class getClientPoseResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getClientPoseResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr transform3d_; - ::google::protobuf::internal::ArenaStringPtr confidence_; - ::google::protobuf::internal::ArenaStringPtr pose_; - ::int32_t transform3dstatus_; + const getDeviceInfoResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr deviceinfo_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -8965,23 +8911,23 @@ class getClientPoseResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getClientPoseRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientPoseRequest) */ { +class getDeviceInfoRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getDeviceInfoRequest) */ { public: - inline getClientPoseRequest() : getClientPoseRequest(nullptr) {} - ~getClientPoseRequest() override; + inline getDeviceInfoRequest() : getDeviceInfoRequest(nullptr) {} + ~getDeviceInfoRequest() override; template - explicit PROTOBUF_CONSTEXPR getClientPoseRequest( + explicit PROTOBUF_CONSTEXPR getDeviceInfoRequest( ::google::protobuf::internal::ConstantInitialized); - inline getClientPoseRequest(const getClientPoseRequest& from) : getClientPoseRequest(nullptr, from) {} - inline getClientPoseRequest(getClientPoseRequest&& from) noexcept - : getClientPoseRequest(nullptr, std::move(from)) {} - inline getClientPoseRequest& operator=(const getClientPoseRequest& from) { + inline getDeviceInfoRequest(const getDeviceInfoRequest& from) : getDeviceInfoRequest(nullptr, from) {} + inline getDeviceInfoRequest(getDeviceInfoRequest&& from) noexcept + : getDeviceInfoRequest(nullptr, std::move(from)) {} + inline getDeviceInfoRequest& operator=(const getDeviceInfoRequest& from) { CopyFrom(from); return *this; } - inline getClientPoseRequest& operator=(getClientPoseRequest&& from) noexcept { + inline getDeviceInfoRequest& operator=(getDeviceInfoRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -9013,16 +8959,16 @@ class getClientPoseRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getClientPoseRequest& default_instance() { + static const getDeviceInfoRequest& default_instance() { return *internal_default_instance(); } - static inline const getClientPoseRequest* internal_default_instance() { - return reinterpret_cast( - &_getClientPoseRequest_default_instance_); + static inline const getDeviceInfoRequest* internal_default_instance() { + return reinterpret_cast( + &_getDeviceInfoRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 30; - friend void swap(getClientPoseRequest& a, getClientPoseRequest& b) { a.Swap(&b); } - inline void Swap(getClientPoseRequest* other) { + static constexpr int kIndexInFileMessages = 6; + friend void swap(getDeviceInfoRequest& a, getDeviceInfoRequest& b) { a.Swap(&b); } + inline void Swap(getDeviceInfoRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -9034,7 +8980,7 @@ class getClientPoseRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getClientPoseRequest* other) { + void UnsafeArenaSwap(getDeviceInfoRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -9042,13 +8988,13 @@ class getClientPoseRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getClientPoseRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getDeviceInfoRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getClientPoseRequest& from); + void CopyFrom(const getDeviceInfoRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getClientPoseRequest& from) { getClientPoseRequest::MergeImpl(*this, from); } + void MergeFrom(const getDeviceInfoRequest& from) { getDeviceInfoRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -9069,16 +9015,16 @@ class getClientPoseRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getClientPoseRequest* other); + void InternalSwap(getDeviceInfoRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientPoseRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getDeviceInfoRequest"; } protected: - explicit getClientPoseRequest(::google::protobuf::Arena* arena); - getClientPoseRequest(::google::protobuf::Arena* arena, const getClientPoseRequest& from); - getClientPoseRequest(::google::protobuf::Arena* arena, getClientPoseRequest&& from) noexcept - : getClientPoseRequest(arena) { + explicit getDeviceInfoRequest(::google::protobuf::Arena* arena); + getDeviceInfoRequest(::google::protobuf::Arena* arena, const getDeviceInfoRequest& from); + getDeviceInfoRequest(::google::protobuf::Arena* arena, getDeviceInfoRequest&& from) noexcept + : getDeviceInfoRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -9091,12 +9037,8 @@ class getClientPoseRequest final : public ::google::protobuf::Message enum : int { kAccessTokenFieldNumber = 2, kClientUUIDFieldNumber = 3, - kTransform3DFieldNumber = 6, - kConfidenceFieldNumber = 7, - kPoseFieldNumber = 8, + kDeviceInfoFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, - kPoseTypeFieldNumber = 4, - kTransform3DStatusFieldNumber = 5, }; // string accessToken = 2; void clear_accesstoken() ; @@ -9130,52 +9072,20 @@ class getClientPoseRequest final : public ::google::protobuf::Message std::string* _internal_mutable_clientuuid(); public: - // bytes transform3D = 6; - void clear_transform3d() ; - const std::string& transform3d() const; - template - void set_transform3d(Arg_&& arg, Args_... args); - std::string* mutable_transform3d(); - PROTOBUF_NODISCARD std::string* release_transform3d(); - void set_allocated_transform3d(std::string* value); - - private: - const std::string& _internal_transform3d() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_transform3d( - const std::string& value); - std::string* _internal_mutable_transform3d(); - - public: - // bytes confidence = 7; - void clear_confidence() ; - const std::string& confidence() const; - template - void set_confidence(Arg_&& arg, Args_... args); - std::string* mutable_confidence(); - PROTOBUF_NODISCARD std::string* release_confidence(); - void set_allocated_confidence(std::string* value); - - private: - const std::string& _internal_confidence() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_confidence( - const std::string& value); - std::string* _internal_mutable_confidence(); - - public: - // bytes pose = 8; - void clear_pose() ; - const std::string& pose() const; + // bytes deviceInfo = 4; + void clear_deviceinfo() ; + const std::string& deviceinfo() const; template - void set_pose(Arg_&& arg, Args_... args); - std::string* mutable_pose(); - PROTOBUF_NODISCARD std::string* release_pose(); - void set_allocated_pose(std::string* value); + void set_deviceinfo(Arg_&& arg, Args_... args); + std::string* mutable_deviceinfo(); + PROTOBUF_NODISCARD std::string* release_deviceinfo(); + void set_allocated_deviceinfo(std::string* value); private: - const std::string& _internal_pose() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pose( + const std::string& _internal_deviceinfo() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_deviceinfo( const std::string& value); - std::string* _internal_mutable_pose(); + std::string* _internal_mutable_deviceinfo(); public: // int32 grpcServerCompressionFormat = 1; @@ -9188,37 +9098,17 @@ class getClientPoseRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 poseType = 4; - void clear_posetype() ; - ::int32_t posetype() const; - void set_posetype(::int32_t value); - - private: - ::int32_t _internal_posetype() const; - void _internal_set_posetype(::int32_t value); - - public: - // sint32 transform3DStatus = 5; - void clear_transform3dstatus() ; - ::int32_t transform3dstatus() const; - void set_transform3dstatus(::int32_t value); - - private: - ::int32_t _internal_transform3dstatus() const; - void _internal_set_transform3dstatus(::int32_t value); - - public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientPoseRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getDeviceInfoRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 8, 0, - 72, 2> + 2, 4, 0, + 64, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getClientPoseRequest_default_instance_; + &_getDeviceInfoRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -9233,15 +9123,11 @@ class getClientPoseRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getClientPoseRequest& from_msg); + const getDeviceInfoRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr clientuuid_; - ::google::protobuf::internal::ArenaStringPtr transform3d_; - ::google::protobuf::internal::ArenaStringPtr confidence_; - ::google::protobuf::internal::ArenaStringPtr pose_; + ::google::protobuf::internal::ArenaStringPtr deviceinfo_; ::int32_t grpcservercompressionformat_; - ::int32_t posetype_; - ::int32_t transform3dstatus_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -9250,23 +9136,23 @@ class getClientPoseRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getClientMapUUIDResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientMapUUIDResponse) */ { +class getClientPoseResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientPoseResponse) */ { public: - inline getClientMapUUIDResponse() : getClientMapUUIDResponse(nullptr) {} - ~getClientMapUUIDResponse() override; + inline getClientPoseResponse() : getClientPoseResponse(nullptr) {} + ~getClientPoseResponse() override; template - explicit PROTOBUF_CONSTEXPR getClientMapUUIDResponse( + explicit PROTOBUF_CONSTEXPR getClientPoseResponse( ::google::protobuf::internal::ConstantInitialized); - inline getClientMapUUIDResponse(const getClientMapUUIDResponse& from) : getClientMapUUIDResponse(nullptr, from) {} - inline getClientMapUUIDResponse(getClientMapUUIDResponse&& from) noexcept - : getClientMapUUIDResponse(nullptr, std::move(from)) {} - inline getClientMapUUIDResponse& operator=(const getClientMapUUIDResponse& from) { + inline getClientPoseResponse(const getClientPoseResponse& from) : getClientPoseResponse(nullptr, from) {} + inline getClientPoseResponse(getClientPoseResponse&& from) noexcept + : getClientPoseResponse(nullptr, std::move(from)) {} + inline getClientPoseResponse& operator=(const getClientPoseResponse& from) { CopyFrom(from); return *this; } - inline getClientMapUUIDResponse& operator=(getClientMapUUIDResponse&& from) noexcept { + inline getClientPoseResponse& operator=(getClientPoseResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -9298,16 +9184,16 @@ class getClientMapUUIDResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getClientMapUUIDResponse& default_instance() { + static const getClientPoseResponse& default_instance() { return *internal_default_instance(); } - static inline const getClientMapUUIDResponse* internal_default_instance() { - return reinterpret_cast( - &_getClientMapUUIDResponse_default_instance_); + static inline const getClientPoseResponse* internal_default_instance() { + return reinterpret_cast( + &_getClientPoseResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 39; - friend void swap(getClientMapUUIDResponse& a, getClientMapUUIDResponse& b) { a.Swap(&b); } - inline void Swap(getClientMapUUIDResponse* other) { + static constexpr int kIndexInFileMessages = 31; + friend void swap(getClientPoseResponse& a, getClientPoseResponse& b) { a.Swap(&b); } + inline void Swap(getClientPoseResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -9319,7 +9205,7 @@ class getClientMapUUIDResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getClientMapUUIDResponse* other) { + void UnsafeArenaSwap(getClientPoseResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -9327,13 +9213,13 @@ class getClientMapUUIDResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getClientMapUUIDResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getClientPoseResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getClientMapUUIDResponse& from); + void CopyFrom(const getClientPoseResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getClientMapUUIDResponse& from) { getClientMapUUIDResponse::MergeImpl(*this, from); } + void MergeFrom(const getClientPoseResponse& from) { getClientPoseResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -9354,16 +9240,16 @@ class getClientMapUUIDResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getClientMapUUIDResponse* other); + void InternalSwap(getClientPoseResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientMapUUIDResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientPoseResponse"; } protected: - explicit getClientMapUUIDResponse(::google::protobuf::Arena* arena); - getClientMapUUIDResponse(::google::protobuf::Arena* arena, const getClientMapUUIDResponse& from); - getClientMapUUIDResponse(::google::protobuf::Arena* arena, getClientMapUUIDResponse&& from) noexcept - : getClientMapUUIDResponse(arena) { + explicit getClientPoseResponse(::google::protobuf::Arena* arena); + getClientPoseResponse(::google::protobuf::Arena* arena, const getClientPoseResponse& from); + getClientPoseResponse(::google::protobuf::Arena* arena, getClientPoseResponse&& from) noexcept + : getClientPoseResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -9374,26 +9260,71 @@ class getClientMapUUIDResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapUUIDFieldNumber = 1, - kXpcfGrpcReturnValueFieldNumber = 2, + kTransform3DFieldNumber = 2, + kConfidenceFieldNumber = 3, + kPoseFieldNumber = 4, + kTransform3DStatusFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 5, }; - // string mapUUID = 1; - void clear_mapuuid() ; - const std::string& mapuuid() const; + // bytes transform3D = 2; + void clear_transform3d() ; + const std::string& transform3d() const; template - void set_mapuuid(Arg_&& arg, Args_... args); - std::string* mutable_mapuuid(); - PROTOBUF_NODISCARD std::string* release_mapuuid(); - void set_allocated_mapuuid(std::string* value); + void set_transform3d(Arg_&& arg, Args_... args); + std::string* mutable_transform3d(); + PROTOBUF_NODISCARD std::string* release_transform3d(); + void set_allocated_transform3d(std::string* value); private: - const std::string& _internal_mapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( + const std::string& _internal_transform3d() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_transform3d( const std::string& value); - std::string* _internal_mutable_mapuuid(); + std::string* _internal_mutable_transform3d(); public: - // sint32 xpcfGrpcReturnValue = 2; + // bytes confidence = 3; + void clear_confidence() ; + const std::string& confidence() const; + template + void set_confidence(Arg_&& arg, Args_... args); + std::string* mutable_confidence(); + PROTOBUF_NODISCARD std::string* release_confidence(); + void set_allocated_confidence(std::string* value); + + private: + const std::string& _internal_confidence() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_confidence( + const std::string& value); + std::string* _internal_mutable_confidence(); + + public: + // bytes pose = 4; + void clear_pose() ; + const std::string& pose() const; + template + void set_pose(Arg_&& arg, Args_... args); + std::string* mutable_pose(); + PROTOBUF_NODISCARD std::string* release_pose(); + void set_allocated_pose(std::string* value); + + private: + const std::string& _internal_pose() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pose( + const std::string& value); + std::string* _internal_mutable_pose(); + + public: + // sint32 transform3DStatus = 1; + void clear_transform3dstatus() ; + ::int32_t transform3dstatus() const; + void set_transform3dstatus(::int32_t value); + + private: + ::int32_t _internal_transform3dstatus() const; + void _internal_set_transform3dstatus(::int32_t value); + + public: + // sint32 xpcfGrpcReturnValue = 5; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -9403,17 +9334,17 @@ class getClientMapUUIDResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientMapUUIDResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientPoseResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 1, 2, 0, - 54, 2> + 3, 5, 0, + 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getClientMapUUIDResponse_default_instance_; + &_getClientPoseResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -9428,8 +9359,11 @@ class getClientMapUUIDResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getClientMapUUIDResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr mapuuid_; + const getClientPoseResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr transform3d_; + ::google::protobuf::internal::ArenaStringPtr confidence_; + ::google::protobuf::internal::ArenaStringPtr pose_; + ::int32_t transform3dstatus_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -9439,23 +9373,23 @@ class getClientMapUUIDResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getClientMapUUIDRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientMapUUIDRequest) */ { +class getClientPoseRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientPoseRequest) */ { public: - inline getClientMapUUIDRequest() : getClientMapUUIDRequest(nullptr) {} - ~getClientMapUUIDRequest() override; + inline getClientPoseRequest() : getClientPoseRequest(nullptr) {} + ~getClientPoseRequest() override; template - explicit PROTOBUF_CONSTEXPR getClientMapUUIDRequest( + explicit PROTOBUF_CONSTEXPR getClientPoseRequest( ::google::protobuf::internal::ConstantInitialized); - inline getClientMapUUIDRequest(const getClientMapUUIDRequest& from) : getClientMapUUIDRequest(nullptr, from) {} - inline getClientMapUUIDRequest(getClientMapUUIDRequest&& from) noexcept - : getClientMapUUIDRequest(nullptr, std::move(from)) {} - inline getClientMapUUIDRequest& operator=(const getClientMapUUIDRequest& from) { + inline getClientPoseRequest(const getClientPoseRequest& from) : getClientPoseRequest(nullptr, from) {} + inline getClientPoseRequest(getClientPoseRequest&& from) noexcept + : getClientPoseRequest(nullptr, std::move(from)) {} + inline getClientPoseRequest& operator=(const getClientPoseRequest& from) { CopyFrom(from); return *this; } - inline getClientMapUUIDRequest& operator=(getClientMapUUIDRequest&& from) noexcept { + inline getClientPoseRequest& operator=(getClientPoseRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -9487,16 +9421,16 @@ class getClientMapUUIDRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getClientMapUUIDRequest& default_instance() { + static const getClientPoseRequest& default_instance() { return *internal_default_instance(); } - static inline const getClientMapUUIDRequest* internal_default_instance() { - return reinterpret_cast( - &_getClientMapUUIDRequest_default_instance_); + static inline const getClientPoseRequest* internal_default_instance() { + return reinterpret_cast( + &_getClientPoseRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 38; - friend void swap(getClientMapUUIDRequest& a, getClientMapUUIDRequest& b) { a.Swap(&b); } - inline void Swap(getClientMapUUIDRequest* other) { + static constexpr int kIndexInFileMessages = 30; + friend void swap(getClientPoseRequest& a, getClientPoseRequest& b) { a.Swap(&b); } + inline void Swap(getClientPoseRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -9508,7 +9442,7 @@ class getClientMapUUIDRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getClientMapUUIDRequest* other) { + void UnsafeArenaSwap(getClientPoseRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -9516,13 +9450,13 @@ class getClientMapUUIDRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getClientMapUUIDRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getClientPoseRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getClientMapUUIDRequest& from); + void CopyFrom(const getClientPoseRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getClientMapUUIDRequest& from) { getClientMapUUIDRequest::MergeImpl(*this, from); } + void MergeFrom(const getClientPoseRequest& from) { getClientPoseRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -9543,16 +9477,16 @@ class getClientMapUUIDRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getClientMapUUIDRequest* other); + void InternalSwap(getClientPoseRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientMapUUIDRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientPoseRequest"; } protected: - explicit getClientMapUUIDRequest(::google::protobuf::Arena* arena); - getClientMapUUIDRequest(::google::protobuf::Arena* arena, const getClientMapUUIDRequest& from); - getClientMapUUIDRequest(::google::protobuf::Arena* arena, getClientMapUUIDRequest&& from) noexcept - : getClientMapUUIDRequest(arena) { + explicit getClientPoseRequest(::google::protobuf::Arena* arena); + getClientPoseRequest(::google::protobuf::Arena* arena, const getClientPoseRequest& from); + getClientPoseRequest(::google::protobuf::Arena* arena, getClientPoseRequest&& from) noexcept + : getClientPoseRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -9565,8 +9499,12 @@ class getClientMapUUIDRequest final : public ::google::protobuf::Message enum : int { kAccessTokenFieldNumber = 2, kClientUUIDFieldNumber = 3, - kMapUUIDFieldNumber = 4, + kTransform3DFieldNumber = 6, + kConfidenceFieldNumber = 7, + kPoseFieldNumber = 8, kGrpcServerCompressionFormatFieldNumber = 1, + kPoseTypeFieldNumber = 4, + kTransform3DStatusFieldNumber = 5, }; // string accessToken = 2; void clear_accesstoken() ; @@ -9600,43 +9538,95 @@ class getClientMapUUIDRequest final : public ::google::protobuf::Message std::string* _internal_mutable_clientuuid(); public: - // string mapUUID = 4; - void clear_mapuuid() ; - const std::string& mapuuid() const; + // bytes transform3D = 6; + void clear_transform3d() ; + const std::string& transform3d() const; template - void set_mapuuid(Arg_&& arg, Args_... args); - std::string* mutable_mapuuid(); - PROTOBUF_NODISCARD std::string* release_mapuuid(); - void set_allocated_mapuuid(std::string* value); + void set_transform3d(Arg_&& arg, Args_... args); + std::string* mutable_transform3d(); + PROTOBUF_NODISCARD std::string* release_transform3d(); + void set_allocated_transform3d(std::string* value); private: - const std::string& _internal_mapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( + const std::string& _internal_transform3d() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_transform3d( const std::string& value); - std::string* _internal_mutable_mapuuid(); + std::string* _internal_mutable_transform3d(); public: - // int32 grpcServerCompressionFormat = 1; - void clear_grpcservercompressionformat() ; - ::int32_t grpcservercompressionformat() const; - void set_grpcservercompressionformat(::int32_t value); + // bytes confidence = 7; + void clear_confidence() ; + const std::string& confidence() const; + template + void set_confidence(Arg_&& arg, Args_... args); + std::string* mutable_confidence(); + PROTOBUF_NODISCARD std::string* release_confidence(); + void set_allocated_confidence(std::string* value); private: - ::int32_t _internal_grpcservercompressionformat() const; - void _internal_set_grpcservercompressionformat(::int32_t value); + const std::string& _internal_confidence() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_confidence( + const std::string& value); + std::string* _internal_mutable_confidence(); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientMapUUIDRequest) - private: - class _Internal; - friend class ::google::protobuf::internal::TcParser; + // bytes pose = 8; + void clear_pose() ; + const std::string& pose() const; + template + void set_pose(Arg_&& arg, Args_... args); + std::string* mutable_pose(); + PROTOBUF_NODISCARD std::string* release_pose(); + void set_allocated_pose(std::string* value); + + private: + const std::string& _internal_pose() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pose( + const std::string& value); + std::string* _internal_mutable_pose(); + + public: + // int32 grpcServerCompressionFormat = 1; + void clear_grpcservercompressionformat() ; + ::int32_t grpcservercompressionformat() const; + void set_grpcservercompressionformat(::int32_t value); + + private: + ::int32_t _internal_grpcservercompressionformat() const; + void _internal_set_grpcservercompressionformat(::int32_t value); + + public: + // sint32 poseType = 4; + void clear_posetype() ; + ::int32_t posetype() const; + void set_posetype(::int32_t value); + + private: + ::int32_t _internal_posetype() const; + void _internal_set_posetype(::int32_t value); + + public: + // sint32 transform3DStatus = 5; + void clear_transform3dstatus() ; + ::int32_t transform3dstatus() const; + void set_transform3dstatus(::int32_t value); + + private: + ::int32_t _internal_transform3dstatus() const; + void _internal_set_transform3dstatus(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientPoseRequest) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 4, 0, - 74, 2> + 3, 8, 0, + 72, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getClientMapUUIDRequest_default_instance_; + &_getClientPoseRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -9651,11 +9641,15 @@ class getClientMapUUIDRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getClientMapUUIDRequest& from_msg); + const getClientPoseRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr clientuuid_; - ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr transform3d_; + ::google::protobuf::internal::ArenaStringPtr confidence_; + ::google::protobuf::internal::ArenaStringPtr pose_; ::int32_t grpcservercompressionformat_; + ::int32_t posetype_; + ::int32_t transform3dstatus_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -9664,23 +9658,23 @@ class getClientMapUUIDRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getClientInfoForMapResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientInfoForMapResponse) */ { +class getClientMapUUIDResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientMapUUIDResponse) */ { public: - inline getClientInfoForMapResponse() : getClientInfoForMapResponse(nullptr) {} - ~getClientInfoForMapResponse() override; + inline getClientMapUUIDResponse() : getClientMapUUIDResponse(nullptr) {} + ~getClientMapUUIDResponse() override; template - explicit PROTOBUF_CONSTEXPR getClientInfoForMapResponse( + explicit PROTOBUF_CONSTEXPR getClientMapUUIDResponse( ::google::protobuf::internal::ConstantInitialized); - inline getClientInfoForMapResponse(const getClientInfoForMapResponse& from) : getClientInfoForMapResponse(nullptr, from) {} - inline getClientInfoForMapResponse(getClientInfoForMapResponse&& from) noexcept - : getClientInfoForMapResponse(nullptr, std::move(from)) {} - inline getClientInfoForMapResponse& operator=(const getClientInfoForMapResponse& from) { + inline getClientMapUUIDResponse(const getClientMapUUIDResponse& from) : getClientMapUUIDResponse(nullptr, from) {} + inline getClientMapUUIDResponse(getClientMapUUIDResponse&& from) noexcept + : getClientMapUUIDResponse(nullptr, std::move(from)) {} + inline getClientMapUUIDResponse& operator=(const getClientMapUUIDResponse& from) { CopyFrom(from); return *this; } - inline getClientInfoForMapResponse& operator=(getClientInfoForMapResponse&& from) noexcept { + inline getClientMapUUIDResponse& operator=(getClientMapUUIDResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -9712,16 +9706,16 @@ class getClientInfoForMapResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getClientInfoForMapResponse& default_instance() { + static const getClientMapUUIDResponse& default_instance() { return *internal_default_instance(); } - static inline const getClientInfoForMapResponse* internal_default_instance() { - return reinterpret_cast( - &_getClientInfoForMapResponse_default_instance_); + static inline const getClientMapUUIDResponse* internal_default_instance() { + return reinterpret_cast( + &_getClientMapUUIDResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 41; - friend void swap(getClientInfoForMapResponse& a, getClientInfoForMapResponse& b) { a.Swap(&b); } - inline void Swap(getClientInfoForMapResponse* other) { + static constexpr int kIndexInFileMessages = 39; + friend void swap(getClientMapUUIDResponse& a, getClientMapUUIDResponse& b) { a.Swap(&b); } + inline void Swap(getClientMapUUIDResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -9733,7 +9727,7 @@ class getClientInfoForMapResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getClientInfoForMapResponse* other) { + void UnsafeArenaSwap(getClientMapUUIDResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -9741,13 +9735,13 @@ class getClientInfoForMapResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getClientInfoForMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getClientMapUUIDResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getClientInfoForMapResponse& from); + void CopyFrom(const getClientMapUUIDResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getClientInfoForMapResponse& from) { getClientInfoForMapResponse::MergeImpl(*this, from); } + void MergeFrom(const getClientMapUUIDResponse& from) { getClientMapUUIDResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -9768,16 +9762,16 @@ class getClientInfoForMapResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getClientInfoForMapResponse* other); + void InternalSwap(getClientMapUUIDResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientInfoForMapResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientMapUUIDResponse"; } protected: - explicit getClientInfoForMapResponse(::google::protobuf::Arena* arena); - getClientInfoForMapResponse(::google::protobuf::Arena* arena, const getClientInfoForMapResponse& from); - getClientInfoForMapResponse(::google::protobuf::Arena* arena, getClientInfoForMapResponse&& from) noexcept - : getClientInfoForMapResponse(arena) { + explicit getClientMapUUIDResponse(::google::protobuf::Arena* arena); + getClientMapUUIDResponse(::google::protobuf::Arena* arena, const getClientMapUUIDResponse& from); + getClientMapUUIDResponse(::google::protobuf::Arena* arena, getClientMapUUIDResponse&& from) noexcept + : getClientMapUUIDResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -9788,23 +9782,23 @@ class getClientInfoForMapResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kClientInfoListFieldNumber = 1, + kMapUUIDFieldNumber = 1, kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes clientInfoList = 1; - void clear_clientinfolist() ; - const std::string& clientinfolist() const; + // string mapUUID = 1; + void clear_mapuuid() ; + const std::string& mapuuid() const; template - void set_clientinfolist(Arg_&& arg, Args_... args); - std::string* mutable_clientinfolist(); - PROTOBUF_NODISCARD std::string* release_clientinfolist(); - void set_allocated_clientinfolist(std::string* value); + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); private: - const std::string& _internal_clientinfolist() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientinfolist( + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( const std::string& value); - std::string* _internal_mutable_clientinfolist(); + std::string* _internal_mutable_mapuuid(); public: // sint32 xpcfGrpcReturnValue = 2; @@ -9817,17 +9811,17 @@ class getClientInfoForMapResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientInfoForMapResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientMapUUIDResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, - 0, 2> + 54, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getClientInfoForMapResponse_default_instance_; + &_getClientMapUUIDResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -9842,8 +9836,8 @@ class getClientInfoForMapResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getClientInfoForMapResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr clientinfolist_; + const getClientMapUUIDResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr mapuuid_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -9853,23 +9847,23 @@ class getClientInfoForMapResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getClientInfoForMapRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientInfoForMapRequest) */ { +class getClientMapUUIDRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientMapUUIDRequest) */ { public: - inline getClientInfoForMapRequest() : getClientInfoForMapRequest(nullptr) {} - ~getClientInfoForMapRequest() override; + inline getClientMapUUIDRequest() : getClientMapUUIDRequest(nullptr) {} + ~getClientMapUUIDRequest() override; template - explicit PROTOBUF_CONSTEXPR getClientInfoForMapRequest( + explicit PROTOBUF_CONSTEXPR getClientMapUUIDRequest( ::google::protobuf::internal::ConstantInitialized); - inline getClientInfoForMapRequest(const getClientInfoForMapRequest& from) : getClientInfoForMapRequest(nullptr, from) {} - inline getClientInfoForMapRequest(getClientInfoForMapRequest&& from) noexcept - : getClientInfoForMapRequest(nullptr, std::move(from)) {} - inline getClientInfoForMapRequest& operator=(const getClientInfoForMapRequest& from) { + inline getClientMapUUIDRequest(const getClientMapUUIDRequest& from) : getClientMapUUIDRequest(nullptr, from) {} + inline getClientMapUUIDRequest(getClientMapUUIDRequest&& from) noexcept + : getClientMapUUIDRequest(nullptr, std::move(from)) {} + inline getClientMapUUIDRequest& operator=(const getClientMapUUIDRequest& from) { CopyFrom(from); return *this; } - inline getClientInfoForMapRequest& operator=(getClientInfoForMapRequest&& from) noexcept { + inline getClientMapUUIDRequest& operator=(getClientMapUUIDRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -9901,16 +9895,16 @@ class getClientInfoForMapRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getClientInfoForMapRequest& default_instance() { + static const getClientMapUUIDRequest& default_instance() { return *internal_default_instance(); } - static inline const getClientInfoForMapRequest* internal_default_instance() { - return reinterpret_cast( - &_getClientInfoForMapRequest_default_instance_); + static inline const getClientMapUUIDRequest* internal_default_instance() { + return reinterpret_cast( + &_getClientMapUUIDRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 40; - friend void swap(getClientInfoForMapRequest& a, getClientInfoForMapRequest& b) { a.Swap(&b); } - inline void Swap(getClientInfoForMapRequest* other) { + static constexpr int kIndexInFileMessages = 38; + friend void swap(getClientMapUUIDRequest& a, getClientMapUUIDRequest& b) { a.Swap(&b); } + inline void Swap(getClientMapUUIDRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -9922,7 +9916,7 @@ class getClientInfoForMapRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getClientInfoForMapRequest* other) { + void UnsafeArenaSwap(getClientMapUUIDRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -9930,13 +9924,13 @@ class getClientInfoForMapRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getClientInfoForMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getClientMapUUIDRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getClientInfoForMapRequest& from); + void CopyFrom(const getClientMapUUIDRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getClientInfoForMapRequest& from) { getClientInfoForMapRequest::MergeImpl(*this, from); } + void MergeFrom(const getClientMapUUIDRequest& from) { getClientMapUUIDRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -9957,16 +9951,16 @@ class getClientInfoForMapRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getClientInfoForMapRequest* other); + void InternalSwap(getClientMapUUIDRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientInfoForMapRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientMapUUIDRequest"; } protected: - explicit getClientInfoForMapRequest(::google::protobuf::Arena* arena); - getClientInfoForMapRequest(::google::protobuf::Arena* arena, const getClientInfoForMapRequest& from); - getClientInfoForMapRequest(::google::protobuf::Arena* arena, getClientInfoForMapRequest&& from) noexcept - : getClientInfoForMapRequest(arena) { + explicit getClientMapUUIDRequest(::google::protobuf::Arena* arena); + getClientMapUUIDRequest(::google::protobuf::Arena* arena, const getClientMapUUIDRequest& from); + getClientMapUUIDRequest(::google::protobuf::Arena* arena, getClientMapUUIDRequest&& from) noexcept + : getClientMapUUIDRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -9978,8 +9972,8 @@ class getClientInfoForMapRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kMapUUIDFieldNumber = 3, - kClientInfoListFieldNumber = 4, + kClientUUIDFieldNumber = 3, + kMapUUIDFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, }; // string accessToken = 2; @@ -9998,7 +9992,23 @@ class getClientInfoForMapRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // string mapUUID = 3; + // string clientUUID = 3; + void clear_clientuuid() ; + const std::string& clientuuid() const; + template + void set_clientuuid(Arg_&& arg, Args_... args); + std::string* mutable_clientuuid(); + PROTOBUF_NODISCARD std::string* release_clientuuid(); + void set_allocated_clientuuid(std::string* value); + + private: + const std::string& _internal_clientuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( + const std::string& value); + std::string* _internal_mutable_clientuuid(); + + public: + // string mapUUID = 4; void clear_mapuuid() ; const std::string& mapuuid() const; template @@ -10013,22 +10023,6 @@ class getClientInfoForMapRequest final : public ::google::protobuf::Message const std::string& value); std::string* _internal_mutable_mapuuid(); - public: - // bytes clientInfoList = 4; - void clear_clientinfolist() ; - const std::string& clientinfolist() const; - template - void set_clientinfolist(Arg_&& arg, Args_... args); - std::string* mutable_clientinfolist(); - PROTOBUF_NODISCARD std::string* release_clientinfolist(); - void set_allocated_clientinfolist(std::string* value); - - private: - const std::string& _internal_clientinfolist() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientinfolist( - const std::string& value); - std::string* _internal_mutable_clientinfolist(); - public: // int32 grpcServerCompressionFormat = 1; void clear_grpcservercompressionformat() ; @@ -10040,17 +10034,17 @@ class getClientInfoForMapRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientInfoForMapRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientMapUUIDRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 0, - 67, 2> + 74, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getClientInfoForMapRequest_default_instance_; + &_getClientMapUUIDRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -10065,10 +10059,10 @@ class getClientInfoForMapRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getClientInfoForMapRequest& from_msg); + const getClientMapUUIDRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; + ::google::protobuf::internal::ArenaStringPtr clientuuid_; ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr clientinfolist_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -10078,23 +10072,23 @@ class getClientInfoForMapRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getCameraParametersResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getCameraParametersResponse) */ { +class getClientInfoForMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientInfoForMapResponse) */ { public: - inline getCameraParametersResponse() : getCameraParametersResponse(nullptr) {} - ~getCameraParametersResponse() override; + inline getClientInfoForMapResponse() : getClientInfoForMapResponse(nullptr) {} + ~getClientInfoForMapResponse() override; template - explicit PROTOBUF_CONSTEXPR getCameraParametersResponse( + explicit PROTOBUF_CONSTEXPR getClientInfoForMapResponse( ::google::protobuf::internal::ConstantInitialized); - inline getCameraParametersResponse(const getCameraParametersResponse& from) : getCameraParametersResponse(nullptr, from) {} - inline getCameraParametersResponse(getCameraParametersResponse&& from) noexcept - : getCameraParametersResponse(nullptr, std::move(from)) {} - inline getCameraParametersResponse& operator=(const getCameraParametersResponse& from) { + inline getClientInfoForMapResponse(const getClientInfoForMapResponse& from) : getClientInfoForMapResponse(nullptr, from) {} + inline getClientInfoForMapResponse(getClientInfoForMapResponse&& from) noexcept + : getClientInfoForMapResponse(nullptr, std::move(from)) {} + inline getClientInfoForMapResponse& operator=(const getClientInfoForMapResponse& from) { CopyFrom(from); return *this; } - inline getCameraParametersResponse& operator=(getCameraParametersResponse&& from) noexcept { + inline getClientInfoForMapResponse& operator=(getClientInfoForMapResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -10126,16 +10120,16 @@ class getCameraParametersResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getCameraParametersResponse& default_instance() { + static const getClientInfoForMapResponse& default_instance() { return *internal_default_instance(); } - static inline const getCameraParametersResponse* internal_default_instance() { - return reinterpret_cast( - &_getCameraParametersResponse_default_instance_); + static inline const getClientInfoForMapResponse* internal_default_instance() { + return reinterpret_cast( + &_getClientInfoForMapResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 25; - friend void swap(getCameraParametersResponse& a, getCameraParametersResponse& b) { a.Swap(&b); } - inline void Swap(getCameraParametersResponse* other) { + static constexpr int kIndexInFileMessages = 41; + friend void swap(getClientInfoForMapResponse& a, getClientInfoForMapResponse& b) { a.Swap(&b); } + inline void Swap(getClientInfoForMapResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -10147,7 +10141,7 @@ class getCameraParametersResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getCameraParametersResponse* other) { + void UnsafeArenaSwap(getClientInfoForMapResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -10155,13 +10149,13 @@ class getCameraParametersResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getCameraParametersResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getClientInfoForMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getCameraParametersResponse& from); + void CopyFrom(const getClientInfoForMapResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getCameraParametersResponse& from) { getCameraParametersResponse::MergeImpl(*this, from); } + void MergeFrom(const getClientInfoForMapResponse& from) { getClientInfoForMapResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -10182,16 +10176,16 @@ class getCameraParametersResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getCameraParametersResponse* other); + void InternalSwap(getClientInfoForMapResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getCameraParametersResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientInfoForMapResponse"; } protected: - explicit getCameraParametersResponse(::google::protobuf::Arena* arena); - getCameraParametersResponse(::google::protobuf::Arena* arena, const getCameraParametersResponse& from); - getCameraParametersResponse(::google::protobuf::Arena* arena, getCameraParametersResponse&& from) noexcept - : getCameraParametersResponse(arena) { + explicit getClientInfoForMapResponse(::google::protobuf::Arena* arena); + getClientInfoForMapResponse(::google::protobuf::Arena* arena, const getClientInfoForMapResponse& from); + getClientInfoForMapResponse(::google::protobuf::Arena* arena, getClientInfoForMapResponse&& from) noexcept + : getClientInfoForMapResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -10202,23 +10196,23 @@ class getCameraParametersResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kCameraParamsFieldNumber = 1, + kClientInfoListFieldNumber = 1, kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes cameraParams = 1; - void clear_cameraparams() ; - const std::string& cameraparams() const; + // bytes clientInfoList = 1; + void clear_clientinfolist() ; + const std::string& clientinfolist() const; template - void set_cameraparams(Arg_&& arg, Args_... args); - std::string* mutable_cameraparams(); - PROTOBUF_NODISCARD std::string* release_cameraparams(); - void set_allocated_cameraparams(std::string* value); + void set_clientinfolist(Arg_&& arg, Args_... args); + std::string* mutable_clientinfolist(); + PROTOBUF_NODISCARD std::string* release_clientinfolist(); + void set_allocated_clientinfolist(std::string* value); private: - const std::string& _internal_cameraparams() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparams( + const std::string& _internal_clientinfolist() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientinfolist( const std::string& value); - std::string* _internal_mutable_cameraparams(); + std::string* _internal_mutable_clientinfolist(); public: // sint32 xpcfGrpcReturnValue = 2; @@ -10231,7 +10225,7 @@ class getCameraParametersResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getCameraParametersResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientInfoForMapResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -10241,7 +10235,7 @@ class getCameraParametersResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_getCameraParametersResponse_default_instance_; + &_getClientInfoForMapResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -10256,8 +10250,8 @@ class getCameraParametersResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getCameraParametersResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr cameraparams_; + const getClientInfoForMapResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr clientinfolist_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -10267,23 +10261,23 @@ class getCameraParametersResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getCameraParametersRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getCameraParametersRequest) */ { +class getClientInfoForMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getClientInfoForMapRequest) */ { public: - inline getCameraParametersRequest() : getCameraParametersRequest(nullptr) {} - ~getCameraParametersRequest() override; + inline getClientInfoForMapRequest() : getClientInfoForMapRequest(nullptr) {} + ~getClientInfoForMapRequest() override; template - explicit PROTOBUF_CONSTEXPR getCameraParametersRequest( + explicit PROTOBUF_CONSTEXPR getClientInfoForMapRequest( ::google::protobuf::internal::ConstantInitialized); - inline getCameraParametersRequest(const getCameraParametersRequest& from) : getCameraParametersRequest(nullptr, from) {} - inline getCameraParametersRequest(getCameraParametersRequest&& from) noexcept - : getCameraParametersRequest(nullptr, std::move(from)) {} - inline getCameraParametersRequest& operator=(const getCameraParametersRequest& from) { + inline getClientInfoForMapRequest(const getClientInfoForMapRequest& from) : getClientInfoForMapRequest(nullptr, from) {} + inline getClientInfoForMapRequest(getClientInfoForMapRequest&& from) noexcept + : getClientInfoForMapRequest(nullptr, std::move(from)) {} + inline getClientInfoForMapRequest& operator=(const getClientInfoForMapRequest& from) { CopyFrom(from); return *this; } - inline getCameraParametersRequest& operator=(getCameraParametersRequest&& from) noexcept { + inline getClientInfoForMapRequest& operator=(getClientInfoForMapRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -10315,16 +10309,16 @@ class getCameraParametersRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getCameraParametersRequest& default_instance() { + static const getClientInfoForMapRequest& default_instance() { return *internal_default_instance(); } - static inline const getCameraParametersRequest* internal_default_instance() { - return reinterpret_cast( - &_getCameraParametersRequest_default_instance_); + static inline const getClientInfoForMapRequest* internal_default_instance() { + return reinterpret_cast( + &_getClientInfoForMapRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 24; - friend void swap(getCameraParametersRequest& a, getCameraParametersRequest& b) { a.Swap(&b); } - inline void Swap(getCameraParametersRequest* other) { + static constexpr int kIndexInFileMessages = 40; + friend void swap(getClientInfoForMapRequest& a, getClientInfoForMapRequest& b) { a.Swap(&b); } + inline void Swap(getClientInfoForMapRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -10336,7 +10330,7 @@ class getCameraParametersRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getCameraParametersRequest* other) { + void UnsafeArenaSwap(getClientInfoForMapRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -10344,13 +10338,13 @@ class getCameraParametersRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getCameraParametersRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getClientInfoForMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getCameraParametersRequest& from); + void CopyFrom(const getClientInfoForMapRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getCameraParametersRequest& from) { getCameraParametersRequest::MergeImpl(*this, from); } + void MergeFrom(const getClientInfoForMapRequest& from) { getClientInfoForMapRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -10371,16 +10365,16 @@ class getCameraParametersRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getCameraParametersRequest* other); + void InternalSwap(getClientInfoForMapRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getCameraParametersRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getClientInfoForMapRequest"; } protected: - explicit getCameraParametersRequest(::google::protobuf::Arena* arena); - getCameraParametersRequest(::google::protobuf::Arena* arena, const getCameraParametersRequest& from); - getCameraParametersRequest(::google::protobuf::Arena* arena, getCameraParametersRequest&& from) noexcept - : getCameraParametersRequest(arena) { + explicit getClientInfoForMapRequest(::google::protobuf::Arena* arena); + getClientInfoForMapRequest(::google::protobuf::Arena* arena, const getClientInfoForMapRequest& from); + getClientInfoForMapRequest(::google::protobuf::Arena* arena, getClientInfoForMapRequest&& from) noexcept + : getClientInfoForMapRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -10392,8 +10386,8 @@ class getCameraParametersRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kClientUUIDFieldNumber = 3, - kCameraParamsFieldNumber = 4, + kMapUUIDFieldNumber = 3, + kClientInfoListFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, }; // string accessToken = 2; @@ -10412,36 +10406,36 @@ class getCameraParametersRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // string clientUUID = 3; - void clear_clientuuid() ; - const std::string& clientuuid() const; + // string mapUUID = 3; + void clear_mapuuid() ; + const std::string& mapuuid() const; template - void set_clientuuid(Arg_&& arg, Args_... args); - std::string* mutable_clientuuid(); - PROTOBUF_NODISCARD std::string* release_clientuuid(); - void set_allocated_clientuuid(std::string* value); + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); private: - const std::string& _internal_clientuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( const std::string& value); - std::string* _internal_mutable_clientuuid(); + std::string* _internal_mutable_mapuuid(); public: - // bytes cameraParams = 4; - void clear_cameraparams() ; - const std::string& cameraparams() const; + // bytes clientInfoList = 4; + void clear_clientinfolist() ; + const std::string& clientinfolist() const; template - void set_cameraparams(Arg_&& arg, Args_... args); - std::string* mutable_cameraparams(); - PROTOBUF_NODISCARD std::string* release_cameraparams(); - void set_allocated_cameraparams(std::string* value); + void set_clientinfolist(Arg_&& arg, Args_... args); + std::string* mutable_clientinfolist(); + PROTOBUF_NODISCARD std::string* release_clientinfolist(); + void set_allocated_clientinfolist(std::string* value); private: - const std::string& _internal_cameraparams() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparams( + const std::string& _internal_clientinfolist() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientinfolist( const std::string& value); - std::string* _internal_mutable_cameraparams(); + std::string* _internal_mutable_clientinfolist(); public: // int32 grpcServerCompressionFormat = 1; @@ -10454,17 +10448,17 @@ class getCameraParametersRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getCameraParametersRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getClientInfoForMapRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 4, 0, - 70, 2> + 67, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getCameraParametersRequest_default_instance_; + &_getClientInfoForMapRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -10479,10 +10473,10 @@ class getCameraParametersRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getCameraParametersRequest& from_msg); + const getClientInfoForMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr clientuuid_; - ::google::protobuf::internal::ArenaStringPtr cameraparams_; + ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr clientinfolist_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -10492,23 +10486,23 @@ class getCameraParametersRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getAllMapsUUIDResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getAllMapsUUIDResponse) */ { +class getCameraParametersResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getCameraParametersResponse) */ { public: - inline getAllMapsUUIDResponse() : getAllMapsUUIDResponse(nullptr) {} - ~getAllMapsUUIDResponse() override; + inline getCameraParametersResponse() : getCameraParametersResponse(nullptr) {} + ~getCameraParametersResponse() override; template - explicit PROTOBUF_CONSTEXPR getAllMapsUUIDResponse( + explicit PROTOBUF_CONSTEXPR getCameraParametersResponse( ::google::protobuf::internal::ConstantInitialized); - inline getAllMapsUUIDResponse(const getAllMapsUUIDResponse& from) : getAllMapsUUIDResponse(nullptr, from) {} - inline getAllMapsUUIDResponse(getAllMapsUUIDResponse&& from) noexcept - : getAllMapsUUIDResponse(nullptr, std::move(from)) {} - inline getAllMapsUUIDResponse& operator=(const getAllMapsUUIDResponse& from) { + inline getCameraParametersResponse(const getCameraParametersResponse& from) : getCameraParametersResponse(nullptr, from) {} + inline getCameraParametersResponse(getCameraParametersResponse&& from) noexcept + : getCameraParametersResponse(nullptr, std::move(from)) {} + inline getCameraParametersResponse& operator=(const getCameraParametersResponse& from) { CopyFrom(from); return *this; } - inline getAllMapsUUIDResponse& operator=(getAllMapsUUIDResponse&& from) noexcept { + inline getCameraParametersResponse& operator=(getCameraParametersResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -10540,16 +10534,16 @@ class getAllMapsUUIDResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getAllMapsUUIDResponse& default_instance() { + static const getCameraParametersResponse& default_instance() { return *internal_default_instance(); } - static inline const getAllMapsUUIDResponse* internal_default_instance() { - return reinterpret_cast( - &_getAllMapsUUIDResponse_default_instance_); + static inline const getCameraParametersResponse* internal_default_instance() { + return reinterpret_cast( + &_getCameraParametersResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 37; - friend void swap(getAllMapsUUIDResponse& a, getAllMapsUUIDResponse& b) { a.Swap(&b); } - inline void Swap(getAllMapsUUIDResponse* other) { + static constexpr int kIndexInFileMessages = 25; + friend void swap(getCameraParametersResponse& a, getCameraParametersResponse& b) { a.Swap(&b); } + inline void Swap(getCameraParametersResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -10561,7 +10555,7 @@ class getAllMapsUUIDResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getAllMapsUUIDResponse* other) { + void UnsafeArenaSwap(getCameraParametersResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -10569,13 +10563,13 @@ class getAllMapsUUIDResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getAllMapsUUIDResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getCameraParametersResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getAllMapsUUIDResponse& from); + void CopyFrom(const getCameraParametersResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getAllMapsUUIDResponse& from) { getAllMapsUUIDResponse::MergeImpl(*this, from); } + void MergeFrom(const getCameraParametersResponse& from) { getCameraParametersResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -10596,16 +10590,16 @@ class getAllMapsUUIDResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getAllMapsUUIDResponse* other); + void InternalSwap(getCameraParametersResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getAllMapsUUIDResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getCameraParametersResponse"; } protected: - explicit getAllMapsUUIDResponse(::google::protobuf::Arena* arena); - getAllMapsUUIDResponse(::google::protobuf::Arena* arena, const getAllMapsUUIDResponse& from); - getAllMapsUUIDResponse(::google::protobuf::Arena* arena, getAllMapsUUIDResponse&& from) noexcept - : getAllMapsUUIDResponse(arena) { + explicit getCameraParametersResponse(::google::protobuf::Arena* arena); + getCameraParametersResponse(::google::protobuf::Arena* arena, const getCameraParametersResponse& from); + getCameraParametersResponse(::google::protobuf::Arena* arena, getCameraParametersResponse&& from) noexcept + : getCameraParametersResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -10616,23 +10610,23 @@ class getAllMapsUUIDResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapUUIDListFieldNumber = 1, + kCameraParamsFieldNumber = 1, kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes mapUUIDList = 1; - void clear_mapuuidlist() ; - const std::string& mapuuidlist() const; + // bytes cameraParams = 1; + void clear_cameraparams() ; + const std::string& cameraparams() const; template - void set_mapuuidlist(Arg_&& arg, Args_... args); - std::string* mutable_mapuuidlist(); - PROTOBUF_NODISCARD std::string* release_mapuuidlist(); - void set_allocated_mapuuidlist(std::string* value); + void set_cameraparams(Arg_&& arg, Args_... args); + std::string* mutable_cameraparams(); + PROTOBUF_NODISCARD std::string* release_cameraparams(); + void set_allocated_cameraparams(std::string* value); private: - const std::string& _internal_mapuuidlist() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuidlist( + const std::string& _internal_cameraparams() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparams( const std::string& value); - std::string* _internal_mutable_mapuuidlist(); + std::string* _internal_mutable_cameraparams(); public: // sint32 xpcfGrpcReturnValue = 2; @@ -10645,7 +10639,7 @@ class getAllMapsUUIDResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getAllMapsUUIDResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getCameraParametersResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -10655,7 +10649,7 @@ class getAllMapsUUIDResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_getAllMapsUUIDResponse_default_instance_; + &_getCameraParametersResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -10670,8 +10664,8 @@ class getAllMapsUUIDResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getAllMapsUUIDResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr mapuuidlist_; + const getCameraParametersResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr cameraparams_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -10681,23 +10675,23 @@ class getAllMapsUUIDResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getAllMapsUUIDRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getAllMapsUUIDRequest) */ { +class getCameraParametersRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getCameraParametersRequest) */ { public: - inline getAllMapsUUIDRequest() : getAllMapsUUIDRequest(nullptr) {} - ~getAllMapsUUIDRequest() override; + inline getCameraParametersRequest() : getCameraParametersRequest(nullptr) {} + ~getCameraParametersRequest() override; template - explicit PROTOBUF_CONSTEXPR getAllMapsUUIDRequest( + explicit PROTOBUF_CONSTEXPR getCameraParametersRequest( ::google::protobuf::internal::ConstantInitialized); - inline getAllMapsUUIDRequest(const getAllMapsUUIDRequest& from) : getAllMapsUUIDRequest(nullptr, from) {} - inline getAllMapsUUIDRequest(getAllMapsUUIDRequest&& from) noexcept - : getAllMapsUUIDRequest(nullptr, std::move(from)) {} - inline getAllMapsUUIDRequest& operator=(const getAllMapsUUIDRequest& from) { + inline getCameraParametersRequest(const getCameraParametersRequest& from) : getCameraParametersRequest(nullptr, from) {} + inline getCameraParametersRequest(getCameraParametersRequest&& from) noexcept + : getCameraParametersRequest(nullptr, std::move(from)) {} + inline getCameraParametersRequest& operator=(const getCameraParametersRequest& from) { CopyFrom(from); return *this; } - inline getAllMapsUUIDRequest& operator=(getAllMapsUUIDRequest&& from) noexcept { + inline getCameraParametersRequest& operator=(getCameraParametersRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -10729,16 +10723,16 @@ class getAllMapsUUIDRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getAllMapsUUIDRequest& default_instance() { + static const getCameraParametersRequest& default_instance() { return *internal_default_instance(); } - static inline const getAllMapsUUIDRequest* internal_default_instance() { - return reinterpret_cast( - &_getAllMapsUUIDRequest_default_instance_); + static inline const getCameraParametersRequest* internal_default_instance() { + return reinterpret_cast( + &_getCameraParametersRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 36; - friend void swap(getAllMapsUUIDRequest& a, getAllMapsUUIDRequest& b) { a.Swap(&b); } - inline void Swap(getAllMapsUUIDRequest* other) { + static constexpr int kIndexInFileMessages = 24; + friend void swap(getCameraParametersRequest& a, getCameraParametersRequest& b) { a.Swap(&b); } + inline void Swap(getCameraParametersRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -10750,7 +10744,7 @@ class getAllMapsUUIDRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getAllMapsUUIDRequest* other) { + void UnsafeArenaSwap(getCameraParametersRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -10758,13 +10752,13 @@ class getAllMapsUUIDRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getAllMapsUUIDRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getCameraParametersRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getAllMapsUUIDRequest& from); + void CopyFrom(const getCameraParametersRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getAllMapsUUIDRequest& from) { getAllMapsUUIDRequest::MergeImpl(*this, from); } + void MergeFrom(const getCameraParametersRequest& from) { getCameraParametersRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -10785,16 +10779,16 @@ class getAllMapsUUIDRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getAllMapsUUIDRequest* other); + void InternalSwap(getCameraParametersRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getAllMapsUUIDRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getCameraParametersRequest"; } protected: - explicit getAllMapsUUIDRequest(::google::protobuf::Arena* arena); - getAllMapsUUIDRequest(::google::protobuf::Arena* arena, const getAllMapsUUIDRequest& from); - getAllMapsUUIDRequest(::google::protobuf::Arena* arena, getAllMapsUUIDRequest&& from) noexcept - : getAllMapsUUIDRequest(arena) { + explicit getCameraParametersRequest(::google::protobuf::Arena* arena); + getCameraParametersRequest(::google::protobuf::Arena* arena, const getCameraParametersRequest& from); + getCameraParametersRequest(::google::protobuf::Arena* arena, getCameraParametersRequest&& from) noexcept + : getCameraParametersRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -10806,7 +10800,8 @@ class getAllMapsUUIDRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kMapUUIDListFieldNumber = 3, + kClientUUIDFieldNumber = 3, + kCameraParamsFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, }; // string accessToken = 2; @@ -10825,20 +10820,36 @@ class getAllMapsUUIDRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // bytes mapUUIDList = 3; - void clear_mapuuidlist() ; - const std::string& mapuuidlist() const; + // string clientUUID = 3; + void clear_clientuuid() ; + const std::string& clientuuid() const; template - void set_mapuuidlist(Arg_&& arg, Args_... args); - std::string* mutable_mapuuidlist(); - PROTOBUF_NODISCARD std::string* release_mapuuidlist(); - void set_allocated_mapuuidlist(std::string* value); + void set_clientuuid(Arg_&& arg, Args_... args); + std::string* mutable_clientuuid(); + PROTOBUF_NODISCARD std::string* release_clientuuid(); + void set_allocated_clientuuid(std::string* value); private: - const std::string& _internal_mapuuidlist() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuidlist( + const std::string& _internal_clientuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( const std::string& value); - std::string* _internal_mutable_mapuuidlist(); + std::string* _internal_mutable_clientuuid(); + + public: + // bytes cameraParams = 4; + void clear_cameraparams() ; + const std::string& cameraparams() const; + template + void set_cameraparams(Arg_&& arg, Args_... args); + std::string* mutable_cameraparams(); + PROTOBUF_NODISCARD std::string* release_cameraparams(); + void set_allocated_cameraparams(std::string* value); + + private: + const std::string& _internal_cameraparams() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparams( + const std::string& value); + std::string* _internal_mutable_cameraparams(); public: // int32 grpcServerCompressionFormat = 1; @@ -10851,17 +10862,17 @@ class getAllMapsUUIDRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getAllMapsUUIDRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getCameraParametersRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 3, 0, - 55, 2> + 2, 4, 0, + 70, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getAllMapsUUIDRequest_default_instance_; + &_getCameraParametersRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -10876,9 +10887,10 @@ class getAllMapsUUIDRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getAllMapsUUIDRequest& from_msg); + const getCameraParametersRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr mapuuidlist_; + ::google::protobuf::internal::ArenaStringPtr clientuuid_; + ::google::protobuf::internal::ArenaStringPtr cameraparams_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -10888,23 +10900,23 @@ class getAllMapsUUIDRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getAllClientsUUIDResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getAllClientsUUIDResponse) */ { +class getAllMapsUUIDResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getAllMapsUUIDResponse) */ { public: - inline getAllClientsUUIDResponse() : getAllClientsUUIDResponse(nullptr) {} - ~getAllClientsUUIDResponse() override; + inline getAllMapsUUIDResponse() : getAllMapsUUIDResponse(nullptr) {} + ~getAllMapsUUIDResponse() override; template - explicit PROTOBUF_CONSTEXPR getAllClientsUUIDResponse( + explicit PROTOBUF_CONSTEXPR getAllMapsUUIDResponse( ::google::protobuf::internal::ConstantInitialized); - inline getAllClientsUUIDResponse(const getAllClientsUUIDResponse& from) : getAllClientsUUIDResponse(nullptr, from) {} - inline getAllClientsUUIDResponse(getAllClientsUUIDResponse&& from) noexcept - : getAllClientsUUIDResponse(nullptr, std::move(from)) {} - inline getAllClientsUUIDResponse& operator=(const getAllClientsUUIDResponse& from) { + inline getAllMapsUUIDResponse(const getAllMapsUUIDResponse& from) : getAllMapsUUIDResponse(nullptr, from) {} + inline getAllMapsUUIDResponse(getAllMapsUUIDResponse&& from) noexcept + : getAllMapsUUIDResponse(nullptr, std::move(from)) {} + inline getAllMapsUUIDResponse& operator=(const getAllMapsUUIDResponse& from) { CopyFrom(from); return *this; } - inline getAllClientsUUIDResponse& operator=(getAllClientsUUIDResponse&& from) noexcept { + inline getAllMapsUUIDResponse& operator=(getAllMapsUUIDResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -10936,16 +10948,16 @@ class getAllClientsUUIDResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getAllClientsUUIDResponse& default_instance() { + static const getAllMapsUUIDResponse& default_instance() { return *internal_default_instance(); } - static inline const getAllClientsUUIDResponse* internal_default_instance() { - return reinterpret_cast( - &_getAllClientsUUIDResponse_default_instance_); + static inline const getAllMapsUUIDResponse* internal_default_instance() { + return reinterpret_cast( + &_getAllMapsUUIDResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 5; - friend void swap(getAllClientsUUIDResponse& a, getAllClientsUUIDResponse& b) { a.Swap(&b); } - inline void Swap(getAllClientsUUIDResponse* other) { + static constexpr int kIndexInFileMessages = 37; + friend void swap(getAllMapsUUIDResponse& a, getAllMapsUUIDResponse& b) { a.Swap(&b); } + inline void Swap(getAllMapsUUIDResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -10957,7 +10969,7 @@ class getAllClientsUUIDResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getAllClientsUUIDResponse* other) { + void UnsafeArenaSwap(getAllMapsUUIDResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -10965,13 +10977,13 @@ class getAllClientsUUIDResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getAllClientsUUIDResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getAllMapsUUIDResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getAllClientsUUIDResponse& from); + void CopyFrom(const getAllMapsUUIDResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getAllClientsUUIDResponse& from) { getAllClientsUUIDResponse::MergeImpl(*this, from); } + void MergeFrom(const getAllMapsUUIDResponse& from) { getAllMapsUUIDResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -10992,16 +11004,16 @@ class getAllClientsUUIDResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getAllClientsUUIDResponse* other); + void InternalSwap(getAllMapsUUIDResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getAllClientsUUIDResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getAllMapsUUIDResponse"; } protected: - explicit getAllClientsUUIDResponse(::google::protobuf::Arena* arena); - getAllClientsUUIDResponse(::google::protobuf::Arena* arena, const getAllClientsUUIDResponse& from); - getAllClientsUUIDResponse(::google::protobuf::Arena* arena, getAllClientsUUIDResponse&& from) noexcept - : getAllClientsUUIDResponse(arena) { + explicit getAllMapsUUIDResponse(::google::protobuf::Arena* arena); + getAllMapsUUIDResponse(::google::protobuf::Arena* arena, const getAllMapsUUIDResponse& from); + getAllMapsUUIDResponse(::google::protobuf::Arena* arena, getAllMapsUUIDResponse&& from) noexcept + : getAllMapsUUIDResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -11012,23 +11024,23 @@ class getAllClientsUUIDResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kClientUUIDListFieldNumber = 1, + kMapUUIDListFieldNumber = 1, kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes clientUUIDList = 1; - void clear_clientuuidlist() ; - const std::string& clientuuidlist() const; + // bytes mapUUIDList = 1; + void clear_mapuuidlist() ; + const std::string& mapuuidlist() const; template - void set_clientuuidlist(Arg_&& arg, Args_... args); - std::string* mutable_clientuuidlist(); - PROTOBUF_NODISCARD std::string* release_clientuuidlist(); - void set_allocated_clientuuidlist(std::string* value); + void set_mapuuidlist(Arg_&& arg, Args_... args); + std::string* mutable_mapuuidlist(); + PROTOBUF_NODISCARD std::string* release_mapuuidlist(); + void set_allocated_mapuuidlist(std::string* value); private: - const std::string& _internal_clientuuidlist() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuidlist( + const std::string& _internal_mapuuidlist() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuidlist( const std::string& value); - std::string* _internal_mutable_clientuuidlist(); + std::string* _internal_mutable_mapuuidlist(); public: // sint32 xpcfGrpcReturnValue = 2; @@ -11041,7 +11053,7 @@ class getAllClientsUUIDResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getAllClientsUUIDResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getAllMapsUUIDResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -11051,7 +11063,7 @@ class getAllClientsUUIDResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_getAllClientsUUIDResponse_default_instance_; + &_getAllMapsUUIDResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -11066,8 +11078,8 @@ class getAllClientsUUIDResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getAllClientsUUIDResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr clientuuidlist_; + const getAllMapsUUIDResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr mapuuidlist_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -11077,23 +11089,23 @@ class getAllClientsUUIDResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getAllClientsUUIDRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getAllClientsUUIDRequest) */ { +class getAllMapsUUIDRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getAllMapsUUIDRequest) */ { public: - inline getAllClientsUUIDRequest() : getAllClientsUUIDRequest(nullptr) {} - ~getAllClientsUUIDRequest() override; + inline getAllMapsUUIDRequest() : getAllMapsUUIDRequest(nullptr) {} + ~getAllMapsUUIDRequest() override; template - explicit PROTOBUF_CONSTEXPR getAllClientsUUIDRequest( + explicit PROTOBUF_CONSTEXPR getAllMapsUUIDRequest( ::google::protobuf::internal::ConstantInitialized); - inline getAllClientsUUIDRequest(const getAllClientsUUIDRequest& from) : getAllClientsUUIDRequest(nullptr, from) {} - inline getAllClientsUUIDRequest(getAllClientsUUIDRequest&& from) noexcept - : getAllClientsUUIDRequest(nullptr, std::move(from)) {} - inline getAllClientsUUIDRequest& operator=(const getAllClientsUUIDRequest& from) { + inline getAllMapsUUIDRequest(const getAllMapsUUIDRequest& from) : getAllMapsUUIDRequest(nullptr, from) {} + inline getAllMapsUUIDRequest(getAllMapsUUIDRequest&& from) noexcept + : getAllMapsUUIDRequest(nullptr, std::move(from)) {} + inline getAllMapsUUIDRequest& operator=(const getAllMapsUUIDRequest& from) { CopyFrom(from); return *this; } - inline getAllClientsUUIDRequest& operator=(getAllClientsUUIDRequest&& from) noexcept { + inline getAllMapsUUIDRequest& operator=(getAllMapsUUIDRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -11125,16 +11137,16 @@ class getAllClientsUUIDRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getAllClientsUUIDRequest& default_instance() { + static const getAllMapsUUIDRequest& default_instance() { return *internal_default_instance(); } - static inline const getAllClientsUUIDRequest* internal_default_instance() { - return reinterpret_cast( - &_getAllClientsUUIDRequest_default_instance_); + static inline const getAllMapsUUIDRequest* internal_default_instance() { + return reinterpret_cast( + &_getAllMapsUUIDRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 4; - friend void swap(getAllClientsUUIDRequest& a, getAllClientsUUIDRequest& b) { a.Swap(&b); } - inline void Swap(getAllClientsUUIDRequest* other) { + static constexpr int kIndexInFileMessages = 36; + friend void swap(getAllMapsUUIDRequest& a, getAllMapsUUIDRequest& b) { a.Swap(&b); } + inline void Swap(getAllMapsUUIDRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -11146,7 +11158,7 @@ class getAllClientsUUIDRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getAllClientsUUIDRequest* other) { + void UnsafeArenaSwap(getAllMapsUUIDRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -11154,13 +11166,13 @@ class getAllClientsUUIDRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getAllClientsUUIDRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getAllMapsUUIDRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getAllClientsUUIDRequest& from); + void CopyFrom(const getAllMapsUUIDRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getAllClientsUUIDRequest& from) { getAllClientsUUIDRequest::MergeImpl(*this, from); } + void MergeFrom(const getAllMapsUUIDRequest& from) { getAllMapsUUIDRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -11181,16 +11193,16 @@ class getAllClientsUUIDRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getAllClientsUUIDRequest* other); + void InternalSwap(getAllMapsUUIDRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getAllClientsUUIDRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getAllMapsUUIDRequest"; } protected: - explicit getAllClientsUUIDRequest(::google::protobuf::Arena* arena); - getAllClientsUUIDRequest(::google::protobuf::Arena* arena, const getAllClientsUUIDRequest& from); - getAllClientsUUIDRequest(::google::protobuf::Arena* arena, getAllClientsUUIDRequest&& from) noexcept - : getAllClientsUUIDRequest(arena) { + explicit getAllMapsUUIDRequest(::google::protobuf::Arena* arena); + getAllMapsUUIDRequest(::google::protobuf::Arena* arena, const getAllMapsUUIDRequest& from); + getAllMapsUUIDRequest(::google::protobuf::Arena* arena, getAllMapsUUIDRequest&& from) noexcept + : getAllMapsUUIDRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -11202,7 +11214,7 @@ class getAllClientsUUIDRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kClientUUIDListFieldNumber = 3, + kMapUUIDListFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, }; // string accessToken = 2; @@ -11221,20 +11233,20 @@ class getAllClientsUUIDRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // bytes clientUUIDList = 3; - void clear_clientuuidlist() ; - const std::string& clientuuidlist() const; + // bytes mapUUIDList = 3; + void clear_mapuuidlist() ; + const std::string& mapuuidlist() const; template - void set_clientuuidlist(Arg_&& arg, Args_... args); - std::string* mutable_clientuuidlist(); - PROTOBUF_NODISCARD std::string* release_clientuuidlist(); - void set_allocated_clientuuidlist(std::string* value); + void set_mapuuidlist(Arg_&& arg, Args_... args); + std::string* mutable_mapuuidlist(); + PROTOBUF_NODISCARD std::string* release_mapuuidlist(); + void set_allocated_mapuuidlist(std::string* value); private: - const std::string& _internal_clientuuidlist() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuidlist( + const std::string& _internal_mapuuidlist() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuidlist( const std::string& value); - std::string* _internal_mutable_clientuuidlist(); + std::string* _internal_mutable_mapuuidlist(); public: // int32 grpcServerCompressionFormat = 1; @@ -11247,17 +11259,17 @@ class getAllClientsUUIDRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getAllClientsUUIDRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getAllMapsUUIDRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, - 58, 2> + 55, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getAllClientsUUIDRequest_default_instance_; + &_getAllMapsUUIDRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -11272,9 +11284,9 @@ class getAllClientsUUIDRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getAllClientsUUIDRequest& from_msg); + const getAllMapsUUIDRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr clientuuidlist_; + ::google::protobuf::internal::ArenaStringPtr mapuuidlist_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -11284,23 +11296,23 @@ class getAllClientsUUIDRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class deleteMapResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.deleteMapResponse) */ { +class getAllClientsUUIDResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getAllClientsUUIDResponse) */ { public: - inline deleteMapResponse() : deleteMapResponse(nullptr) {} - ~deleteMapResponse() override; + inline getAllClientsUUIDResponse() : getAllClientsUUIDResponse(nullptr) {} + ~getAllClientsUUIDResponse() override; template - explicit PROTOBUF_CONSTEXPR deleteMapResponse( + explicit PROTOBUF_CONSTEXPR getAllClientsUUIDResponse( ::google::protobuf::internal::ConstantInitialized); - inline deleteMapResponse(const deleteMapResponse& from) : deleteMapResponse(nullptr, from) {} - inline deleteMapResponse(deleteMapResponse&& from) noexcept - : deleteMapResponse(nullptr, std::move(from)) {} - inline deleteMapResponse& operator=(const deleteMapResponse& from) { + inline getAllClientsUUIDResponse(const getAllClientsUUIDResponse& from) : getAllClientsUUIDResponse(nullptr, from) {} + inline getAllClientsUUIDResponse(getAllClientsUUIDResponse&& from) noexcept + : getAllClientsUUIDResponse(nullptr, std::move(from)) {} + inline getAllClientsUUIDResponse& operator=(const getAllClientsUUIDResponse& from) { CopyFrom(from); return *this; } - inline deleteMapResponse& operator=(deleteMapResponse&& from) noexcept { + inline getAllClientsUUIDResponse& operator=(getAllClientsUUIDResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -11332,16 +11344,16 @@ class deleteMapResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const deleteMapResponse& default_instance() { + static const getAllClientsUUIDResponse& default_instance() { return *internal_default_instance(); } - static inline const deleteMapResponse* internal_default_instance() { - return reinterpret_cast( - &_deleteMapResponse_default_instance_); + static inline const getAllClientsUUIDResponse* internal_default_instance() { + return reinterpret_cast( + &_getAllClientsUUIDResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 35; - friend void swap(deleteMapResponse& a, deleteMapResponse& b) { a.Swap(&b); } - inline void Swap(deleteMapResponse* other) { + static constexpr int kIndexInFileMessages = 5; + friend void swap(getAllClientsUUIDResponse& a, getAllClientsUUIDResponse& b) { a.Swap(&b); } + inline void Swap(getAllClientsUUIDResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -11353,7 +11365,7 @@ class deleteMapResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(deleteMapResponse* other) { + void UnsafeArenaSwap(getAllClientsUUIDResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -11361,13 +11373,13 @@ class deleteMapResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - deleteMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getAllClientsUUIDResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const deleteMapResponse& from); + void CopyFrom(const getAllClientsUUIDResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const deleteMapResponse& from) { deleteMapResponse::MergeImpl(*this, from); } + void MergeFrom(const getAllClientsUUIDResponse& from) { getAllClientsUUIDResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -11388,16 +11400,16 @@ class deleteMapResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(deleteMapResponse* other); + void InternalSwap(getAllClientsUUIDResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.deleteMapResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getAllClientsUUIDResponse"; } protected: - explicit deleteMapResponse(::google::protobuf::Arena* arena); - deleteMapResponse(::google::protobuf::Arena* arena, const deleteMapResponse& from); - deleteMapResponse(::google::protobuf::Arena* arena, deleteMapResponse&& from) noexcept - : deleteMapResponse(arena) { + explicit getAllClientsUUIDResponse(::google::protobuf::Arena* arena); + getAllClientsUUIDResponse(::google::protobuf::Arena* arena, const getAllClientsUUIDResponse& from); + getAllClientsUUIDResponse(::google::protobuf::Arena* arena, getAllClientsUUIDResponse&& from) noexcept + : getAllClientsUUIDResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -11408,9 +11420,26 @@ class deleteMapResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kXpcfGrpcReturnValueFieldNumber = 1, + kClientUUIDListFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, }; - // sint32 xpcfGrpcReturnValue = 1; + // bytes clientUUIDList = 1; + void clear_clientuuidlist() ; + const std::string& clientuuidlist() const; + template + void set_clientuuidlist(Arg_&& arg, Args_... args); + std::string* mutable_clientuuidlist(); + PROTOBUF_NODISCARD std::string* release_clientuuidlist(); + void set_allocated_clientuuidlist(std::string* value); + + private: + const std::string& _internal_clientuuidlist() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuidlist( + const std::string& value); + std::string* _internal_mutable_clientuuidlist(); + + public: + // sint32 xpcfGrpcReturnValue = 2; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -11420,17 +11449,17 @@ class deleteMapResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.deleteMapResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getAllClientsUUIDResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 0, 1, 0, + 1, 2, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_deleteMapResponse_default_instance_; + &_getAllClientsUUIDResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -11445,7 +11474,8 @@ class deleteMapResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const deleteMapResponse& from_msg); + const getAllClientsUUIDResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr clientuuidlist_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -11455,23 +11485,23 @@ class deleteMapResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class deleteMapRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.deleteMapRequest) */ { +class getAllClientsUUIDRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getAllClientsUUIDRequest) */ { public: - inline deleteMapRequest() : deleteMapRequest(nullptr) {} - ~deleteMapRequest() override; + inline getAllClientsUUIDRequest() : getAllClientsUUIDRequest(nullptr) {} + ~getAllClientsUUIDRequest() override; template - explicit PROTOBUF_CONSTEXPR deleteMapRequest( + explicit PROTOBUF_CONSTEXPR getAllClientsUUIDRequest( ::google::protobuf::internal::ConstantInitialized); - inline deleteMapRequest(const deleteMapRequest& from) : deleteMapRequest(nullptr, from) {} - inline deleteMapRequest(deleteMapRequest&& from) noexcept - : deleteMapRequest(nullptr, std::move(from)) {} - inline deleteMapRequest& operator=(const deleteMapRequest& from) { + inline getAllClientsUUIDRequest(const getAllClientsUUIDRequest& from) : getAllClientsUUIDRequest(nullptr, from) {} + inline getAllClientsUUIDRequest(getAllClientsUUIDRequest&& from) noexcept + : getAllClientsUUIDRequest(nullptr, std::move(from)) {} + inline getAllClientsUUIDRequest& operator=(const getAllClientsUUIDRequest& from) { CopyFrom(from); return *this; } - inline deleteMapRequest& operator=(deleteMapRequest&& from) noexcept { + inline getAllClientsUUIDRequest& operator=(getAllClientsUUIDRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -11503,16 +11533,16 @@ class deleteMapRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const deleteMapRequest& default_instance() { + static const getAllClientsUUIDRequest& default_instance() { return *internal_default_instance(); } - static inline const deleteMapRequest* internal_default_instance() { - return reinterpret_cast( - &_deleteMapRequest_default_instance_); + static inline const getAllClientsUUIDRequest* internal_default_instance() { + return reinterpret_cast( + &_getAllClientsUUIDRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 34; - friend void swap(deleteMapRequest& a, deleteMapRequest& b) { a.Swap(&b); } - inline void Swap(deleteMapRequest* other) { + static constexpr int kIndexInFileMessages = 4; + friend void swap(getAllClientsUUIDRequest& a, getAllClientsUUIDRequest& b) { a.Swap(&b); } + inline void Swap(getAllClientsUUIDRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -11524,7 +11554,7 @@ class deleteMapRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(deleteMapRequest* other) { + void UnsafeArenaSwap(getAllClientsUUIDRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -11532,13 +11562,13 @@ class deleteMapRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - deleteMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getAllClientsUUIDRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const deleteMapRequest& from); + void CopyFrom(const getAllClientsUUIDRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const deleteMapRequest& from) { deleteMapRequest::MergeImpl(*this, from); } + void MergeFrom(const getAllClientsUUIDRequest& from) { getAllClientsUUIDRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -11559,16 +11589,16 @@ class deleteMapRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(deleteMapRequest* other); + void InternalSwap(getAllClientsUUIDRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.deleteMapRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getAllClientsUUIDRequest"; } protected: - explicit deleteMapRequest(::google::protobuf::Arena* arena); - deleteMapRequest(::google::protobuf::Arena* arena, const deleteMapRequest& from); - deleteMapRequest(::google::protobuf::Arena* arena, deleteMapRequest&& from) noexcept - : deleteMapRequest(arena) { + explicit getAllClientsUUIDRequest(::google::protobuf::Arena* arena); + getAllClientsUUIDRequest(::google::protobuf::Arena* arena, const getAllClientsUUIDRequest& from); + getAllClientsUUIDRequest(::google::protobuf::Arena* arena, getAllClientsUUIDRequest&& from) noexcept + : getAllClientsUUIDRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -11580,7 +11610,7 @@ class deleteMapRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kMapUUIDFieldNumber = 3, + kClientUUIDListFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, }; // string accessToken = 2; @@ -11599,20 +11629,20 @@ class deleteMapRequest final : public ::google::protobuf::Message std::string* _internal_mutable_accesstoken(); public: - // string mapUUID = 3; - void clear_mapuuid() ; - const std::string& mapuuid() const; + // bytes clientUUIDList = 3; + void clear_clientuuidlist() ; + const std::string& clientuuidlist() const; template - void set_mapuuid(Arg_&& arg, Args_... args); - std::string* mutable_mapuuid(); - PROTOBUF_NODISCARD std::string* release_mapuuid(); - void set_allocated_mapuuid(std::string* value); + void set_clientuuidlist(Arg_&& arg, Args_... args); + std::string* mutable_clientuuidlist(); + PROTOBUF_NODISCARD std::string* release_clientuuidlist(); + void set_allocated_clientuuidlist(std::string* value); private: - const std::string& _internal_mapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( + const std::string& _internal_clientuuidlist() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuidlist( const std::string& value); - std::string* _internal_mutable_mapuuid(); + std::string* _internal_mutable_clientuuidlist(); public: // int32 grpcServerCompressionFormat = 1; @@ -11625,17 +11655,17 @@ class deleteMapRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.deleteMapRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getAllClientsUUIDRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, - 57, 2> + 58, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_deleteMapRequest_default_instance_; + &_getAllClientsUUIDRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -11650,9 +11680,9 @@ class deleteMapRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const deleteMapRequest& from_msg); + const getAllClientsUUIDRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; - ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr clientuuidlist_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -11662,23 +11692,23 @@ class deleteMapRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class createMapResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.createMapResponse) */ { +class deleteMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.deleteMapResponse) */ { public: - inline createMapResponse() : createMapResponse(nullptr) {} - ~createMapResponse() override; + inline deleteMapResponse() : deleteMapResponse(nullptr) {} + ~deleteMapResponse() override; template - explicit PROTOBUF_CONSTEXPR createMapResponse( + explicit PROTOBUF_CONSTEXPR deleteMapResponse( ::google::protobuf::internal::ConstantInitialized); - inline createMapResponse(const createMapResponse& from) : createMapResponse(nullptr, from) {} - inline createMapResponse(createMapResponse&& from) noexcept - : createMapResponse(nullptr, std::move(from)) {} - inline createMapResponse& operator=(const createMapResponse& from) { + inline deleteMapResponse(const deleteMapResponse& from) : deleteMapResponse(nullptr, from) {} + inline deleteMapResponse(deleteMapResponse&& from) noexcept + : deleteMapResponse(nullptr, std::move(from)) {} + inline deleteMapResponse& operator=(const deleteMapResponse& from) { CopyFrom(from); return *this; } - inline createMapResponse& operator=(createMapResponse&& from) noexcept { + inline deleteMapResponse& operator=(deleteMapResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -11710,16 +11740,16 @@ class createMapResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const createMapResponse& default_instance() { + static const deleteMapResponse& default_instance() { return *internal_default_instance(); } - static inline const createMapResponse* internal_default_instance() { - return reinterpret_cast( - &_createMapResponse_default_instance_); + static inline const deleteMapResponse* internal_default_instance() { + return reinterpret_cast( + &_deleteMapResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 33; - friend void swap(createMapResponse& a, createMapResponse& b) { a.Swap(&b); } - inline void Swap(createMapResponse* other) { + static constexpr int kIndexInFileMessages = 35; + friend void swap(deleteMapResponse& a, deleteMapResponse& b) { a.Swap(&b); } + inline void Swap(deleteMapResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -11731,7 +11761,7 @@ class createMapResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(createMapResponse* other) { + void UnsafeArenaSwap(deleteMapResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -11739,13 +11769,13 @@ class createMapResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - createMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + deleteMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const createMapResponse& from); + void CopyFrom(const deleteMapResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const createMapResponse& from) { createMapResponse::MergeImpl(*this, from); } + void MergeFrom(const deleteMapResponse& from) { deleteMapResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -11766,16 +11796,16 @@ class createMapResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(createMapResponse* other); + void InternalSwap(deleteMapResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.createMapResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.deleteMapResponse"; } protected: - explicit createMapResponse(::google::protobuf::Arena* arena); - createMapResponse(::google::protobuf::Arena* arena, const createMapResponse& from); - createMapResponse(::google::protobuf::Arena* arena, createMapResponse&& from) noexcept - : createMapResponse(arena) { + explicit deleteMapResponse(::google::protobuf::Arena* arena); + deleteMapResponse(::google::protobuf::Arena* arena, const deleteMapResponse& from); + deleteMapResponse(::google::protobuf::Arena* arena, deleteMapResponse&& from) noexcept + : deleteMapResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -11798,7 +11828,7 @@ class createMapResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.createMapResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.deleteMapResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -11808,7 +11838,7 @@ class createMapResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_createMapResponse_default_instance_; + &_deleteMapResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -11823,7 +11853,7 @@ class createMapResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const createMapResponse& from_msg); + const deleteMapResponse& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -11833,23 +11863,23 @@ class createMapResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class createMapRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.createMapRequest) */ { +class deleteMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.deleteMapRequest) */ { public: - inline createMapRequest() : createMapRequest(nullptr) {} - ~createMapRequest() override; + inline deleteMapRequest() : deleteMapRequest(nullptr) {} + ~deleteMapRequest() override; template - explicit PROTOBUF_CONSTEXPR createMapRequest( + explicit PROTOBUF_CONSTEXPR deleteMapRequest( ::google::protobuf::internal::ConstantInitialized); - inline createMapRequest(const createMapRequest& from) : createMapRequest(nullptr, from) {} - inline createMapRequest(createMapRequest&& from) noexcept - : createMapRequest(nullptr, std::move(from)) {} - inline createMapRequest& operator=(const createMapRequest& from) { + inline deleteMapRequest(const deleteMapRequest& from) : deleteMapRequest(nullptr, from) {} + inline deleteMapRequest(deleteMapRequest&& from) noexcept + : deleteMapRequest(nullptr, std::move(from)) {} + inline deleteMapRequest& operator=(const deleteMapRequest& from) { CopyFrom(from); return *this; } - inline createMapRequest& operator=(createMapRequest&& from) noexcept { + inline deleteMapRequest& operator=(deleteMapRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -11881,16 +11911,16 @@ class createMapRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const createMapRequest& default_instance() { + static const deleteMapRequest& default_instance() { return *internal_default_instance(); } - static inline const createMapRequest* internal_default_instance() { - return reinterpret_cast( - &_createMapRequest_default_instance_); + static inline const deleteMapRequest* internal_default_instance() { + return reinterpret_cast( + &_deleteMapRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 32; - friend void swap(createMapRequest& a, createMapRequest& b) { a.Swap(&b); } - inline void Swap(createMapRequest* other) { + static constexpr int kIndexInFileMessages = 34; + friend void swap(deleteMapRequest& a, deleteMapRequest& b) { a.Swap(&b); } + inline void Swap(deleteMapRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -11902,7 +11932,7 @@ class createMapRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(createMapRequest* other) { + void UnsafeArenaSwap(deleteMapRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -11910,13 +11940,13 @@ class createMapRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - createMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + deleteMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const createMapRequest& from); + void CopyFrom(const deleteMapRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const createMapRequest& from) { createMapRequest::MergeImpl(*this, from); } + void MergeFrom(const deleteMapRequest& from) { deleteMapRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -11937,16 +11967,16 @@ class createMapRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(createMapRequest* other); + void InternalSwap(deleteMapRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.createMapRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.deleteMapRequest"; } protected: - explicit createMapRequest(::google::protobuf::Arena* arena); - createMapRequest(::google::protobuf::Arena* arena, const createMapRequest& from); - createMapRequest(::google::protobuf::Arena* arena, createMapRequest&& from) noexcept - : createMapRequest(arena) { + explicit deleteMapRequest(::google::protobuf::Arena* arena); + deleteMapRequest(::google::protobuf::Arena* arena, const deleteMapRequest& from); + deleteMapRequest(::google::protobuf::Arena* arena, deleteMapRequest&& from) noexcept + : deleteMapRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -12003,7 +12033,7 @@ class createMapRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.createMapRequest) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.deleteMapRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -12013,7 +12043,7 @@ class createMapRequest final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_createMapRequest_default_instance_; + &_deleteMapRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -12028,7 +12058,7 @@ class createMapRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const createMapRequest& from_msg); + const deleteMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr mapuuid_; ::int32_t grpcservercompressionformat_; @@ -12038,387 +12068,1785 @@ class createMapRequest final : public ::google::protobuf::Message union { Impl_ _impl_; }; friend struct ::TableStruct_grpcIFrontEndService_2eproto; }; +// ------------------------------------------------------------------- -// =================================================================== +class createMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.createMapResponse) */ { + public: + inline createMapResponse() : createMapResponse(nullptr) {} + ~createMapResponse() override; + template + explicit PROTOBUF_CONSTEXPR createMapResponse( + ::google::protobuf::internal::ConstantInitialized); + inline createMapResponse(const createMapResponse& from) : createMapResponse(nullptr, from) {} + inline createMapResponse(createMapResponse&& from) noexcept + : createMapResponse(nullptr, std::move(from)) {} + inline createMapResponse& operator=(const createMapResponse& from) { + CopyFrom(from); + return *this; + } + inline createMapResponse& operator=(createMapResponse&& 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 createMapResponse& default_instance() { + return *internal_default_instance(); + } + static inline const createMapResponse* internal_default_instance() { + return reinterpret_cast( + &_createMapResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = 33; + friend void swap(createMapResponse& a, createMapResponse& b) { a.Swap(&b); } + inline void Swap(createMapResponse* 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(createMapResponse* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } -// =================================================================== + // implements Message ---------------------------------------------- + createMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); + } + using ::google::protobuf::Message::CopyFrom; + void CopyFrom(const createMapResponse& from); + using ::google::protobuf::Message::MergeFrom; + void MergeFrom(const createMapResponse& from) { createMapResponse::MergeImpl(*this, from); } -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- + private: + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); -// registerClientRequest + public: + bool IsInitialized() const { + return true; + } + ABSL_ATTRIBUTE_REINITIALIZES void Clear() final; + ::size_t ByteSizeLong() const final; + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const { return _impl_._cached_size_.Get(); } -// int32 grpcServerCompressionFormat = 1; -inline void registerClientRequest::clear_grpcservercompressionformat() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; -} -inline ::int32_t registerClientRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); -} -inline void registerClientRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.grpcServerCompressionFormat) -} -inline ::int32_t registerClientRequest::_internal_grpcservercompressionformat() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; -} -inline void registerClientRequest::_internal_set_grpcservercompressionformat(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; -} + private: + void SharedCtor(::google::protobuf::Arena* arena); + void SharedDtor(); + void InternalSwap(createMapResponse* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.createMapResponse"; } -// string accessToken = 2; -inline void registerClientRequest::clear_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); -} -inline const std::string& registerClientRequest::accesstoken() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.accessToken) - return _internal_accesstoken(); -} -template -inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::set_accesstoken(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.accessToken) -} -inline std::string* registerClientRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientRequest.accessToken) - return _s; -} -inline const std::string& registerClientRequest::_internal_accesstoken() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); -} -inline void registerClientRequest::_internal_set_accesstoken(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); -} + protected: + explicit createMapResponse(::google::protobuf::Arena* arena); + createMapResponse(::google::protobuf::Arena* arena, const createMapResponse& from); + createMapResponse(::google::protobuf::Arena* arena, createMapResponse&& from) noexcept + : createMapResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; + + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + enum : int { + kXpcfGrpcReturnValueFieldNumber = 1, + }; + // sint32 xpcfGrpcReturnValue = 1; + void clear_xpcfgrpcreturnvalue() ; + ::int32_t xpcfgrpcreturnvalue() const; + void set_xpcfgrpcreturnvalue(::int32_t value); + + private: + ::int32_t _internal_xpcfgrpcreturnvalue() const; + void _internal_set_xpcfgrpcreturnvalue(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.createMapResponse) + 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_ = + &_createMapResponse_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 createMapResponse& from_msg); + ::int32_t xpcfgrpcreturnvalue_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIFrontEndService_2eproto; +}; +// ------------------------------------------------------------------- + +class createMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.createMapRequest) */ { + public: + inline createMapRequest() : createMapRequest(nullptr) {} + ~createMapRequest() override; + template + explicit PROTOBUF_CONSTEXPR createMapRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline createMapRequest(const createMapRequest& from) : createMapRequest(nullptr, from) {} + inline createMapRequest(createMapRequest&& from) noexcept + : createMapRequest(nullptr, std::move(from)) {} + inline createMapRequest& operator=(const createMapRequest& from) { + CopyFrom(from); + return *this; + } + inline createMapRequest& operator=(createMapRequest&& 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 createMapRequest& default_instance() { + return *internal_default_instance(); + } + static inline const createMapRequest* internal_default_instance() { + return reinterpret_cast( + &_createMapRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = 32; + friend void swap(createMapRequest& a, createMapRequest& b) { a.Swap(&b); } + inline void Swap(createMapRequest* 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(createMapRequest* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + createMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); + } + using ::google::protobuf::Message::CopyFrom; + void CopyFrom(const createMapRequest& from); + using ::google::protobuf::Message::MergeFrom; + void MergeFrom(const createMapRequest& from) { createMapRequest::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() final; + ::size_t ByteSizeLong() const final; + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::google::protobuf::Arena* arena); + void SharedDtor(); + void InternalSwap(createMapRequest* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.createMapRequest"; } + + protected: + explicit createMapRequest(::google::protobuf::Arena* arena); + createMapRequest(::google::protobuf::Arena* arena, const createMapRequest& from); + createMapRequest(::google::protobuf::Arena* arena, createMapRequest&& from) noexcept + : createMapRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; + + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + enum : int { + kAccessTokenFieldNumber = 2, + kMapUUIDFieldNumber = 3, + kGrpcServerCompressionFormatFieldNumber = 1, + }; + // string accessToken = 2; + void clear_accesstoken() ; + const std::string& accesstoken() const; + template + void set_accesstoken(Arg_&& arg, Args_... args); + std::string* mutable_accesstoken(); + PROTOBUF_NODISCARD std::string* release_accesstoken(); + void set_allocated_accesstoken(std::string* value); + + private: + const std::string& _internal_accesstoken() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_accesstoken( + const std::string& value); + std::string* _internal_mutable_accesstoken(); + + public: + // string mapUUID = 3; + void clear_mapuuid() ; + const std::string& mapuuid() const; + template + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); + + private: + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( + const std::string& value); + std::string* _internal_mutable_mapuuid(); + + public: + // int32 grpcServerCompressionFormat = 1; + void clear_grpcservercompressionformat() ; + ::int32_t grpcservercompressionformat() const; + void set_grpcservercompressionformat(::int32_t value); + + private: + ::int32_t _internal_grpcservercompressionformat() const; + void _internal_set_grpcservercompressionformat(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.createMapRequest) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 2, 3, 0, + 57, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_createMapRequest_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 createMapRequest& from_msg); + ::google::protobuf::internal::ArenaStringPtr accesstoken_; + ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::int32_t grpcservercompressionformat_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIFrontEndService_2eproto; +}; +// ------------------------------------------------------------------- + +class backupMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.backupMapResponse) */ { + public: + inline backupMapResponse() : backupMapResponse(nullptr) {} + ~backupMapResponse() override; + template + explicit PROTOBUF_CONSTEXPR backupMapResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline backupMapResponse(const backupMapResponse& from) : backupMapResponse(nullptr, from) {} + inline backupMapResponse(backupMapResponse&& from) noexcept + : backupMapResponse(nullptr, std::move(from)) {} + inline backupMapResponse& operator=(const backupMapResponse& from) { + CopyFrom(from); + return *this; + } + inline backupMapResponse& operator=(backupMapResponse&& 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 backupMapResponse& default_instance() { + return *internal_default_instance(); + } + static inline const backupMapResponse* internal_default_instance() { + return reinterpret_cast( + &_backupMapResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = 51; + friend void swap(backupMapResponse& a, backupMapResponse& b) { a.Swap(&b); } + inline void Swap(backupMapResponse* 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(backupMapResponse* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + backupMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); + } + using ::google::protobuf::Message::CopyFrom; + void CopyFrom(const backupMapResponse& from); + using ::google::protobuf::Message::MergeFrom; + void MergeFrom(const backupMapResponse& from) { backupMapResponse::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() final; + ::size_t ByteSizeLong() const final; + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::google::protobuf::Arena* arena); + void SharedDtor(); + void InternalSwap(backupMapResponse* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.backupMapResponse"; } + + protected: + explicit backupMapResponse(::google::protobuf::Arena* arena); + backupMapResponse(::google::protobuf::Arena* arena, const backupMapResponse& from); + backupMapResponse(::google::protobuf::Arena* arena, backupMapResponse&& from) noexcept + : backupMapResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; + + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + enum : int { + kCompressedZipDataFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, + }; + // bytes compressedZipData = 1; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; + template + void set_compressedzipdata(Arg_&& arg, Args_... args); + std::string* mutable_compressedzipdata(); + PROTOBUF_NODISCARD std::string* release_compressedzipdata(); + void set_allocated_compressedzipdata(std::string* value); + + private: + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( + const std::string& value); + std::string* _internal_mutable_compressedzipdata(); + + public: + // sint32 xpcfGrpcReturnValue = 2; + void clear_xpcfgrpcreturnvalue() ; + ::int32_t xpcfgrpcreturnvalue() const; + void set_xpcfgrpcreturnvalue(::int32_t value); + + private: + ::int32_t _internal_xpcfgrpcreturnvalue() const; + void _internal_set_xpcfgrpcreturnvalue(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.backupMapResponse) + 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_ = + &_backupMapResponse_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 backupMapResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; + ::int32_t xpcfgrpcreturnvalue_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIFrontEndService_2eproto; +}; +// ------------------------------------------------------------------- + +class backupMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.backupMapRequest) */ { + public: + inline backupMapRequest() : backupMapRequest(nullptr) {} + ~backupMapRequest() override; + template + explicit PROTOBUF_CONSTEXPR backupMapRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline backupMapRequest(const backupMapRequest& from) : backupMapRequest(nullptr, from) {} + inline backupMapRequest(backupMapRequest&& from) noexcept + : backupMapRequest(nullptr, std::move(from)) {} + inline backupMapRequest& operator=(const backupMapRequest& from) { + CopyFrom(from); + return *this; + } + inline backupMapRequest& operator=(backupMapRequest&& 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 backupMapRequest& default_instance() { + return *internal_default_instance(); + } + static inline const backupMapRequest* internal_default_instance() { + return reinterpret_cast( + &_backupMapRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = 50; + friend void swap(backupMapRequest& a, backupMapRequest& b) { a.Swap(&b); } + inline void Swap(backupMapRequest* 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(backupMapRequest* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + backupMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); + } + using ::google::protobuf::Message::CopyFrom; + void CopyFrom(const backupMapRequest& from); + using ::google::protobuf::Message::MergeFrom; + void MergeFrom(const backupMapRequest& from) { backupMapRequest::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() final; + ::size_t ByteSizeLong() const final; + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::google::protobuf::Arena* arena); + void SharedDtor(); + void InternalSwap(backupMapRequest* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.backupMapRequest"; } + + protected: + explicit backupMapRequest(::google::protobuf::Arena* arena); + backupMapRequest(::google::protobuf::Arena* arena, const backupMapRequest& from); + backupMapRequest(::google::protobuf::Arena* arena, backupMapRequest&& from) noexcept + : backupMapRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; + + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + enum : int { + kAccessTokenFieldNumber = 2, + kMapUUIDFieldNumber = 3, + kCompressedZipDataFieldNumber = 4, + kGrpcServerCompressionFormatFieldNumber = 1, + }; + // string accessToken = 2; + void clear_accesstoken() ; + const std::string& accesstoken() const; + template + void set_accesstoken(Arg_&& arg, Args_... args); + std::string* mutable_accesstoken(); + PROTOBUF_NODISCARD std::string* release_accesstoken(); + void set_allocated_accesstoken(std::string* value); + + private: + const std::string& _internal_accesstoken() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_accesstoken( + const std::string& value); + std::string* _internal_mutable_accesstoken(); + + public: + // string mapUUID = 3; + void clear_mapuuid() ; + const std::string& mapuuid() const; + template + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); + + private: + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( + const std::string& value); + std::string* _internal_mutable_mapuuid(); + + public: + // bytes compressedZipData = 4; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; + template + void set_compressedzipdata(Arg_&& arg, Args_... args); + std::string* mutable_compressedzipdata(); + PROTOBUF_NODISCARD std::string* release_compressedzipdata(); + void set_allocated_compressedzipdata(std::string* value); + + private: + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( + const std::string& value); + std::string* _internal_mutable_compressedzipdata(); + + public: + // int32 grpcServerCompressionFormat = 1; + void clear_grpcservercompressionformat() ; + ::int32_t grpcservercompressionformat() const; + void set_grpcservercompressionformat(::int32_t value); + + private: + ::int32_t _internal_grpcservercompressionformat() const; + void _internal_set_grpcservercompressionformat(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.backupMapRequest) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 2, 4, 0, + 57, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_backupMapRequest_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 backupMapRequest& from_msg); + ::google::protobuf::internal::ArenaStringPtr accesstoken_; + ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; + ::int32_t grpcservercompressionformat_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIFrontEndService_2eproto; +}; + +// =================================================================== + + + + +// =================================================================== + + +#ifdef __GNUC__ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wstrict-aliasing" +#endif // __GNUC__ +// ------------------------------------------------------------------- + +// registerClientRequest + +// int32 grpcServerCompressionFormat = 1; +inline void registerClientRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t registerClientRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void registerClientRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.grpcServerCompressionFormat) +} +inline ::int32_t registerClientRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void registerClientRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string accessToken = 2; +inline void registerClientRequest::clear_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.ClearToEmpty(); +} +inline const std::string& registerClientRequest::accesstoken() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.accessToken) + return _internal_accesstoken(); +} +template +inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::set_accesstoken(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.accessToken) +} +inline std::string* registerClientRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientRequest.accessToken) + return _s; +} +inline const std::string& registerClientRequest::_internal_accesstoken() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.accesstoken_.Get(); +} +inline void registerClientRequest::_internal_set_accesstoken(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.Set(value, GetArena()); +} inline std::string* registerClientRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); +} +inline std::string* registerClientRequest::release_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.accessToken) + return _impl_.accesstoken_.Release(); +} +inline void registerClientRequest::set_allocated_accesstoken(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientRequest.accessToken) +} + +// bytes deviceInfo = 3; +inline void registerClientRequest::clear_deviceinfo() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.deviceinfo_.ClearToEmpty(); +} +inline const std::string& registerClientRequest::deviceinfo() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.deviceInfo) + return _internal_deviceinfo(); +} +template +inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::set_deviceinfo(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.deviceinfo_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.deviceInfo) +} +inline std::string* registerClientRequest::mutable_deviceinfo() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_deviceinfo(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientRequest.deviceInfo) + return _s; +} +inline const std::string& registerClientRequest::_internal_deviceinfo() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.deviceinfo_.Get(); +} +inline void registerClientRequest::_internal_set_deviceinfo(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.deviceinfo_.Set(value, GetArena()); +} +inline std::string* registerClientRequest::_internal_mutable_deviceinfo() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.deviceinfo_.Mutable( GetArena()); +} +inline std::string* registerClientRequest::release_deviceinfo() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.deviceInfo) + return _impl_.deviceinfo_.Release(); +} +inline void registerClientRequest::set_allocated_deviceinfo(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.deviceinfo_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.deviceinfo_.IsDefault()) { + _impl_.deviceinfo_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientRequest.deviceInfo) +} + +// string worldElementUUID = 4; +inline void registerClientRequest::clear_worldelementuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.worldelementuuid_.ClearToEmpty(); +} +inline const std::string& registerClientRequest::worldelementuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.worldElementUUID) + return _internal_worldelementuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::set_worldelementuuid(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.worldelementuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.worldElementUUID) +} +inline std::string* registerClientRequest::mutable_worldelementuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_worldelementuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientRequest.worldElementUUID) + return _s; +} +inline const std::string& registerClientRequest::_internal_worldelementuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.worldelementuuid_.Get(); +} +inline void registerClientRequest::_internal_set_worldelementuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.worldelementuuid_.Set(value, GetArena()); +} +inline std::string* registerClientRequest::_internal_mutable_worldelementuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.worldelementuuid_.Mutable( GetArena()); +} +inline std::string* registerClientRequest::release_worldelementuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.worldElementUUID) + return _impl_.worldelementuuid_.Release(); +} +inline void registerClientRequest::set_allocated_worldelementuuid(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.worldelementuuid_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.worldelementuuid_.IsDefault()) { + _impl_.worldelementuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientRequest.worldElementUUID) +} + +// string clientUUID = 5; +inline void registerClientRequest::clear_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.ClearToEmpty(); +} +inline const std::string& registerClientRequest::clientuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.clientUUID) + return _internal_clientuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::set_clientuuid(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.clientUUID) +} +inline std::string* registerClientRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientRequest.clientUUID) + return _s; +} +inline const std::string& registerClientRequest::_internal_clientuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.clientuuid_.Get(); +} +inline void registerClientRequest::_internal_set_clientuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.Set(value, GetArena()); +} +inline std::string* registerClientRequest::_internal_mutable_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.clientuuid_.Mutable( GetArena()); +} +inline std::string* registerClientRequest::release_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.clientUUID) + return _impl_.clientuuid_.Release(); +} +inline void registerClientRequest::set_allocated_clientuuid(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.clientuuid_.IsDefault()) { + _impl_.clientuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientRequest.clientUUID) +} + +// ------------------------------------------------------------------- + +// registerClientResponse + +// string clientUUID = 1; +inline void registerClientResponse::clear_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.ClearToEmpty(); +} +inline const std::string& registerClientResponse::clientuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientResponse.clientUUID) + return _internal_clientuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void registerClientResponse::set_clientuuid(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientResponse.clientUUID) +} +inline std::string* registerClientResponse::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientResponse.clientUUID) + return _s; +} +inline const std::string& registerClientResponse::_internal_clientuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.clientuuid_.Get(); +} +inline void registerClientResponse::_internal_set_clientuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.Set(value, GetArena()); +} +inline std::string* registerClientResponse::_internal_mutable_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.clientuuid_.Mutable( GetArena()); +} +inline std::string* registerClientResponse::release_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientResponse.clientUUID) + return _impl_.clientuuid_.Release(); +} +inline void registerClientResponse::set_allocated_clientuuid(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.clientuuid_.IsDefault()) { + _impl_.clientuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientResponse.clientUUID) +} + +// sint32 xpcfGrpcReturnValue = 2; +inline void registerClientResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t registerClientResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void registerClientResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientResponse.xpcfGrpcReturnValue) +} +inline ::int32_t registerClientResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void registerClientResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// unregisterClientRequest + +// int32 grpcServerCompressionFormat = 1; +inline void unregisterClientRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t unregisterClientRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void unregisterClientRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.unregisterClientRequest.grpcServerCompressionFormat) +} +inline ::int32_t unregisterClientRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void unregisterClientRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string accessToken = 2; +inline void unregisterClientRequest::clear_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.ClearToEmpty(); +} +inline const std::string& unregisterClientRequest::accesstoken() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientRequest.accessToken) + return _internal_accesstoken(); +} +template +inline PROTOBUF_ALWAYS_INLINE void unregisterClientRequest::set_accesstoken(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.unregisterClientRequest.accessToken) +} +inline std::string* unregisterClientRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.unregisterClientRequest.accessToken) + return _s; +} +inline const std::string& unregisterClientRequest::_internal_accesstoken() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.accesstoken_.Get(); +} +inline void unregisterClientRequest::_internal_set_accesstoken(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.Set(value, GetArena()); +} +inline std::string* unregisterClientRequest::_internal_mutable_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.accesstoken_.Mutable( GetArena()); +} +inline std::string* unregisterClientRequest::release_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.unregisterClientRequest.accessToken) + return _impl_.accesstoken_.Release(); +} +inline void unregisterClientRequest::set_allocated_accesstoken(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.unregisterClientRequest.accessToken) +} + +// string clientUUID = 3; +inline void unregisterClientRequest::clear_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.ClearToEmpty(); +} +inline const std::string& unregisterClientRequest::clientuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientRequest.clientUUID) + return _internal_clientuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void unregisterClientRequest::set_clientuuid(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.unregisterClientRequest.clientUUID) +} +inline std::string* unregisterClientRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.unregisterClientRequest.clientUUID) + return _s; +} +inline const std::string& unregisterClientRequest::_internal_clientuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.clientuuid_.Get(); +} +inline void unregisterClientRequest::_internal_set_clientuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.Set(value, GetArena()); +} +inline std::string* unregisterClientRequest::_internal_mutable_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.clientuuid_.Mutable( GetArena()); +} +inline std::string* unregisterClientRequest::release_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.unregisterClientRequest.clientUUID) + return _impl_.clientuuid_.Release(); +} +inline void unregisterClientRequest::set_allocated_clientuuid(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.clientuuid_.IsDefault()) { + _impl_.clientuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.unregisterClientRequest.clientUUID) +} + +// ------------------------------------------------------------------- + +// unregisterClientResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void unregisterClientResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t unregisterClientResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void unregisterClientResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.unregisterClientResponse.xpcfGrpcReturnValue) +} +inline ::int32_t unregisterClientResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void unregisterClientResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// getAllClientsUUIDRequest + +// int32 grpcServerCompressionFormat = 1; +inline void getAllClientsUUIDRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t getAllClientsUUIDRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void getAllClientsUUIDRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDRequest.grpcServerCompressionFormat) +} +inline ::int32_t getAllClientsUUIDRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void getAllClientsUUIDRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string accessToken = 2; +inline void getAllClientsUUIDRequest::clear_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.ClearToEmpty(); +} +inline const std::string& getAllClientsUUIDRequest::accesstoken() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) + return _internal_accesstoken(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getAllClientsUUIDRequest::set_accesstoken(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) +} +inline std::string* getAllClientsUUIDRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) + return _s; +} +inline const std::string& getAllClientsUUIDRequest::_internal_accesstoken() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.accesstoken_.Get(); +} +inline void getAllClientsUUIDRequest::_internal_set_accesstoken(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.Set(value, GetArena()); +} +inline std::string* getAllClientsUUIDRequest::_internal_mutable_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.accesstoken_.Mutable( GetArena()); +} +inline std::string* getAllClientsUUIDRequest::release_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) + return _impl_.accesstoken_.Release(); +} +inline void getAllClientsUUIDRequest::set_allocated_accesstoken(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) +} + +// bytes clientUUIDList = 3; +inline void getAllClientsUUIDRequest::clear_clientuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuidlist_.ClearToEmpty(); +} +inline const std::string& getAllClientsUUIDRequest::clientuuidlist() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) + return _internal_clientuuidlist(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getAllClientsUUIDRequest::set_clientuuidlist(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) +} +inline std::string* getAllClientsUUIDRequest::mutable_clientuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuidlist(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) + return _s; +} +inline const std::string& getAllClientsUUIDRequest::_internal_clientuuidlist() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.clientuuidlist_.Get(); +} +inline void getAllClientsUUIDRequest::_internal_set_clientuuidlist(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuidlist_.Set(value, GetArena()); } -inline std::string* registerClientRequest::release_accesstoken() { +inline std::string* getAllClientsUUIDRequest::_internal_mutable_clientuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.accessToken) - return _impl_.accesstoken_.Release(); + return _impl_.clientuuidlist_.Mutable( GetArena()); } -inline void registerClientRequest::set_allocated_accesstoken(std::string* value) { +inline std::string* getAllClientsUUIDRequest::release_clientuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) + return _impl_.clientuuidlist_.Release(); +} +inline void getAllClientsUUIDRequest::set_allocated_clientuuidlist(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuidlist_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.clientuuidlist_.IsDefault()) { + _impl_.clientuuidlist_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) } -// bytes deviceInfo = 3; -inline void registerClientRequest::clear_deviceinfo() { +// ------------------------------------------------------------------- + +// getAllClientsUUIDResponse + +// bytes clientUUIDList = 1; +inline void getAllClientsUUIDResponse::clear_clientuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.ClearToEmpty(); + _impl_.clientuuidlist_.ClearToEmpty(); } -inline const std::string& registerClientRequest::deviceinfo() const +inline const std::string& getAllClientsUUIDResponse::clientuuidlist() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.deviceInfo) - return _internal_deviceinfo(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) + return _internal_clientuuidlist(); } template -inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::set_deviceinfo(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getAllClientsUUIDResponse::set_clientuuidlist(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.deviceInfo) + _impl_.clientuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) } -inline std::string* registerClientRequest::mutable_deviceinfo() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_deviceinfo(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientRequest.deviceInfo) +inline std::string* getAllClientsUUIDResponse::mutable_clientuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuidlist(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) return _s; } -inline const std::string& registerClientRequest::_internal_deviceinfo() const { +inline const std::string& getAllClientsUUIDResponse::_internal_clientuuidlist() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.deviceinfo_.Get(); + return _impl_.clientuuidlist_.Get(); } -inline void registerClientRequest::_internal_set_deviceinfo(const std::string& value) { +inline void getAllClientsUUIDResponse::_internal_set_clientuuidlist(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.Set(value, GetArena()); + _impl_.clientuuidlist_.Set(value, GetArena()); } -inline std::string* registerClientRequest::_internal_mutable_deviceinfo() { +inline std::string* getAllClientsUUIDResponse::_internal_mutable_clientuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.deviceinfo_.Mutable( GetArena()); + return _impl_.clientuuidlist_.Mutable( GetArena()); } -inline std::string* registerClientRequest::release_deviceinfo() { +inline std::string* getAllClientsUUIDResponse::release_clientuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.deviceInfo) - return _impl_.deviceinfo_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) + return _impl_.clientuuidlist_.Release(); } -inline void registerClientRequest::set_allocated_deviceinfo(std::string* value) { +inline void getAllClientsUUIDResponse::set_allocated_clientuuidlist(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.SetAllocated(value, GetArena()); + _impl_.clientuuidlist_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.deviceinfo_.IsDefault()) { - _impl_.deviceinfo_.Set("", GetArena()); + if (_impl_.clientuuidlist_.IsDefault()) { + _impl_.clientuuidlist_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientRequest.deviceInfo) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) } -// string worldElementUUID = 4; -inline void registerClientRequest::clear_worldelementuuid() { +// sint32 xpcfGrpcReturnValue = 2; +inline void getAllClientsUUIDResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldelementuuid_.ClearToEmpty(); + _impl_.xpcfgrpcreturnvalue_ = 0; } -inline const std::string& registerClientRequest::worldelementuuid() const +inline ::int32_t getAllClientsUUIDResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void getAllClientsUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDResponse.xpcfGrpcReturnValue) +} +inline ::int32_t getAllClientsUUIDResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void getAllClientsUUIDResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// getDeviceInfoRequest + +// int32 grpcServerCompressionFormat = 1; +inline void getDeviceInfoRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t getDeviceInfoRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void getDeviceInfoRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoRequest.grpcServerCompressionFormat) +} +inline ::int32_t getDeviceInfoRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void getDeviceInfoRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string accessToken = 2; +inline void getDeviceInfoRequest::clear_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.ClearToEmpty(); +} +inline const std::string& getDeviceInfoRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.worldElementUUID) - return _internal_worldelementuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::set_worldelementuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldelementuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.worldElementUUID) + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoRequest.accessToken) } -inline std::string* registerClientRequest::mutable_worldelementuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_worldelementuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientRequest.worldElementUUID) +inline std::string* getDeviceInfoRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getDeviceInfoRequest.accessToken) return _s; } -inline const std::string& registerClientRequest::_internal_worldelementuuid() const { +inline const std::string& getDeviceInfoRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.worldelementuuid_.Get(); + return _impl_.accesstoken_.Get(); } -inline void registerClientRequest::_internal_set_worldelementuuid(const std::string& value) { +inline void getDeviceInfoRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldelementuuid_.Set(value, GetArena()); + _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* registerClientRequest::_internal_mutable_worldelementuuid() { +inline std::string* getDeviceInfoRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.worldelementuuid_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* registerClientRequest::release_worldelementuuid() { +inline std::string* getDeviceInfoRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.worldElementUUID) - return _impl_.worldelementuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void registerClientRequest::set_allocated_worldelementuuid(std::string* value) { +inline void getDeviceInfoRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldelementuuid_.SetAllocated(value, GetArena()); + _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.worldelementuuid_.IsDefault()) { - _impl_.worldelementuuid_.Set("", GetArena()); + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientRequest.worldElementUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getDeviceInfoRequest.accessToken) } -// string clientUUID = 5; -inline void registerClientRequest::clear_clientuuid() { +// string clientUUID = 3; +inline void getDeviceInfoRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& registerClientRequest::clientuuid() const +inline const std::string& getDeviceInfoRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoRequest::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) } -inline std::string* registerClientRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getDeviceInfoRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) return _s; } -inline const std::string& registerClientRequest::_internal_clientuuid() const { +inline const std::string& getDeviceInfoRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void registerClientRequest::_internal_set_clientuuid(const std::string& value) { +inline void getDeviceInfoRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* registerClientRequest::_internal_mutable_clientuuid() { +inline std::string* getDeviceInfoRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* registerClientRequest::release_clientuuid() { +inline std::string* getDeviceInfoRequest::release_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) + return _impl_.clientuuid_.Release(); +} +inline void getDeviceInfoRequest::set_allocated_clientuuid(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.clientuuid_.IsDefault()) { + _impl_.clientuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) +} + +// bytes deviceInfo = 4; +inline void getDeviceInfoRequest::clear_deviceinfo() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.deviceinfo_.ClearToEmpty(); +} +inline const std::string& getDeviceInfoRequest::deviceinfo() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.deviceInfo) + return _internal_deviceinfo(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoRequest::set_deviceinfo(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.deviceinfo_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoRequest.deviceInfo) +} +inline std::string* getDeviceInfoRequest::mutable_deviceinfo() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_deviceinfo(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getDeviceInfoRequest.deviceInfo) + return _s; +} +inline const std::string& getDeviceInfoRequest::_internal_deviceinfo() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.deviceinfo_.Get(); +} +inline void getDeviceInfoRequest::_internal_set_deviceinfo(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.deviceinfo_.Set(value, GetArena()); +} +inline std::string* getDeviceInfoRequest::_internal_mutable_deviceinfo() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.deviceinfo_.Mutable( GetArena()); +} +inline std::string* getDeviceInfoRequest::release_deviceinfo() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoRequest.deviceInfo) + return _impl_.deviceinfo_.Release(); } -inline void registerClientRequest::set_allocated_clientuuid(std::string* value) { +inline void getDeviceInfoRequest::set_allocated_deviceinfo(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.SetAllocated(value, GetArena()); + _impl_.deviceinfo_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuid_.IsDefault()) { - _impl_.clientuuid_.Set("", GetArena()); + if (_impl_.deviceinfo_.IsDefault()) { + _impl_.deviceinfo_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getDeviceInfoRequest.deviceInfo) } // ------------------------------------------------------------------- -// registerClientResponse +// getDeviceInfoResponse -// string clientUUID = 1; -inline void registerClientResponse::clear_clientuuid() { +// bytes deviceInfo = 1; +inline void getDeviceInfoResponse::clear_deviceinfo() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.deviceinfo_.ClearToEmpty(); } -inline const std::string& registerClientResponse::clientuuid() const +inline const std::string& getDeviceInfoResponse::deviceinfo() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientResponse.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) + return _internal_deviceinfo(); } template -inline PROTOBUF_ALWAYS_INLINE void registerClientResponse::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoResponse::set_deviceinfo(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientResponse.clientUUID) + _impl_.deviceinfo_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) } -inline std::string* registerClientResponse::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientResponse.clientUUID) +inline std::string* getDeviceInfoResponse::mutable_deviceinfo() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_deviceinfo(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) return _s; } -inline const std::string& registerClientResponse::_internal_clientuuid() const { +inline const std::string& getDeviceInfoResponse::_internal_deviceinfo() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuid_.Get(); + return _impl_.deviceinfo_.Get(); } -inline void registerClientResponse::_internal_set_clientuuid(const std::string& value) { +inline void getDeviceInfoResponse::_internal_set_deviceinfo(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(value, GetArena()); + _impl_.deviceinfo_.Set(value, GetArena()); } -inline std::string* registerClientResponse::_internal_mutable_clientuuid() { +inline std::string* getDeviceInfoResponse::_internal_mutable_deviceinfo() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuid_.Mutable( GetArena()); + return _impl_.deviceinfo_.Mutable( GetArena()); } -inline std::string* registerClientResponse::release_clientuuid() { +inline std::string* getDeviceInfoResponse::release_deviceinfo() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientResponse.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) + return _impl_.deviceinfo_.Release(); } -inline void registerClientResponse::set_allocated_clientuuid(std::string* value) { +inline void getDeviceInfoResponse::set_allocated_deviceinfo(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.SetAllocated(value, GetArena()); + _impl_.deviceinfo_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuid_.IsDefault()) { - _impl_.clientuuid_.Set("", GetArena()); + if (_impl_.deviceinfo_.IsDefault()) { + _impl_.deviceinfo_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientResponse.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) } // sint32 xpcfGrpcReturnValue = 2; -inline void registerClientResponse::clear_xpcfgrpcreturnvalue() { +inline void getDeviceInfoResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t registerClientResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientResponse.xpcfGrpcReturnValue) +inline ::int32_t getDeviceInfoResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void registerClientResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getDeviceInfoResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoResponse.xpcfGrpcReturnValue) } -inline ::int32_t registerClientResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getDeviceInfoResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void registerClientResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getDeviceInfoResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// unregisterClientRequest +// init_grpc0Request // int32 grpcServerCompressionFormat = 1; -inline void unregisterClientRequest::clear_grpcservercompressionformat() { +inline void init_grpc0Request::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t unregisterClientRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientRequest.grpcServerCompressionFormat) +inline ::int32_t init_grpc0Request::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Request.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void unregisterClientRequest::set_grpcservercompressionformat(::int32_t value) { +inline void init_grpc0Request::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.unregisterClientRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Request.grpcServerCompressionFormat) } -inline ::int32_t unregisterClientRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t init_grpc0Request::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void unregisterClientRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void init_grpc0Request::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void unregisterClientRequest::clear_accesstoken() { +inline void init_grpc0Request::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& unregisterClientRequest::accesstoken() const +inline const std::string& init_grpc0Request::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Request.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void unregisterClientRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void init_grpc0Request::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.unregisterClientRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Request.accessToken) } -inline std::string* unregisterClientRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* init_grpc0Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.unregisterClientRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc0Request.accessToken) return _s; } -inline const std::string& unregisterClientRequest::_internal_accesstoken() const { +inline const std::string& init_grpc0Request::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void unregisterClientRequest::_internal_set_accesstoken(const std::string& value) { +inline void init_grpc0Request::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* unregisterClientRequest::_internal_mutable_accesstoken() { +inline std::string* init_grpc0Request::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* unregisterClientRequest::release_accesstoken() { +inline std::string* init_grpc0Request::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.unregisterClientRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc0Request.accessToken) return _impl_.accesstoken_.Release(); } -inline void unregisterClientRequest::set_allocated_accesstoken(std::string* value) { +inline void init_grpc0Request::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -12426,49 +13854,49 @@ inline void unregisterClientRequest::set_allocated_accesstoken(std::string* valu _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.unregisterClientRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc0Request.accessToken) } // string clientUUID = 3; -inline void unregisterClientRequest::clear_clientuuid() { +inline void init_grpc0Request::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& unregisterClientRequest::clientuuid() const +inline const std::string& init_grpc0Request::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Request.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void unregisterClientRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void init_grpc0Request::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.unregisterClientRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Request.clientUUID) } -inline std::string* unregisterClientRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* init_grpc0Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.unregisterClientRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc0Request.clientUUID) return _s; } -inline const std::string& unregisterClientRequest::_internal_clientuuid() const { +inline const std::string& init_grpc0Request::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void unregisterClientRequest::_internal_set_clientuuid(const std::string& value) { +inline void init_grpc0Request::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* unregisterClientRequest::_internal_mutable_clientuuid() { +inline std::string* init_grpc0Request::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* unregisterClientRequest::release_clientuuid() { +inline std::string* init_grpc0Request::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.unregisterClientRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc0Request.clientUUID) return _impl_.clientuuid_.Release(); } -inline void unregisterClientRequest::set_allocated_clientuuid(std::string* value) { +inline void init_grpc0Request::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -12476,303 +13904,275 @@ inline void unregisterClientRequest::set_allocated_clientuuid(std::string* value _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.unregisterClientRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc0Request.clientUUID) } // ------------------------------------------------------------------- -// unregisterClientResponse +// init_grpc0Response // sint32 xpcfGrpcReturnValue = 1; -inline void unregisterClientResponse::clear_xpcfgrpcreturnvalue() { +inline void init_grpc0Response::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t unregisterClientResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientResponse.xpcfGrpcReturnValue) +inline ::int32_t init_grpc0Response::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Response.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void unregisterClientResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void init_grpc0Response::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.unregisterClientResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Response.xpcfGrpcReturnValue) } -inline ::int32_t unregisterClientResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t init_grpc0Response::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void unregisterClientResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void init_grpc0Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getAllClientsUUIDRequest +// init_grpc1Request // int32 grpcServerCompressionFormat = 1; -inline void getAllClientsUUIDRequest::clear_grpcservercompressionformat() { +inline void init_grpc1Request::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getAllClientsUUIDRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDRequest.grpcServerCompressionFormat) +inline ::int32_t init_grpc1Request::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getAllClientsUUIDRequest::set_grpcservercompressionformat(::int32_t value) { +inline void init_grpc1Request::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.grpcServerCompressionFormat) } -inline ::int32_t getAllClientsUUIDRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t init_grpc1Request::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getAllClientsUUIDRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void init_grpc1Request::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void getAllClientsUUIDRequest::clear_accesstoken() { +inline void init_grpc1Request::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getAllClientsUUIDRequest::accesstoken() const +inline const std::string& init_grpc1Request::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllClientsUUIDRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void init_grpc1Request::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.accessToken) } -inline std::string* getAllClientsUUIDRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* init_grpc1Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc1Request.accessToken) return _s; } -inline const std::string& getAllClientsUUIDRequest::_internal_accesstoken() const { +inline const std::string& init_grpc1Request::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getAllClientsUUIDRequest::_internal_set_accesstoken(const std::string& value) { +inline void init_grpc1Request::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getAllClientsUUIDRequest::_internal_mutable_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); -} -inline std::string* getAllClientsUUIDRequest::release_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) - return _impl_.accesstoken_.Release(); -} -inline void getAllClientsUUIDRequest::set_allocated_accesstoken(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) -} - -// bytes clientUUIDList = 3; -inline void getAllClientsUUIDRequest::clear_clientuuidlist() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.ClearToEmpty(); -} -inline const std::string& getAllClientsUUIDRequest::clientuuidlist() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) - return _internal_clientuuidlist(); -} -template -inline PROTOBUF_ALWAYS_INLINE void getAllClientsUUIDRequest::set_clientuuidlist(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) -} -inline std::string* getAllClientsUUIDRequest::mutable_clientuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuidlist(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) - return _s; -} -inline const std::string& getAllClientsUUIDRequest::_internal_clientuuidlist() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuidlist_.Get(); -} -inline void getAllClientsUUIDRequest::_internal_set_clientuuidlist(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.Set(value, GetArena()); -} -inline std::string* getAllClientsUUIDRequest::_internal_mutable_clientuuidlist() { +inline std::string* init_grpc1Request::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuidlist_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getAllClientsUUIDRequest::release_clientuuidlist() { +inline std::string* init_grpc1Request::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) - return _impl_.clientuuidlist_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc1Request.accessToken) + return _impl_.accesstoken_.Release(); } -inline void getAllClientsUUIDRequest::set_allocated_clientuuidlist(std::string* value) { +inline void init_grpc1Request::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.SetAllocated(value, GetArena()); + _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuidlist_.IsDefault()) { - _impl_.clientuuidlist_.Set("", GetArena()); + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc1Request.accessToken) } -// ------------------------------------------------------------------- - -// getAllClientsUUIDResponse - -// bytes clientUUIDList = 1; -inline void getAllClientsUUIDResponse::clear_clientuuidlist() { +// string clientUUID = 3; +inline void init_grpc1Request::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.ClearToEmpty(); + _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& getAllClientsUUIDResponse::clientuuidlist() const +inline const std::string& init_grpc1Request::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) - return _internal_clientuuidlist(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.clientUUID) + return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllClientsUUIDResponse::set_clientuuidlist(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void init_grpc1Request::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) + _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.clientUUID) } -inline std::string* getAllClientsUUIDResponse::mutable_clientuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuidlist(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) +inline std::string* init_grpc1Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc1Request.clientUUID) return _s; } -inline const std::string& getAllClientsUUIDResponse::_internal_clientuuidlist() const { +inline const std::string& init_grpc1Request::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuidlist_.Get(); + return _impl_.clientuuid_.Get(); } -inline void getAllClientsUUIDResponse::_internal_set_clientuuidlist(const std::string& value) { +inline void init_grpc1Request::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.Set(value, GetArena()); + _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* getAllClientsUUIDResponse::_internal_mutable_clientuuidlist() { +inline std::string* init_grpc1Request::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuidlist_.Mutable( GetArena()); + return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* getAllClientsUUIDResponse::release_clientuuidlist() { +inline std::string* init_grpc1Request::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) - return _impl_.clientuuidlist_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc1Request.clientUUID) + return _impl_.clientuuid_.Release(); } -inline void getAllClientsUUIDResponse::set_allocated_clientuuidlist(std::string* value) { +inline void init_grpc1Request::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.SetAllocated(value, GetArena()); + _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuidlist_.IsDefault()) { - _impl_.clientuuidlist_.Set("", GetArena()); + if (_impl_.clientuuid_.IsDefault()) { + _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc1Request.clientUUID) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getAllClientsUUIDResponse::clear_xpcfgrpcreturnvalue() { +// sint32 pipelineMode = 4; +inline void init_grpc1Request::clear_pipelinemode() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pipelinemode_ = 0; +} +inline ::int32_t init_grpc1Request::pipelinemode() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.pipelineMode) + return _internal_pipelinemode(); +} +inline void init_grpc1Request::set_pipelinemode(::int32_t value) { + _internal_set_pipelinemode(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.pipelineMode) +} +inline ::int32_t init_grpc1Request::_internal_pipelinemode() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.pipelinemode_; +} +inline void init_grpc1Request::_internal_set_pipelinemode(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pipelinemode_ = value; +} + +// ------------------------------------------------------------------- + +// init_grpc1Response + +// sint32 xpcfGrpcReturnValue = 1; +inline void init_grpc1Response::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getAllClientsUUIDResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDResponse.xpcfGrpcReturnValue) +inline ::int32_t init_grpc1Response::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Response.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getAllClientsUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void init_grpc1Response::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Response.xpcfGrpcReturnValue) } -inline ::int32_t getAllClientsUUIDResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t init_grpc1Response::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getAllClientsUUIDResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void init_grpc1Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getDeviceInfoRequest +// startRequest // int32 grpcServerCompressionFormat = 1; -inline void getDeviceInfoRequest::clear_grpcservercompressionformat() { +inline void startRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getDeviceInfoRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.grpcServerCompressionFormat) +inline ::int32_t startRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getDeviceInfoRequest::set_grpcservercompressionformat(::int32_t value) { +inline void startRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.startRequest.grpcServerCompressionFormat) } -inline ::int32_t getDeviceInfoRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t startRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getDeviceInfoRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void startRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void getDeviceInfoRequest::clear_accesstoken() { +inline void startRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getDeviceInfoRequest::accesstoken() const +inline const std::string& startRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void startRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.startRequest.accessToken) } -inline std::string* getDeviceInfoRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* startRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getDeviceInfoRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.startRequest.accessToken) return _s; } -inline const std::string& getDeviceInfoRequest::_internal_accesstoken() const { +inline const std::string& startRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getDeviceInfoRequest::_internal_set_accesstoken(const std::string& value) { +inline void startRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getDeviceInfoRequest::_internal_mutable_accesstoken() { +inline std::string* startRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getDeviceInfoRequest::release_accesstoken() { +inline std::string* startRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.startRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getDeviceInfoRequest::set_allocated_accesstoken(std::string* value) { +inline void startRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -12780,49 +14180,49 @@ inline void getDeviceInfoRequest::set_allocated_accesstoken(std::string* value) _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getDeviceInfoRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.startRequest.accessToken) } // string clientUUID = 3; -inline void getDeviceInfoRequest::clear_clientuuid() { +inline void startRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& getDeviceInfoRequest::clientuuid() const +inline const std::string& startRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void startRequest::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.startRequest.clientUUID) } -inline std::string* getDeviceInfoRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* startRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.startRequest.clientUUID) return _s; } -inline const std::string& getDeviceInfoRequest::_internal_clientuuid() const { +inline const std::string& startRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void getDeviceInfoRequest::_internal_set_clientuuid(const std::string& value) { +inline void startRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* getDeviceInfoRequest::_internal_mutable_clientuuid() { +inline std::string* startRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* getDeviceInfoRequest::release_clientuuid() { +inline std::string* startRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.startRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void getDeviceInfoRequest::set_allocated_clientuuid(std::string* value) { +inline void startRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -12830,201 +14230,253 @@ inline void getDeviceInfoRequest::set_allocated_clientuuid(std::string* value) { _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.startRequest.clientUUID) } -// bytes deviceInfo = 4; -inline void getDeviceInfoRequest::clear_deviceinfo() { +// ------------------------------------------------------------------- + +// startResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void startResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.ClearToEmpty(); + _impl_.xpcfgrpcreturnvalue_ = 0; } -inline const std::string& getDeviceInfoRequest::deviceinfo() const +inline ::int32_t startResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.startResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void startResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.startResponse.xpcfGrpcReturnValue) +} +inline ::int32_t startResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void startResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// stopRequest + +// int32 grpcServerCompressionFormat = 1; +inline void stopRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t stopRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void stopRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopRequest.grpcServerCompressionFormat) +} +inline ::int32_t stopRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void stopRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string accessToken = 2; +inline void stopRequest::clear_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.ClearToEmpty(); +} +inline const std::string& stopRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.deviceInfo) - return _internal_deviceinfo(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoRequest::set_deviceinfo(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void stopRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoRequest.deviceInfo) + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopRequest.accessToken) } -inline std::string* getDeviceInfoRequest::mutable_deviceinfo() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_deviceinfo(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getDeviceInfoRequest.deviceInfo) +inline std::string* stopRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.stopRequest.accessToken) return _s; } -inline const std::string& getDeviceInfoRequest::_internal_deviceinfo() const { +inline const std::string& stopRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.deviceinfo_.Get(); + return _impl_.accesstoken_.Get(); } -inline void getDeviceInfoRequest::_internal_set_deviceinfo(const std::string& value) { +inline void stopRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.Set(value, GetArena()); + _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getDeviceInfoRequest::_internal_mutable_deviceinfo() { +inline std::string* stopRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.deviceinfo_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getDeviceInfoRequest::release_deviceinfo() { +inline std::string* stopRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoRequest.deviceInfo) - return _impl_.deviceinfo_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.stopRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void getDeviceInfoRequest::set_allocated_deviceinfo(std::string* value) { +inline void stopRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.SetAllocated(value, GetArena()); + _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.deviceinfo_.IsDefault()) { - _impl_.deviceinfo_.Set("", GetArena()); + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getDeviceInfoRequest.deviceInfo) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.stopRequest.accessToken) } -// ------------------------------------------------------------------- - -// getDeviceInfoResponse - -// bytes deviceInfo = 1; -inline void getDeviceInfoResponse::clear_deviceinfo() { +// string clientUUID = 3; +inline void stopRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.ClearToEmpty(); + _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& getDeviceInfoResponse::deviceinfo() const +inline const std::string& stopRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) - return _internal_deviceinfo(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopRequest.clientUUID) + return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoResponse::set_deviceinfo(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void stopRequest::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) + _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopRequest.clientUUID) } -inline std::string* getDeviceInfoResponse::mutable_deviceinfo() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_deviceinfo(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) +inline std::string* stopRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.stopRequest.clientUUID) return _s; } -inline const std::string& getDeviceInfoResponse::_internal_deviceinfo() const { +inline const std::string& stopRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.deviceinfo_.Get(); + return _impl_.clientuuid_.Get(); } -inline void getDeviceInfoResponse::_internal_set_deviceinfo(const std::string& value) { +inline void stopRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.Set(value, GetArena()); + _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* getDeviceInfoResponse::_internal_mutable_deviceinfo() { +inline std::string* stopRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.deviceinfo_.Mutable( GetArena()); + return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* getDeviceInfoResponse::release_deviceinfo() { +inline std::string* stopRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) - return _impl_.deviceinfo_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.stopRequest.clientUUID) + return _impl_.clientuuid_.Release(); } -inline void getDeviceInfoResponse::set_allocated_deviceinfo(std::string* value) { +inline void stopRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.SetAllocated(value, GetArena()); + _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.deviceinfo_.IsDefault()) { - _impl_.deviceinfo_.Set("", GetArena()); + if (_impl_.clientuuid_.IsDefault()) { + _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.stopRequest.clientUUID) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getDeviceInfoResponse::clear_xpcfgrpcreturnvalue() { +// ------------------------------------------------------------------- + +// stopResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void stopResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getDeviceInfoResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoResponse.xpcfGrpcReturnValue) +inline ::int32_t stopResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getDeviceInfoResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void stopResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopResponse.xpcfGrpcReturnValue) } -inline ::int32_t getDeviceInfoResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t stopResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getDeviceInfoResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void stopResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// init_grpc0Request +// getProcessingModeRequest // int32 grpcServerCompressionFormat = 1; -inline void init_grpc0Request::clear_grpcservercompressionformat() { +inline void getProcessingModeRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t init_grpc0Request::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Request.grpcServerCompressionFormat) +inline ::int32_t getProcessingModeRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void init_grpc0Request::set_grpcservercompressionformat(::int32_t value) { +inline void getProcessingModeRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Request.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.grpcServerCompressionFormat) } -inline ::int32_t init_grpc0Request::_internal_grpcservercompressionformat() const { +inline ::int32_t getProcessingModeRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void init_grpc0Request::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getProcessingModeRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void init_grpc0Request::clear_accesstoken() { +inline void getProcessingModeRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& init_grpc0Request::accesstoken() const +inline const std::string& getProcessingModeRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Request.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void init_grpc0Request::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getProcessingModeRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Request.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.accessToken) } -inline std::string* init_grpc0Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getProcessingModeRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc0Request.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getProcessingModeRequest.accessToken) return _s; } -inline const std::string& init_grpc0Request::_internal_accesstoken() const { +inline const std::string& getProcessingModeRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void init_grpc0Request::_internal_set_accesstoken(const std::string& value) { +inline void getProcessingModeRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* init_grpc0Request::_internal_mutable_accesstoken() { +inline std::string* getProcessingModeRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* init_grpc0Request::release_accesstoken() { +inline std::string* getProcessingModeRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc0Request.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getProcessingModeRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void init_grpc0Request::set_allocated_accesstoken(std::string* value) { +inline void getProcessingModeRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13032,49 +14484,49 @@ inline void init_grpc0Request::set_allocated_accesstoken(std::string* value) { _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc0Request.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getProcessingModeRequest.accessToken) } // string clientUUID = 3; -inline void init_grpc0Request::clear_clientuuid() { +inline void getProcessingModeRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& init_grpc0Request::clientuuid() const +inline const std::string& getProcessingModeRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void init_grpc0Request::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getProcessingModeRequest::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.clientUUID) } -inline std::string* init_grpc0Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getProcessingModeRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getProcessingModeRequest.clientUUID) return _s; } -inline const std::string& init_grpc0Request::_internal_clientuuid() const { +inline const std::string& getProcessingModeRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void init_grpc0Request::_internal_set_clientuuid(const std::string& value) { +inline void getProcessingModeRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* init_grpc0Request::_internal_mutable_clientuuid() { +inline std::string* getProcessingModeRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* init_grpc0Request::release_clientuuid() { +inline std::string* getProcessingModeRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getProcessingModeRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void init_grpc0Request::set_allocated_clientuuid(std::string* value) { +inline void getProcessingModeRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13082,101 +14534,145 @@ inline void init_grpc0Request::set_allocated_clientuuid(std::string* value) { _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getProcessingModeRequest.clientUUID) +} + +// sint32 pipelineMode = 4; +inline void getProcessingModeRequest::clear_pipelinemode() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pipelinemode_ = 0; +} +inline ::int32_t getProcessingModeRequest::pipelinemode() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.pipelineMode) + return _internal_pipelinemode(); +} +inline void getProcessingModeRequest::set_pipelinemode(::int32_t value) { + _internal_set_pipelinemode(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.pipelineMode) +} +inline ::int32_t getProcessingModeRequest::_internal_pipelinemode() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.pipelinemode_; +} +inline void getProcessingModeRequest::_internal_set_pipelinemode(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pipelinemode_ = value; } // ------------------------------------------------------------------- -// init_grpc0Response +// getProcessingModeResponse -// sint32 xpcfGrpcReturnValue = 1; -inline void init_grpc0Response::clear_xpcfgrpcreturnvalue() { +// sint32 pipelineMode = 1; +inline void getProcessingModeResponse::clear_pipelinemode() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pipelinemode_ = 0; +} +inline ::int32_t getProcessingModeResponse::pipelinemode() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeResponse.pipelineMode) + return _internal_pipelinemode(); +} +inline void getProcessingModeResponse::set_pipelinemode(::int32_t value) { + _internal_set_pipelinemode(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeResponse.pipelineMode) +} +inline ::int32_t getProcessingModeResponse::_internal_pipelinemode() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.pipelinemode_; +} +inline void getProcessingModeResponse::_internal_set_pipelinemode(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pipelinemode_ = value; +} + +// sint32 xpcfGrpcReturnValue = 2; +inline void getProcessingModeResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t init_grpc0Response::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Response.xpcfGrpcReturnValue) +inline ::int32_t getProcessingModeResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void init_grpc0Response::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getProcessingModeResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Response.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeResponse.xpcfGrpcReturnValue) } -inline ::int32_t init_grpc0Response::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getProcessingModeResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void init_grpc0Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getProcessingModeResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// init_grpc1Request +// setCameraParameters_grpc0Request // int32 grpcServerCompressionFormat = 1; -inline void init_grpc1Request::clear_grpcservercompressionformat() { +inline void setCameraParameters_grpc0Request::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t init_grpc1Request::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.grpcServerCompressionFormat) +inline ::int32_t setCameraParameters_grpc0Request::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void init_grpc1Request::set_grpcservercompressionformat(::int32_t value) { +inline void setCameraParameters_grpc0Request::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.grpcServerCompressionFormat) } -inline ::int32_t init_grpc1Request::_internal_grpcservercompressionformat() const { +inline ::int32_t setCameraParameters_grpc0Request::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void init_grpc1Request::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void setCameraParameters_grpc0Request::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void init_grpc1Request::clear_accesstoken() { +inline void setCameraParameters_grpc0Request::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& init_grpc1Request::accesstoken() const +inline const std::string& setCameraParameters_grpc0Request::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void init_grpc1Request::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) } -inline std::string* init_grpc1Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* setCameraParameters_grpc0Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc1Request.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) return _s; } -inline const std::string& init_grpc1Request::_internal_accesstoken() const { +inline const std::string& setCameraParameters_grpc0Request::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void init_grpc1Request::_internal_set_accesstoken(const std::string& value) { +inline void setCameraParameters_grpc0Request::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* init_grpc1Request::_internal_mutable_accesstoken() { +inline std::string* setCameraParameters_grpc0Request::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* init_grpc1Request::release_accesstoken() { +inline std::string* setCameraParameters_grpc0Request::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc1Request.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) return _impl_.accesstoken_.Release(); } -inline void init_grpc1Request::set_allocated_accesstoken(std::string* value) { +inline void setCameraParameters_grpc0Request::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13184,49 +14680,49 @@ inline void init_grpc1Request::set_allocated_accesstoken(std::string* value) { _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc1Request.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) } // string clientUUID = 3; -inline void init_grpc1Request::clear_clientuuid() { +inline void setCameraParameters_grpc0Request::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& init_grpc1Request::clientuuid() const +inline const std::string& setCameraParameters_grpc0Request::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void init_grpc1Request::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) } -inline std::string* init_grpc1Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* setCameraParameters_grpc0Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) return _s; } -inline const std::string& init_grpc1Request::_internal_clientuuid() const { +inline const std::string& setCameraParameters_grpc0Request::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void init_grpc1Request::_internal_set_clientuuid(const std::string& value) { +inline void setCameraParameters_grpc0Request::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* init_grpc1Request::_internal_mutable_clientuuid() { +inline std::string* setCameraParameters_grpc0Request::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* init_grpc1Request::release_clientuuid() { +inline std::string* setCameraParameters_grpc0Request::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) return _impl_.clientuuid_.Release(); } -inline void init_grpc1Request::set_allocated_clientuuid(std::string* value) { +inline void setCameraParameters_grpc0Request::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13234,123 +14730,151 @@ inline void init_grpc1Request::set_allocated_clientuuid(std::string* value) { _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) } -// sint32 pipelineMode = 4; -inline void init_grpc1Request::clear_pipelinemode() { +// bytes cameraParams = 4; +inline void setCameraParameters_grpc0Request::clear_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pipelinemode_ = 0; + _impl_.cameraparams_.ClearToEmpty(); } -inline ::int32_t init_grpc1Request::pipelinemode() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.pipelineMode) - return _internal_pipelinemode(); +inline const std::string& setCameraParameters_grpc0Request::cameraparams() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) + return _internal_cameraparams(); } -inline void init_grpc1Request::set_pipelinemode(::int32_t value) { - _internal_set_pipelinemode(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.pipelineMode) +template +inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::set_cameraparams(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.cameraparams_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) } -inline ::int32_t init_grpc1Request::_internal_pipelinemode() const { +inline std::string* setCameraParameters_grpc0Request::mutable_cameraparams() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparams(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) + return _s; +} +inline const std::string& setCameraParameters_grpc0Request::_internal_cameraparams() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pipelinemode_; + return _impl_.cameraparams_.Get(); } -inline void init_grpc1Request::_internal_set_pipelinemode(::int32_t value) { +inline void setCameraParameters_grpc0Request::_internal_set_cameraparams(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pipelinemode_ = value; + _impl_.cameraparams_.Set(value, GetArena()); +} +inline std::string* setCameraParameters_grpc0Request::_internal_mutable_cameraparams() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.cameraparams_.Mutable( GetArena()); +} +inline std::string* setCameraParameters_grpc0Request::release_cameraparams() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) + return _impl_.cameraparams_.Release(); +} +inline void setCameraParameters_grpc0Request::set_allocated_cameraparams(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.cameraparams_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.cameraparams_.IsDefault()) { + _impl_.cameraparams_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) } // ------------------------------------------------------------------- -// init_grpc1Response +// setCameraParameters_grpc0Response // sint32 xpcfGrpcReturnValue = 1; -inline void init_grpc1Response::clear_xpcfgrpcreturnvalue() { +inline void setCameraParameters_grpc0Response::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t init_grpc1Response::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Response.xpcfGrpcReturnValue) +inline ::int32_t setCameraParameters_grpc0Response::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Response.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void init_grpc1Response::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setCameraParameters_grpc0Response::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Response.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Response.xpcfGrpcReturnValue) } -inline ::int32_t init_grpc1Response::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t setCameraParameters_grpc0Response::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void init_grpc1Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setCameraParameters_grpc0Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// startRequest +// setCameraParameters_grpc1Request // int32 grpcServerCompressionFormat = 1; -inline void startRequest::clear_grpcservercompressionformat() { +inline void setCameraParameters_grpc1Request::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t startRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.grpcServerCompressionFormat) +inline ::int32_t setCameraParameters_grpc1Request::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void startRequest::set_grpcservercompressionformat(::int32_t value) { +inline void setCameraParameters_grpc1Request::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.startRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.grpcServerCompressionFormat) } -inline ::int32_t startRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t setCameraParameters_grpc1Request::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void startRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void setCameraParameters_grpc1Request::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void startRequest::clear_accesstoken() { +inline void setCameraParameters_grpc1Request::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& startRequest::accesstoken() const +inline const std::string& setCameraParameters_grpc1Request::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void startRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.startRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) } -inline std::string* startRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* setCameraParameters_grpc1Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.startRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) return _s; } -inline const std::string& startRequest::_internal_accesstoken() const { +inline const std::string& setCameraParameters_grpc1Request::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void startRequest::_internal_set_accesstoken(const std::string& value) { +inline void setCameraParameters_grpc1Request::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* startRequest::_internal_mutable_accesstoken() { +inline std::string* setCameraParameters_grpc1Request::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* startRequest::release_accesstoken() { +inline std::string* setCameraParameters_grpc1Request::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.startRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) return _impl_.accesstoken_.Release(); } -inline void startRequest::set_allocated_accesstoken(std::string* value) { +inline void setCameraParameters_grpc1Request::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13358,49 +14882,49 @@ inline void startRequest::set_allocated_accesstoken(std::string* value) { _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.startRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) } // string clientUUID = 3; -inline void startRequest::clear_clientuuid() { +inline void setCameraParameters_grpc1Request::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& startRequest::clientuuid() const +inline const std::string& setCameraParameters_grpc1Request::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void startRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.startRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) } -inline std::string* startRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* setCameraParameters_grpc1Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.startRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) return _s; } -inline const std::string& startRequest::_internal_clientuuid() const { +inline const std::string& setCameraParameters_grpc1Request::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void startRequest::_internal_set_clientuuid(const std::string& value) { +inline void setCameraParameters_grpc1Request::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* startRequest::_internal_mutable_clientuuid() { +inline std::string* setCameraParameters_grpc1Request::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* startRequest::release_clientuuid() { +inline std::string* setCameraParameters_grpc1Request::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.startRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) return _impl_.clientuuid_.Release(); } -inline void startRequest::set_allocated_clientuuid(std::string* value) { +inline void setCameraParameters_grpc1Request::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13408,253 +14932,201 @@ inline void startRequest::set_allocated_clientuuid(std::string* value) { _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.startRequest.clientUUID) -} - -// ------------------------------------------------------------------- - -// startResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void startResponse::clear_xpcfgrpcreturnvalue() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; -} -inline ::int32_t startResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.startResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); -} -inline void startResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.startResponse.xpcfGrpcReturnValue) -} -inline ::int32_t startResponse::_internal_xpcfgrpcreturnvalue() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; -} -inline void startResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; -} - -// ------------------------------------------------------------------- - -// stopRequest - -// int32 grpcServerCompressionFormat = 1; -inline void stopRequest::clear_grpcservercompressionformat() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; -} -inline ::int32_t stopRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); -} -inline void stopRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopRequest.grpcServerCompressionFormat) -} -inline ::int32_t stopRequest::_internal_grpcservercompressionformat() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; -} -inline void stopRequest::_internal_set_grpcservercompressionformat(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) } -// string accessToken = 2; -inline void stopRequest::clear_accesstoken() { +// bytes cameraParams1 = 4; +inline void setCameraParameters_grpc1Request::clear_cameraparams1() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); + _impl_.cameraparams1_.ClearToEmpty(); } -inline const std::string& stopRequest::accesstoken() const +inline const std::string& setCameraParameters_grpc1Request::cameraparams1() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopRequest.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) + return _internal_cameraparams1(); } template -inline PROTOBUF_ALWAYS_INLINE void stopRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::set_cameraparams1(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopRequest.accessToken) + _impl_.cameraparams1_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) } -inline std::string* stopRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.stopRequest.accessToken) +inline std::string* setCameraParameters_grpc1Request::mutable_cameraparams1() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparams1(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) return _s; } -inline const std::string& stopRequest::_internal_accesstoken() const { +inline const std::string& setCameraParameters_grpc1Request::_internal_cameraparams1() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.cameraparams1_.Get(); } -inline void stopRequest::_internal_set_accesstoken(const std::string& value) { +inline void setCameraParameters_grpc1Request::_internal_set_cameraparams1(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.cameraparams1_.Set(value, GetArena()); } -inline std::string* stopRequest::_internal_mutable_accesstoken() { +inline std::string* setCameraParameters_grpc1Request::_internal_mutable_cameraparams1() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.cameraparams1_.Mutable( GetArena()); } -inline std::string* stopRequest::release_accesstoken() { +inline std::string* setCameraParameters_grpc1Request::release_cameraparams1() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.stopRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) + return _impl_.cameraparams1_.Release(); } -inline void stopRequest::set_allocated_accesstoken(std::string* value) { +inline void setCameraParameters_grpc1Request::set_allocated_cameraparams1(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.cameraparams1_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.cameraparams1_.IsDefault()) { + _impl_.cameraparams1_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.stopRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) } -// string clientUUID = 3; -inline void stopRequest::clear_clientuuid() { +// bytes cameraParams2 = 5; +inline void setCameraParameters_grpc1Request::clear_cameraparams2() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.cameraparams2_.ClearToEmpty(); } -inline const std::string& stopRequest::clientuuid() const +inline const std::string& setCameraParameters_grpc1Request::cameraparams2() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopRequest.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) + return _internal_cameraparams2(); } template -inline PROTOBUF_ALWAYS_INLINE void stopRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::set_cameraparams2(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopRequest.clientUUID) + _impl_.cameraparams2_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) } -inline std::string* stopRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.stopRequest.clientUUID) +inline std::string* setCameraParameters_grpc1Request::mutable_cameraparams2() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparams2(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) return _s; } -inline const std::string& stopRequest::_internal_clientuuid() const { +inline const std::string& setCameraParameters_grpc1Request::_internal_cameraparams2() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuid_.Get(); + return _impl_.cameraparams2_.Get(); } -inline void stopRequest::_internal_set_clientuuid(const std::string& value) { +inline void setCameraParameters_grpc1Request::_internal_set_cameraparams2(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(value, GetArena()); + _impl_.cameraparams2_.Set(value, GetArena()); } -inline std::string* stopRequest::_internal_mutable_clientuuid() { +inline std::string* setCameraParameters_grpc1Request::_internal_mutable_cameraparams2() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuid_.Mutable( GetArena()); + return _impl_.cameraparams2_.Mutable( GetArena()); } -inline std::string* stopRequest::release_clientuuid() { +inline std::string* setCameraParameters_grpc1Request::release_cameraparams2() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.stopRequest.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) + return _impl_.cameraparams2_.Release(); } -inline void stopRequest::set_allocated_clientuuid(std::string* value) { +inline void setCameraParameters_grpc1Request::set_allocated_cameraparams2(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.SetAllocated(value, GetArena()); + _impl_.cameraparams2_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuid_.IsDefault()) { - _impl_.clientuuid_.Set("", GetArena()); + if (_impl_.cameraparams2_.IsDefault()) { + _impl_.cameraparams2_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.stopRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) } // ------------------------------------------------------------------- -// stopResponse +// setCameraParameters_grpc1Response // sint32 xpcfGrpcReturnValue = 1; -inline void stopResponse::clear_xpcfgrpcreturnvalue() { +inline void setCameraParameters_grpc1Response::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t stopResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopResponse.xpcfGrpcReturnValue) +inline ::int32_t setCameraParameters_grpc1Response::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Response.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void stopResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setCameraParameters_grpc1Response::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Response.xpcfGrpcReturnValue) } -inline ::int32_t stopResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t setCameraParameters_grpc1Response::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void stopResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setCameraParameters_grpc1Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getProcessingModeRequest +// setRectificationParametersRequest // int32 grpcServerCompressionFormat = 1; -inline void getProcessingModeRequest::clear_grpcservercompressionformat() { +inline void setRectificationParametersRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getProcessingModeRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.grpcServerCompressionFormat) +inline ::int32_t setRectificationParametersRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getProcessingModeRequest::set_grpcservercompressionformat(::int32_t value) { +inline void setRectificationParametersRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.grpcServerCompressionFormat) } -inline ::int32_t getProcessingModeRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t setRectificationParametersRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getProcessingModeRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void setRectificationParametersRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void getProcessingModeRequest::clear_accesstoken() { +inline void setRectificationParametersRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getProcessingModeRequest::accesstoken() const +inline const std::string& setRectificationParametersRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getProcessingModeRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setRectificationParametersRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.accessToken) } -inline std::string* getProcessingModeRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* setRectificationParametersRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getProcessingModeRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setRectificationParametersRequest.accessToken) return _s; } -inline const std::string& getProcessingModeRequest::_internal_accesstoken() const { +inline const std::string& setRectificationParametersRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getProcessingModeRequest::_internal_set_accesstoken(const std::string& value) { +inline void setRectificationParametersRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getProcessingModeRequest::_internal_mutable_accesstoken() { +inline std::string* setRectificationParametersRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getProcessingModeRequest::release_accesstoken() { +inline std::string* setRectificationParametersRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getProcessingModeRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getProcessingModeRequest::set_allocated_accesstoken(std::string* value) { +inline void setRectificationParametersRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13662,49 +15134,49 @@ inline void getProcessingModeRequest::set_allocated_accesstoken(std::string* val _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getProcessingModeRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setRectificationParametersRequest.accessToken) } // string clientUUID = 3; -inline void getProcessingModeRequest::clear_clientuuid() { +inline void setRectificationParametersRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& getProcessingModeRequest::clientuuid() const +inline const std::string& setRectificationParametersRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getProcessingModeRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setRectificationParametersRequest::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) } -inline std::string* getProcessingModeRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* setRectificationParametersRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getProcessingModeRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) return _s; } -inline const std::string& getProcessingModeRequest::_internal_clientuuid() const { +inline const std::string& setRectificationParametersRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void getProcessingModeRequest::_internal_set_clientuuid(const std::string& value) { +inline void setRectificationParametersRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* getProcessingModeRequest::_internal_mutable_clientuuid() { +inline std::string* setRectificationParametersRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* getProcessingModeRequest::release_clientuuid() { +inline std::string* setRectificationParametersRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getProcessingModeRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void getProcessingModeRequest::set_allocated_clientuuid(std::string* value) { +inline void setRectificationParametersRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13712,145 +15184,201 @@ inline void getProcessingModeRequest::set_allocated_clientuuid(std::string* valu _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getProcessingModeRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) } -// sint32 pipelineMode = 4; -inline void getProcessingModeRequest::clear_pipelinemode() { +// bytes rectCam1 = 4; +inline void setRectificationParametersRequest::clear_rectcam1() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.rectcam1_.ClearToEmpty(); +} +inline const std::string& setRectificationParametersRequest::rectcam1() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) + return _internal_rectcam1(); +} +template +inline PROTOBUF_ALWAYS_INLINE void setRectificationParametersRequest::set_rectcam1(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.rectcam1_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) +} +inline std::string* setRectificationParametersRequest::mutable_rectcam1() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_rectcam1(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) + return _s; +} +inline const std::string& setRectificationParametersRequest::_internal_rectcam1() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.rectcam1_.Get(); +} +inline void setRectificationParametersRequest::_internal_set_rectcam1(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.rectcam1_.Set(value, GetArena()); +} +inline std::string* setRectificationParametersRequest::_internal_mutable_rectcam1() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.rectcam1_.Mutable( GetArena()); +} +inline std::string* setRectificationParametersRequest::release_rectcam1() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) + return _impl_.rectcam1_.Release(); +} +inline void setRectificationParametersRequest::set_allocated_rectcam1(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.rectcam1_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.rectcam1_.IsDefault()) { + _impl_.rectcam1_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) +} + +// bytes rectCam2 = 5; +inline void setRectificationParametersRequest::clear_rectcam2() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.rectcam2_.ClearToEmpty(); +} +inline const std::string& setRectificationParametersRequest::rectcam2() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) + return _internal_rectcam2(); +} +template +inline PROTOBUF_ALWAYS_INLINE void setRectificationParametersRequest::set_rectcam2(Arg_&& arg, + Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pipelinemode_ = 0; -} -inline ::int32_t getProcessingModeRequest::pipelinemode() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.pipelineMode) - return _internal_pipelinemode(); + _impl_.rectcam2_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) } -inline void getProcessingModeRequest::set_pipelinemode(::int32_t value) { - _internal_set_pipelinemode(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.pipelineMode) +inline std::string* setRectificationParametersRequest::mutable_rectcam2() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_rectcam2(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) + return _s; } -inline ::int32_t getProcessingModeRequest::_internal_pipelinemode() const { +inline const std::string& setRectificationParametersRequest::_internal_rectcam2() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pipelinemode_; + return _impl_.rectcam2_.Get(); } -inline void getProcessingModeRequest::_internal_set_pipelinemode(::int32_t value) { +inline void setRectificationParametersRequest::_internal_set_rectcam2(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pipelinemode_ = value; + _impl_.rectcam2_.Set(value, GetArena()); } - -// ------------------------------------------------------------------- - -// getProcessingModeResponse - -// sint32 pipelineMode = 1; -inline void getProcessingModeResponse::clear_pipelinemode() { +inline std::string* setRectificationParametersRequest::_internal_mutable_rectcam2() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pipelinemode_ = 0; -} -inline ::int32_t getProcessingModeResponse::pipelinemode() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeResponse.pipelineMode) - return _internal_pipelinemode(); -} -inline void getProcessingModeResponse::set_pipelinemode(::int32_t value) { - _internal_set_pipelinemode(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeResponse.pipelineMode) + return _impl_.rectcam2_.Mutable( GetArena()); } -inline ::int32_t getProcessingModeResponse::_internal_pipelinemode() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pipelinemode_; +inline std::string* setRectificationParametersRequest::release_rectcam2() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) + return _impl_.rectcam2_.Release(); } -inline void getProcessingModeResponse::_internal_set_pipelinemode(::int32_t value) { +inline void setRectificationParametersRequest::set_allocated_rectcam2(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pipelinemode_ = value; + _impl_.rectcam2_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.rectcam2_.IsDefault()) { + _impl_.rectcam2_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getProcessingModeResponse::clear_xpcfgrpcreturnvalue() { +// ------------------------------------------------------------------- + +// setRectificationParametersResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void setRectificationParametersResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getProcessingModeResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeResponse.xpcfGrpcReturnValue) +inline ::int32_t setRectificationParametersResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getProcessingModeResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setRectificationParametersResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersResponse.xpcfGrpcReturnValue) } -inline ::int32_t getProcessingModeResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t setRectificationParametersResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getProcessingModeResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setRectificationParametersResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// setCameraParameters_grpc0Request +// getCameraParametersRequest // int32 grpcServerCompressionFormat = 1; -inline void setCameraParameters_grpc0Request::clear_grpcservercompressionformat() { +inline void getCameraParametersRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t setCameraParameters_grpc0Request::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.grpcServerCompressionFormat) +inline ::int32_t getCameraParametersRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void setCameraParameters_grpc0Request::set_grpcservercompressionformat(::int32_t value) { +inline void getCameraParametersRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.grpcServerCompressionFormat) } -inline ::int32_t setCameraParameters_grpc0Request::_internal_grpcservercompressionformat() const { +inline ::int32_t getCameraParametersRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void setCameraParameters_grpc0Request::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getCameraParametersRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void setCameraParameters_grpc0Request::clear_accesstoken() { +inline void getCameraParametersRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& setCameraParameters_grpc0Request::accesstoken() const +inline const std::string& getCameraParametersRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getCameraParametersRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.accessToken) } -inline std::string* setCameraParameters_grpc0Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getCameraParametersRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersRequest.accessToken) return _s; } -inline const std::string& setCameraParameters_grpc0Request::_internal_accesstoken() const { +inline const std::string& getCameraParametersRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void setCameraParameters_grpc0Request::_internal_set_accesstoken(const std::string& value) { +inline void getCameraParametersRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* setCameraParameters_grpc0Request::_internal_mutable_accesstoken() { +inline std::string* getCameraParametersRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* setCameraParameters_grpc0Request::release_accesstoken() { +inline std::string* getCameraParametersRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void setCameraParameters_grpc0Request::set_allocated_accesstoken(std::string* value) { +inline void getCameraParametersRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13858,49 +15386,49 @@ inline void setCameraParameters_grpc0Request::set_allocated_accesstoken(std::str _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersRequest.accessToken) } // string clientUUID = 3; -inline void setCameraParameters_grpc0Request::clear_clientuuid() { +inline void getCameraParametersRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& setCameraParameters_grpc0Request::clientuuid() const +inline const std::string& getCameraParametersRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getCameraParametersRequest::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.clientUUID) } -inline std::string* setCameraParameters_grpc0Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getCameraParametersRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersRequest.clientUUID) return _s; } -inline const std::string& setCameraParameters_grpc0Request::_internal_clientuuid() const { +inline const std::string& getCameraParametersRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void setCameraParameters_grpc0Request::_internal_set_clientuuid(const std::string& value) { +inline void getCameraParametersRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* setCameraParameters_grpc0Request::_internal_mutable_clientuuid() { +inline std::string* getCameraParametersRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* setCameraParameters_grpc0Request::release_clientuuid() { +inline std::string* getCameraParametersRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void setCameraParameters_grpc0Request::set_allocated_clientuuid(std::string* value) { +inline void getCameraParametersRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13908,49 +15436,49 @@ inline void setCameraParameters_grpc0Request::set_allocated_clientuuid(std::stri _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersRequest.clientUUID) } // bytes cameraParams = 4; -inline void setCameraParameters_grpc0Request::clear_cameraparams() { +inline void getCameraParametersRequest::clear_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.cameraparams_.ClearToEmpty(); } -inline const std::string& setCameraParameters_grpc0Request::cameraparams() const +inline const std::string& getCameraParametersRequest::cameraparams() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.cameraParams) return _internal_cameraparams(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::set_cameraparams(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getCameraParametersRequest::set_cameraparams(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.cameraparams_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.cameraParams) } -inline std::string* setCameraParameters_grpc0Request::mutable_cameraparams() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getCameraParametersRequest::mutable_cameraparams() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_cameraparams(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersRequest.cameraParams) return _s; } -inline const std::string& setCameraParameters_grpc0Request::_internal_cameraparams() const { +inline const std::string& getCameraParametersRequest::_internal_cameraparams() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.cameraparams_.Get(); } -inline void setCameraParameters_grpc0Request::_internal_set_cameraparams(const std::string& value) { +inline void getCameraParametersRequest::_internal_set_cameraparams(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.cameraparams_.Set(value, GetArena()); } -inline std::string* setCameraParameters_grpc0Request::_internal_mutable_cameraparams() { +inline std::string* getCameraParametersRequest::_internal_mutable_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.cameraparams_.Mutable( GetArena()); } -inline std::string* setCameraParameters_grpc0Request::release_cameraparams() { +inline std::string* getCameraParametersRequest::release_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.cameraParams) return _impl_.cameraparams_.Release(); } -inline void setCameraParameters_grpc0Request::set_allocated_cameraparams(std::string* value) { +inline void getCameraParametersRequest::set_allocated_cameraparams(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.cameraparams_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -13958,101 +15486,151 @@ inline void setCameraParameters_grpc0Request::set_allocated_cameraparams(std::st _impl_.cameraparams_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersRequest.cameraParams) } // ------------------------------------------------------------------- -// setCameraParameters_grpc0Response +// getCameraParametersResponse -// sint32 xpcfGrpcReturnValue = 1; -inline void setCameraParameters_grpc0Response::clear_xpcfgrpcreturnvalue() { +// bytes cameraParams = 1; +inline void getCameraParametersResponse::clear_cameraparams() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.cameraparams_.ClearToEmpty(); +} +inline const std::string& getCameraParametersResponse::cameraparams() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersResponse.cameraParams) + return _internal_cameraparams(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getCameraParametersResponse::set_cameraparams(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.cameraparams_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersResponse.cameraParams) +} +inline std::string* getCameraParametersResponse::mutable_cameraparams() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparams(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersResponse.cameraParams) + return _s; +} +inline const std::string& getCameraParametersResponse::_internal_cameraparams() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.cameraparams_.Get(); +} +inline void getCameraParametersResponse::_internal_set_cameraparams(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.cameraparams_.Set(value, GetArena()); +} +inline std::string* getCameraParametersResponse::_internal_mutable_cameraparams() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.cameraparams_.Mutable( GetArena()); +} +inline std::string* getCameraParametersResponse::release_cameraparams() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersResponse.cameraParams) + return _impl_.cameraparams_.Release(); +} +inline void getCameraParametersResponse::set_allocated_cameraparams(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.cameraparams_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.cameraparams_.IsDefault()) { + _impl_.cameraparams_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersResponse.cameraParams) +} + +// sint32 xpcfGrpcReturnValue = 2; +inline void getCameraParametersResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t setCameraParameters_grpc0Response::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Response.xpcfGrpcReturnValue) +inline ::int32_t getCameraParametersResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void setCameraParameters_grpc0Response::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getCameraParametersResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Response.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersResponse.xpcfGrpcReturnValue) } -inline ::int32_t setCameraParameters_grpc0Response::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getCameraParametersResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void setCameraParameters_grpc0Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getCameraParametersResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// setCameraParameters_grpc1Request +// imageProcessRequestRequest // int32 grpcServerCompressionFormat = 1; -inline void setCameraParameters_grpc1Request::clear_grpcservercompressionformat() { +inline void imageProcessRequestRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t setCameraParameters_grpc1Request::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.grpcServerCompressionFormat) +inline ::int32_t imageProcessRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void setCameraParameters_grpc1Request::set_grpcservercompressionformat(::int32_t value) { +inline void imageProcessRequestRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.grpcServerCompressionFormat) } -inline ::int32_t setCameraParameters_grpc1Request::_internal_grpcservercompressionformat() const { +inline ::int32_t imageProcessRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void setCameraParameters_grpc1Request::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void imageProcessRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void setCameraParameters_grpc1Request::clear_accesstoken() { +inline void imageProcessRequestRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& setCameraParameters_grpc1Request::accesstoken() const +inline const std::string& imageProcessRequestRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.accessToken) } -inline std::string* setCameraParameters_grpc1Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* imageProcessRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.accessToken) return _s; } -inline const std::string& setCameraParameters_grpc1Request::_internal_accesstoken() const { +inline const std::string& imageProcessRequestRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void setCameraParameters_grpc1Request::_internal_set_accesstoken(const std::string& value) { +inline void imageProcessRequestRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* setCameraParameters_grpc1Request::_internal_mutable_accesstoken() { +inline std::string* imageProcessRequestRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* setCameraParameters_grpc1Request::release_accesstoken() { +inline std::string* imageProcessRequestRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void setCameraParameters_grpc1Request::set_allocated_accesstoken(std::string* value) { +inline void imageProcessRequestRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -14060,49 +15638,49 @@ inline void setCameraParameters_grpc1Request::set_allocated_accesstoken(std::str _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.accessToken) } // string clientUUID = 3; -inline void setCameraParameters_grpc1Request::clear_clientuuid() { +inline void imageProcessRequestRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& setCameraParameters_grpc1Request::clientuuid() const +inline const std::string& imageProcessRequestRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) } -inline std::string* setCameraParameters_grpc1Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* imageProcessRequestRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) return _s; } -inline const std::string& setCameraParameters_grpc1Request::_internal_clientuuid() const { +inline const std::string& imageProcessRequestRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void setCameraParameters_grpc1Request::_internal_set_clientuuid(const std::string& value) { +inline void imageProcessRequestRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* setCameraParameters_grpc1Request::_internal_mutable_clientuuid() { +inline std::string* imageProcessRequestRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* setCameraParameters_grpc1Request::release_clientuuid() { +inline std::string* imageProcessRequestRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void setCameraParameters_grpc1Request::set_allocated_clientuuid(std::string* value) { +inline void imageProcessRequestRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -14110,705 +15688,711 @@ inline void setCameraParameters_grpc1Request::set_allocated_clientuuid(std::stri _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) } -// bytes cameraParams1 = 4; -inline void setCameraParameters_grpc1Request::clear_cameraparams1() { +// bytes images = 4; +inline void imageProcessRequestRequest::clear_images() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams1_.ClearToEmpty(); + _impl_.images_.ClearToEmpty(); } -inline const std::string& setCameraParameters_grpc1Request::cameraparams1() const +inline const std::string& imageProcessRequestRequest::images() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) - return _internal_cameraparams1(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.images) + return _internal_images(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::set_cameraparams1(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_images(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams1_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) + _impl_.images_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.images) } -inline std::string* setCameraParameters_grpc1Request::mutable_cameraparams1() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_cameraparams1(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) +inline std::string* imageProcessRequestRequest::mutable_images() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_images(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.images) return _s; } -inline const std::string& setCameraParameters_grpc1Request::_internal_cameraparams1() const { +inline const std::string& imageProcessRequestRequest::_internal_images() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparams1_.Get(); + return _impl_.images_.Get(); } -inline void setCameraParameters_grpc1Request::_internal_set_cameraparams1(const std::string& value) { +inline void imageProcessRequestRequest::_internal_set_images(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams1_.Set(value, GetArena()); + _impl_.images_.Set(value, GetArena()); } -inline std::string* setCameraParameters_grpc1Request::_internal_mutable_cameraparams1() { +inline std::string* imageProcessRequestRequest::_internal_mutable_images() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparams1_.Mutable( GetArena()); + return _impl_.images_.Mutable( GetArena()); } -inline std::string* setCameraParameters_grpc1Request::release_cameraparams1() { +inline std::string* imageProcessRequestRequest::release_images() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) - return _impl_.cameraparams1_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.images) + return _impl_.images_.Release(); } -inline void setCameraParameters_grpc1Request::set_allocated_cameraparams1(std::string* value) { +inline void imageProcessRequestRequest::set_allocated_images(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams1_.SetAllocated(value, GetArena()); + _impl_.images_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparams1_.IsDefault()) { - _impl_.cameraparams1_.Set("", GetArena()); + if (_impl_.images_.IsDefault()) { + _impl_.images_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.images) } -// bytes cameraParams2 = 5; -inline void setCameraParameters_grpc1Request::clear_cameraparams2() { +// bytes poses = 5; +inline void imageProcessRequestRequest::clear_poses() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams2_.ClearToEmpty(); + _impl_.poses_.ClearToEmpty(); } -inline const std::string& setCameraParameters_grpc1Request::cameraparams2() const +inline const std::string& imageProcessRequestRequest::poses() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) - return _internal_cameraparams2(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.poses) + return _internal_poses(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::set_cameraparams2(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_poses(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams2_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) + _impl_.poses_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.poses) } -inline std::string* setCameraParameters_grpc1Request::mutable_cameraparams2() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_cameraparams2(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) +inline std::string* imageProcessRequestRequest::mutable_poses() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_poses(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.poses) return _s; } -inline const std::string& setCameraParameters_grpc1Request::_internal_cameraparams2() const { +inline const std::string& imageProcessRequestRequest::_internal_poses() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparams2_.Get(); + return _impl_.poses_.Get(); } -inline void setCameraParameters_grpc1Request::_internal_set_cameraparams2(const std::string& value) { +inline void imageProcessRequestRequest::_internal_set_poses(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams2_.Set(value, GetArena()); + _impl_.poses_.Set(value, GetArena()); } -inline std::string* setCameraParameters_grpc1Request::_internal_mutable_cameraparams2() { +inline std::string* imageProcessRequestRequest::_internal_mutable_poses() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparams2_.Mutable( GetArena()); + return _impl_.poses_.Mutable( GetArena()); } -inline std::string* setCameraParameters_grpc1Request::release_cameraparams2() { +inline std::string* imageProcessRequestRequest::release_poses() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) - return _impl_.cameraparams2_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.poses) + return _impl_.poses_.Release(); } -inline void setCameraParameters_grpc1Request::set_allocated_cameraparams2(std::string* value) { +inline void imageProcessRequestRequest::set_allocated_poses(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams2_.SetAllocated(value, GetArena()); + _impl_.poses_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparams2_.IsDefault()) { - _impl_.cameraparams2_.Set("", GetArena()); + if (_impl_.poses_.IsDefault()) { + _impl_.poses_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) -} - -// ------------------------------------------------------------------- - -// setCameraParameters_grpc1Response - -// sint32 xpcfGrpcReturnValue = 1; -inline void setCameraParameters_grpc1Response::clear_xpcfgrpcreturnvalue() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; -} -inline ::int32_t setCameraParameters_grpc1Response::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Response.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); -} -inline void setCameraParameters_grpc1Response::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Response.xpcfGrpcReturnValue) -} -inline ::int32_t setCameraParameters_grpc1Response::_internal_xpcfgrpcreturnvalue() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; -} -inline void setCameraParameters_grpc1Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.poses) } -// ------------------------------------------------------------------- - -// setRectificationParametersRequest - -// int32 grpcServerCompressionFormat = 1; -inline void setRectificationParametersRequest::clear_grpcservercompressionformat() { +// bool fixedPose = 6; +inline void imageProcessRequestRequest::clear_fixedpose() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + _impl_.fixedpose_ = false; } -inline ::int32_t setRectificationParametersRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline bool imageProcessRequestRequest::fixedpose() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.fixedPose) + return _internal_fixedpose(); } -inline void setRectificationParametersRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.grpcServerCompressionFormat) +inline void imageProcessRequestRequest::set_fixedpose(bool value) { + _internal_set_fixedpose(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.fixedPose) } -inline ::int32_t setRectificationParametersRequest::_internal_grpcservercompressionformat() const { +inline bool imageProcessRequestRequest::_internal_fixedpose() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.fixedpose_; } -inline void setRectificationParametersRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void imageProcessRequestRequest::_internal_set_fixedpose(bool value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.fixedpose_ = value; } -// string accessToken = 2; -inline void setRectificationParametersRequest::clear_accesstoken() { +// bytes worldTransform = 7; +inline void imageProcessRequestRequest::clear_worldtransform() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); + _impl_.worldtransform_.ClearToEmpty(); } -inline const std::string& setRectificationParametersRequest::accesstoken() const +inline const std::string& imageProcessRequestRequest::worldtransform() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) + return _internal_worldtransform(); } template -inline PROTOBUF_ALWAYS_INLINE void setRectificationParametersRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_worldtransform(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.accessToken) + _impl_.worldtransform_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) } -inline std::string* setRectificationParametersRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setRectificationParametersRequest.accessToken) +inline std::string* imageProcessRequestRequest::mutable_worldtransform() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_worldtransform(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) return _s; } -inline const std::string& setRectificationParametersRequest::_internal_accesstoken() const { +inline const std::string& imageProcessRequestRequest::_internal_worldtransform() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.worldtransform_.Get(); } -inline void setRectificationParametersRequest::_internal_set_accesstoken(const std::string& value) { +inline void imageProcessRequestRequest::_internal_set_worldtransform(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.worldtransform_.Set(value, GetArena()); } -inline std::string* setRectificationParametersRequest::_internal_mutable_accesstoken() { +inline std::string* imageProcessRequestRequest::_internal_mutable_worldtransform() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.worldtransform_.Mutable( GetArena()); } -inline std::string* setRectificationParametersRequest::release_accesstoken() { +inline std::string* imageProcessRequestRequest::release_worldtransform() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) + return _impl_.worldtransform_.Release(); } -inline void setRectificationParametersRequest::set_allocated_accesstoken(std::string* value) { +inline void imageProcessRequestRequest::set_allocated_worldtransform(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.worldtransform_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.worldtransform_.IsDefault()) { + _impl_.worldtransform_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setRectificationParametersRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) } -// string clientUUID = 3; -inline void setRectificationParametersRequest::clear_clientuuid() { +// bytes timestamp = 8; +inline void imageProcessRequestRequest::clear_timestamp() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.timestamp_.ClearToEmpty(); } -inline const std::string& setRectificationParametersRequest::clientuuid() const +inline const std::string& imageProcessRequestRequest::timestamp() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.timestamp) + return _internal_timestamp(); } template -inline PROTOBUF_ALWAYS_INLINE void setRectificationParametersRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_timestamp(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) + _impl_.timestamp_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.timestamp) } -inline std::string* setRectificationParametersRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) +inline std::string* imageProcessRequestRequest::mutable_timestamp() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_timestamp(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.timestamp) return _s; } -inline const std::string& setRectificationParametersRequest::_internal_clientuuid() const { +inline const std::string& imageProcessRequestRequest::_internal_timestamp() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuid_.Get(); + return _impl_.timestamp_.Get(); } -inline void setRectificationParametersRequest::_internal_set_clientuuid(const std::string& value) { +inline void imageProcessRequestRequest::_internal_set_timestamp(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(value, GetArena()); + _impl_.timestamp_.Set(value, GetArena()); } -inline std::string* setRectificationParametersRequest::_internal_mutable_clientuuid() { +inline std::string* imageProcessRequestRequest::_internal_mutable_timestamp() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuid_.Mutable( GetArena()); + return _impl_.timestamp_.Mutable( GetArena()); } -inline std::string* setRectificationParametersRequest::release_clientuuid() { +inline std::string* imageProcessRequestRequest::release_timestamp() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.timestamp) + return _impl_.timestamp_.Release(); } -inline void setRectificationParametersRequest::set_allocated_clientuuid(std::string* value) { +inline void imageProcessRequestRequest::set_allocated_timestamp(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.SetAllocated(value, GetArena()); + _impl_.timestamp_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuid_.IsDefault()) { - _impl_.clientuuid_.Set("", GetArena()); + if (_impl_.timestamp_.IsDefault()) { + _impl_.timestamp_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.timestamp) } -// bytes rectCam1 = 4; -inline void setRectificationParametersRequest::clear_rectcam1() { +// sint32 transform3DStatus = 9; +inline void imageProcessRequestRequest::clear_transform3dstatus() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rectcam1_.ClearToEmpty(); + _impl_.transform3dstatus_ = 0; } -inline const std::string& setRectificationParametersRequest::rectcam1() const +inline ::int32_t imageProcessRequestRequest::transform3dstatus() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.transform3DStatus) + return _internal_transform3dstatus(); +} +inline void imageProcessRequestRequest::set_transform3dstatus(::int32_t value) { + _internal_set_transform3dstatus(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.transform3DStatus) +} +inline ::int32_t imageProcessRequestRequest::_internal_transform3dstatus() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.transform3dstatus_; +} +inline void imageProcessRequestRequest::_internal_set_transform3dstatus(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.transform3dstatus_ = value; +} + +// bytes transform3D = 10; +inline void imageProcessRequestRequest::clear_transform3d() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.transform3d_.ClearToEmpty(); +} +inline const std::string& imageProcessRequestRequest::transform3d() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) - return _internal_rectcam1(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.transform3D) + return _internal_transform3d(); } template -inline PROTOBUF_ALWAYS_INLINE void setRectificationParametersRequest::set_rectcam1(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_transform3d(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rectcam1_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) + _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.transform3D) } -inline std::string* setRectificationParametersRequest::mutable_rectcam1() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_rectcam1(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) +inline std::string* imageProcessRequestRequest::mutable_transform3d() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_transform3d(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.transform3D) return _s; } -inline const std::string& setRectificationParametersRequest::_internal_rectcam1() const { +inline const std::string& imageProcessRequestRequest::_internal_transform3d() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.rectcam1_.Get(); + return _impl_.transform3d_.Get(); } -inline void setRectificationParametersRequest::_internal_set_rectcam1(const std::string& value) { +inline void imageProcessRequestRequest::_internal_set_transform3d(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rectcam1_.Set(value, GetArena()); + _impl_.transform3d_.Set(value, GetArena()); } -inline std::string* setRectificationParametersRequest::_internal_mutable_rectcam1() { +inline std::string* imageProcessRequestRequest::_internal_mutable_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.rectcam1_.Mutable( GetArena()); + return _impl_.transform3d_.Mutable( GetArena()); } -inline std::string* setRectificationParametersRequest::release_rectcam1() { +inline std::string* imageProcessRequestRequest::release_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) - return _impl_.rectcam1_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.transform3D) + return _impl_.transform3d_.Release(); } -inline void setRectificationParametersRequest::set_allocated_rectcam1(std::string* value) { +inline void imageProcessRequestRequest::set_allocated_transform3d(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rectcam1_.SetAllocated(value, GetArena()); + _impl_.transform3d_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.rectcam1_.IsDefault()) { - _impl_.rectcam1_.Set("", GetArena()); + if (_impl_.transform3d_.IsDefault()) { + _impl_.transform3d_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.transform3D) } -// bytes rectCam2 = 5; -inline void setRectificationParametersRequest::clear_rectcam2() { +// bytes confidence = 11; +inline void imageProcessRequestRequest::clear_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rectcam2_.ClearToEmpty(); + _impl_.confidence_.ClearToEmpty(); } -inline const std::string& setRectificationParametersRequest::rectcam2() const +inline const std::string& imageProcessRequestRequest::confidence() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) - return _internal_rectcam2(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.confidence) + return _internal_confidence(); } template -inline PROTOBUF_ALWAYS_INLINE void setRectificationParametersRequest::set_rectcam2(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_confidence(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rectcam2_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) + _impl_.confidence_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.confidence) } -inline std::string* setRectificationParametersRequest::mutable_rectcam2() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_rectcam2(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) +inline std::string* imageProcessRequestRequest::mutable_confidence() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_confidence(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.confidence) return _s; } -inline const std::string& setRectificationParametersRequest::_internal_rectcam2() const { +inline const std::string& imageProcessRequestRequest::_internal_confidence() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.rectcam2_.Get(); + return _impl_.confidence_.Get(); } -inline void setRectificationParametersRequest::_internal_set_rectcam2(const std::string& value) { +inline void imageProcessRequestRequest::_internal_set_confidence(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rectcam2_.Set(value, GetArena()); + _impl_.confidence_.Set(value, GetArena()); } -inline std::string* setRectificationParametersRequest::_internal_mutable_rectcam2() { +inline std::string* imageProcessRequestRequest::_internal_mutable_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.rectcam2_.Mutable( GetArena()); + return _impl_.confidence_.Mutable( GetArena()); } -inline std::string* setRectificationParametersRequest::release_rectcam2() { +inline std::string* imageProcessRequestRequest::release_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) - return _impl_.rectcam2_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.confidence) + return _impl_.confidence_.Release(); } -inline void setRectificationParametersRequest::set_allocated_rectcam2(std::string* value) { +inline void imageProcessRequestRequest::set_allocated_confidence(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rectcam2_.SetAllocated(value, GetArena()); + _impl_.confidence_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.rectcam2_.IsDefault()) { - _impl_.rectcam2_.Set("", GetArena()); + if (_impl_.confidence_.IsDefault()) { + _impl_.confidence_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) -} - -// ------------------------------------------------------------------- - -// setRectificationParametersResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void setRectificationParametersResponse::clear_xpcfgrpcreturnvalue() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; -} -inline ::int32_t setRectificationParametersResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); -} -inline void setRectificationParametersResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersResponse.xpcfGrpcReturnValue) -} -inline ::int32_t setRectificationParametersResponse::_internal_xpcfgrpcreturnvalue() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; -} -inline void setRectificationParametersResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.confidence) } -// ------------------------------------------------------------------- - -// getCameraParametersRequest - -// int32 grpcServerCompressionFormat = 1; -inline void getCameraParametersRequest::clear_grpcservercompressionformat() { +// sint32 mappingStatus = 12; +inline void imageProcessRequestRequest::clear_mappingstatus() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + _impl_.mappingstatus_ = 0; } -inline ::int32_t getCameraParametersRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline ::int32_t imageProcessRequestRequest::mappingstatus() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.mappingStatus) + return _internal_mappingstatus(); } -inline void getCameraParametersRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.grpcServerCompressionFormat) +inline void imageProcessRequestRequest::set_mappingstatus(::int32_t value) { + _internal_set_mappingstatus(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.mappingStatus) } -inline ::int32_t getCameraParametersRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t imageProcessRequestRequest::_internal_mappingstatus() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.mappingstatus_; } -inline void getCameraParametersRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void imageProcessRequestRequest::_internal_set_mappingstatus(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.mappingstatus_ = value; } -// string accessToken = 2; -inline void getCameraParametersRequest::clear_accesstoken() { +// bytes detectedObjects = 13; +inline void imageProcessRequestRequest::clear_detectedobjects() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); + _impl_.detectedobjects_.ClearToEmpty(); } -inline const std::string& getCameraParametersRequest::accesstoken() const +inline const std::string& imageProcessRequestRequest::detectedobjects() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) + return _internal_detectedobjects(); } template -inline PROTOBUF_ALWAYS_INLINE void getCameraParametersRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_detectedobjects(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.accessToken) + _impl_.detectedobjects_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) } -inline std::string* getCameraParametersRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersRequest.accessToken) +inline std::string* imageProcessRequestRequest::mutable_detectedobjects() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_detectedobjects(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) return _s; } -inline const std::string& getCameraParametersRequest::_internal_accesstoken() const { +inline const std::string& imageProcessRequestRequest::_internal_detectedobjects() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.detectedobjects_.Get(); } -inline void getCameraParametersRequest::_internal_set_accesstoken(const std::string& value) { +inline void imageProcessRequestRequest::_internal_set_detectedobjects(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.detectedobjects_.Set(value, GetArena()); } -inline std::string* getCameraParametersRequest::_internal_mutable_accesstoken() { +inline std::string* imageProcessRequestRequest::_internal_mutable_detectedobjects() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.detectedobjects_.Mutable( GetArena()); } -inline std::string* getCameraParametersRequest::release_accesstoken() { +inline std::string* imageProcessRequestRequest::release_detectedobjects() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) + return _impl_.detectedobjects_.Release(); } -inline void getCameraParametersRequest::set_allocated_accesstoken(std::string* value) { +inline void imageProcessRequestRequest::set_allocated_detectedobjects(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.detectedobjects_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.detectedobjects_.IsDefault()) { + _impl_.detectedobjects_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) } -// string clientUUID = 3; -inline void getCameraParametersRequest::clear_clientuuid() { +// ------------------------------------------------------------------- + +// imageProcessRequestResponse + +// sint32 transform3DStatus = 1; +inline void imageProcessRequestResponse::clear_transform3dstatus() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.transform3dstatus_ = 0; } -inline const std::string& getCameraParametersRequest::clientuuid() const +inline ::int32_t imageProcessRequestResponse::transform3dstatus() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.transform3DStatus) + return _internal_transform3dstatus(); +} +inline void imageProcessRequestResponse::set_transform3dstatus(::int32_t value) { + _internal_set_transform3dstatus(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.transform3DStatus) +} +inline ::int32_t imageProcessRequestResponse::_internal_transform3dstatus() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.transform3dstatus_; +} +inline void imageProcessRequestResponse::_internal_set_transform3dstatus(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.transform3dstatus_ = value; +} + +// bytes transform3D = 2; +inline void imageProcessRequestResponse::clear_transform3d() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.transform3d_.ClearToEmpty(); +} +inline const std::string& imageProcessRequestResponse::transform3d() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.transform3D) + return _internal_transform3d(); } template -inline PROTOBUF_ALWAYS_INLINE void getCameraParametersRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestResponse::set_transform3d(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.clientUUID) + _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.transform3D) } -inline std::string* getCameraParametersRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersRequest.clientUUID) +inline std::string* imageProcessRequestResponse::mutable_transform3d() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_transform3d(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestResponse.transform3D) return _s; } -inline const std::string& getCameraParametersRequest::_internal_clientuuid() const { +inline const std::string& imageProcessRequestResponse::_internal_transform3d() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuid_.Get(); + return _impl_.transform3d_.Get(); } -inline void getCameraParametersRequest::_internal_set_clientuuid(const std::string& value) { +inline void imageProcessRequestResponse::_internal_set_transform3d(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(value, GetArena()); + _impl_.transform3d_.Set(value, GetArena()); } -inline std::string* getCameraParametersRequest::_internal_mutable_clientuuid() { +inline std::string* imageProcessRequestResponse::_internal_mutable_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuid_.Mutable( GetArena()); + return _impl_.transform3d_.Mutable( GetArena()); } -inline std::string* getCameraParametersRequest::release_clientuuid() { +inline std::string* imageProcessRequestResponse::release_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestResponse.transform3D) + return _impl_.transform3d_.Release(); } -inline void getCameraParametersRequest::set_allocated_clientuuid(std::string* value) { +inline void imageProcessRequestResponse::set_allocated_transform3d(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.SetAllocated(value, GetArena()); + _impl_.transform3d_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuid_.IsDefault()) { - _impl_.clientuuid_.Set("", GetArena()); + if (_impl_.transform3d_.IsDefault()) { + _impl_.transform3d_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestResponse.transform3D) } -// bytes cameraParams = 4; -inline void getCameraParametersRequest::clear_cameraparams() { +// bytes confidence = 3; +inline void imageProcessRequestResponse::clear_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.ClearToEmpty(); + _impl_.confidence_.ClearToEmpty(); } -inline const std::string& getCameraParametersRequest::cameraparams() const +inline const std::string& imageProcessRequestResponse::confidence() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.cameraParams) - return _internal_cameraparams(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.confidence) + return _internal_confidence(); } template -inline PROTOBUF_ALWAYS_INLINE void getCameraParametersRequest::set_cameraparams(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestResponse::set_confidence(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.cameraParams) + _impl_.confidence_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.confidence) } -inline std::string* getCameraParametersRequest::mutable_cameraparams() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_cameraparams(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersRequest.cameraParams) +inline std::string* imageProcessRequestResponse::mutable_confidence() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_confidence(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestResponse.confidence) return _s; } -inline const std::string& getCameraParametersRequest::_internal_cameraparams() const { +inline const std::string& imageProcessRequestResponse::_internal_confidence() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparams_.Get(); + return _impl_.confidence_.Get(); } -inline void getCameraParametersRequest::_internal_set_cameraparams(const std::string& value) { +inline void imageProcessRequestResponse::_internal_set_confidence(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.Set(value, GetArena()); + _impl_.confidence_.Set(value, GetArena()); } -inline std::string* getCameraParametersRequest::_internal_mutable_cameraparams() { +inline std::string* imageProcessRequestResponse::_internal_mutable_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparams_.Mutable( GetArena()); + return _impl_.confidence_.Mutable( GetArena()); } -inline std::string* getCameraParametersRequest::release_cameraparams() { +inline std::string* imageProcessRequestResponse::release_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.cameraParams) - return _impl_.cameraparams_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestResponse.confidence) + return _impl_.confidence_.Release(); } -inline void getCameraParametersRequest::set_allocated_cameraparams(std::string* value) { +inline void imageProcessRequestResponse::set_allocated_confidence(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.SetAllocated(value, GetArena()); + _impl_.confidence_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparams_.IsDefault()) { - _impl_.cameraparams_.Set("", GetArena()); + if (_impl_.confidence_.IsDefault()) { + _impl_.confidence_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersRequest.cameraParams) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestResponse.confidence) } -// ------------------------------------------------------------------- - -// getCameraParametersResponse +// sint32 mappingStatus = 4; +inline void imageProcessRequestResponse::clear_mappingstatus() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mappingstatus_ = 0; +} +inline ::int32_t imageProcessRequestResponse::mappingstatus() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.mappingStatus) + return _internal_mappingstatus(); +} +inline void imageProcessRequestResponse::set_mappingstatus(::int32_t value) { + _internal_set_mappingstatus(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.mappingStatus) +} +inline ::int32_t imageProcessRequestResponse::_internal_mappingstatus() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mappingstatus_; +} +inline void imageProcessRequestResponse::_internal_set_mappingstatus(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mappingstatus_ = value; +} -// bytes cameraParams = 1; -inline void getCameraParametersResponse::clear_cameraparams() { +// bytes detectedObjects = 5; +inline void imageProcessRequestResponse::clear_detectedobjects() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.ClearToEmpty(); + _impl_.detectedobjects_.ClearToEmpty(); } -inline const std::string& getCameraParametersResponse::cameraparams() const +inline const std::string& imageProcessRequestResponse::detectedobjects() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersResponse.cameraParams) - return _internal_cameraparams(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) + return _internal_detectedobjects(); } template -inline PROTOBUF_ALWAYS_INLINE void getCameraParametersResponse::set_cameraparams(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestResponse::set_detectedobjects(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersResponse.cameraParams) + _impl_.detectedobjects_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) } -inline std::string* getCameraParametersResponse::mutable_cameraparams() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_cameraparams(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersResponse.cameraParams) +inline std::string* imageProcessRequestResponse::mutable_detectedobjects() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_detectedobjects(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) return _s; } -inline const std::string& getCameraParametersResponse::_internal_cameraparams() const { +inline const std::string& imageProcessRequestResponse::_internal_detectedobjects() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparams_.Get(); + return _impl_.detectedobjects_.Get(); } -inline void getCameraParametersResponse::_internal_set_cameraparams(const std::string& value) { +inline void imageProcessRequestResponse::_internal_set_detectedobjects(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.Set(value, GetArena()); + _impl_.detectedobjects_.Set(value, GetArena()); } -inline std::string* getCameraParametersResponse::_internal_mutable_cameraparams() { +inline std::string* imageProcessRequestResponse::_internal_mutable_detectedobjects() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparams_.Mutable( GetArena()); + return _impl_.detectedobjects_.Mutable( GetArena()); } -inline std::string* getCameraParametersResponse::release_cameraparams() { +inline std::string* imageProcessRequestResponse::release_detectedobjects() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersResponse.cameraParams) - return _impl_.cameraparams_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) + return _impl_.detectedobjects_.Release(); } -inline void getCameraParametersResponse::set_allocated_cameraparams(std::string* value) { +inline void imageProcessRequestResponse::set_allocated_detectedobjects(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.SetAllocated(value, GetArena()); + _impl_.detectedobjects_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparams_.IsDefault()) { - _impl_.cameraparams_.Set("", GetArena()); + if (_impl_.detectedobjects_.IsDefault()) { + _impl_.detectedobjects_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersResponse.cameraParams) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getCameraParametersResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 6; +inline void imageProcessRequestResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getCameraParametersResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersResponse.xpcfGrpcReturnValue) +inline ::int32_t imageProcessRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getCameraParametersResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void imageProcessRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t getCameraParametersResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t imageProcessRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getCameraParametersResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void imageProcessRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// imageProcessRequestRequest +// getMappingDataRequestRequest // int32 grpcServerCompressionFormat = 1; -inline void imageProcessRequestRequest::clear_grpcservercompressionformat() { +inline void getMappingDataRequestRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t imageProcessRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.grpcServerCompressionFormat) +inline ::int32_t getMappingDataRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void imageProcessRequestRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getMappingDataRequestRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.grpcServerCompressionFormat) } -inline ::int32_t imageProcessRequestRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getMappingDataRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void imageProcessRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getMappingDataRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void imageProcessRequestRequest::clear_accesstoken() { +inline void getMappingDataRequestRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::accesstoken() const +inline const std::string& getMappingDataRequestRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) } -inline std::string* imageProcessRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getMappingDataRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) return _s; } -inline const std::string& imageProcessRequestRequest::_internal_accesstoken() const { +inline const std::string& getMappingDataRequestRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void imageProcessRequestRequest::_internal_set_accesstoken(const std::string& value) { +inline void getMappingDataRequestRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_accesstoken() { +inline std::string* getMappingDataRequestRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_accesstoken() { +inline std::string* getMappingDataRequestRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void imageProcessRequestRequest::set_allocated_accesstoken(std::string* value) { +inline void getMappingDataRequestRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -14816,49 +16400,49 @@ inline void imageProcessRequestRequest::set_allocated_accesstoken(std::string* v _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) } // string clientUUID = 3; -inline void imageProcessRequestRequest::clear_clientuuid() { +inline void getMappingDataRequestRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::clientuuid() const +inline const std::string& getMappingDataRequestRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) } -inline std::string* imageProcessRequestRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getMappingDataRequestRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) return _s; } -inline const std::string& imageProcessRequestRequest::_internal_clientuuid() const { +inline const std::string& getMappingDataRequestRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void imageProcessRequestRequest::_internal_set_clientuuid(const std::string& value) { +inline void getMappingDataRequestRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_clientuuid() { +inline std::string* getMappingDataRequestRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_clientuuid() { +inline std::string* getMappingDataRequestRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void imageProcessRequestRequest::set_allocated_clientuuid(std::string* value) { +inline void getMappingDataRequestRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -14866,1063 +16450,819 @@ inline void imageProcessRequestRequest::set_allocated_clientuuid(std::string* va _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) -} - -// bytes images = 4; -inline void imageProcessRequestRequest::clear_images() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.images_.ClearToEmpty(); -} -inline const std::string& imageProcessRequestRequest::images() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.images) - return _internal_images(); -} -template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_images(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.images_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.images) -} -inline std::string* imageProcessRequestRequest::mutable_images() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_images(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.images) - return _s; -} -inline const std::string& imageProcessRequestRequest::_internal_images() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.images_.Get(); -} -inline void imageProcessRequestRequest::_internal_set_images(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.images_.Set(value, GetArena()); -} -inline std::string* imageProcessRequestRequest::_internal_mutable_images() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.images_.Mutable( GetArena()); -} -inline std::string* imageProcessRequestRequest::release_images() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.images) - return _impl_.images_.Release(); -} -inline void imageProcessRequestRequest::set_allocated_images(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.images_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.images_.IsDefault()) { - _impl_.images_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.images) -} - -// bytes poses = 5; -inline void imageProcessRequestRequest::clear_poses() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.poses_.ClearToEmpty(); -} -inline const std::string& imageProcessRequestRequest::poses() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.poses) - return _internal_poses(); -} -template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_poses(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.poses_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.poses) -} -inline std::string* imageProcessRequestRequest::mutable_poses() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_poses(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.poses) - return _s; -} -inline const std::string& imageProcessRequestRequest::_internal_poses() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.poses_.Get(); -} -inline void imageProcessRequestRequest::_internal_set_poses(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.poses_.Set(value, GetArena()); -} -inline std::string* imageProcessRequestRequest::_internal_mutable_poses() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.poses_.Mutable( GetArena()); -} -inline std::string* imageProcessRequestRequest::release_poses() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.poses) - return _impl_.poses_.Release(); -} -inline void imageProcessRequestRequest::set_allocated_poses(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.poses_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.poses_.IsDefault()) { - _impl_.poses_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.poses) -} - -// bool fixedPose = 6; -inline void imageProcessRequestRequest::clear_fixedpose() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.fixedpose_ = false; -} -inline bool imageProcessRequestRequest::fixedpose() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.fixedPose) - return _internal_fixedpose(); -} -inline void imageProcessRequestRequest::set_fixedpose(bool value) { - _internal_set_fixedpose(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.fixedPose) -} -inline bool imageProcessRequestRequest::_internal_fixedpose() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.fixedpose_; -} -inline void imageProcessRequestRequest::_internal_set_fixedpose(bool value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.fixedpose_ = value; -} - -// bytes worldTransform = 7; -inline void imageProcessRequestRequest::clear_worldtransform() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldtransform_.ClearToEmpty(); -} -inline const std::string& imageProcessRequestRequest::worldtransform() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) - return _internal_worldtransform(); -} -template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_worldtransform(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldtransform_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) -} -inline std::string* imageProcessRequestRequest::mutable_worldtransform() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_worldtransform(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) - return _s; -} -inline const std::string& imageProcessRequestRequest::_internal_worldtransform() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.worldtransform_.Get(); -} -inline void imageProcessRequestRequest::_internal_set_worldtransform(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldtransform_.Set(value, GetArena()); -} -inline std::string* imageProcessRequestRequest::_internal_mutable_worldtransform() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.worldtransform_.Mutable( GetArena()); -} -inline std::string* imageProcessRequestRequest::release_worldtransform() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) - return _impl_.worldtransform_.Release(); -} -inline void imageProcessRequestRequest::set_allocated_worldtransform(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldtransform_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.worldtransform_.IsDefault()) { - _impl_.worldtransform_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) } -// bytes timestamp = 8; -inline void imageProcessRequestRequest::clear_timestamp() { +// bytes outputPointClouds = 4; +inline void getMappingDataRequestRequest::clear_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.timestamp_.ClearToEmpty(); + _impl_.outputpointclouds_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::timestamp() const +inline const std::string& getMappingDataRequestRequest::outputpointclouds() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.timestamp) - return _internal_timestamp(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) + return _internal_outputpointclouds(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_timestamp(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_outputpointclouds(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.timestamp_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.timestamp) + _impl_.outputpointclouds_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) } -inline std::string* imageProcessRequestRequest::mutable_timestamp() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_timestamp(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.timestamp) +inline std::string* getMappingDataRequestRequest::mutable_outputpointclouds() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_outputpointclouds(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) return _s; } -inline const std::string& imageProcessRequestRequest::_internal_timestamp() const { +inline const std::string& getMappingDataRequestRequest::_internal_outputpointclouds() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.timestamp_.Get(); + return _impl_.outputpointclouds_.Get(); } -inline void imageProcessRequestRequest::_internal_set_timestamp(const std::string& value) { +inline void getMappingDataRequestRequest::_internal_set_outputpointclouds(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.timestamp_.Set(value, GetArena()); + _impl_.outputpointclouds_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_timestamp() { +inline std::string* getMappingDataRequestRequest::_internal_mutable_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.timestamp_.Mutable( GetArena()); + return _impl_.outputpointclouds_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_timestamp() { +inline std::string* getMappingDataRequestRequest::release_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.timestamp) - return _impl_.timestamp_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) + return _impl_.outputpointclouds_.Release(); } -inline void imageProcessRequestRequest::set_allocated_timestamp(std::string* value) { +inline void getMappingDataRequestRequest::set_allocated_outputpointclouds(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.timestamp_.SetAllocated(value, GetArena()); + _impl_.outputpointclouds_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.timestamp_.IsDefault()) { - _impl_.timestamp_.Set("", GetArena()); + if (_impl_.outputpointclouds_.IsDefault()) { + _impl_.outputpointclouds_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.timestamp) -} - -// sint32 transform3DStatus = 9; -inline void imageProcessRequestRequest::clear_transform3dstatus() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = 0; -} -inline ::int32_t imageProcessRequestRequest::transform3dstatus() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.transform3DStatus) - return _internal_transform3dstatus(); -} -inline void imageProcessRequestRequest::set_transform3dstatus(::int32_t value) { - _internal_set_transform3dstatus(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.transform3DStatus) -} -inline ::int32_t imageProcessRequestRequest::_internal_transform3dstatus() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3dstatus_; -} -inline void imageProcessRequestRequest::_internal_set_transform3dstatus(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) } -// bytes transform3D = 10; -inline void imageProcessRequestRequest::clear_transform3d() { +// bytes keyframePoses = 5; +inline void getMappingDataRequestRequest::clear_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.ClearToEmpty(); + _impl_.keyframeposes_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::transform3d() const +inline const std::string& getMappingDataRequestRequest::keyframeposes() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.transform3D) - return _internal_transform3d(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) + return _internal_keyframeposes(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_transform3d(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_keyframeposes(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.transform3D) + _impl_.keyframeposes_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) } -inline std::string* imageProcessRequestRequest::mutable_transform3d() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_transform3d(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.transform3D) +inline std::string* getMappingDataRequestRequest::mutable_keyframeposes() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_keyframeposes(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) return _s; } -inline const std::string& imageProcessRequestRequest::_internal_transform3d() const { +inline const std::string& getMappingDataRequestRequest::_internal_keyframeposes() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3d_.Get(); + return _impl_.keyframeposes_.Get(); } -inline void imageProcessRequestRequest::_internal_set_transform3d(const std::string& value) { +inline void getMappingDataRequestRequest::_internal_set_keyframeposes(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.Set(value, GetArena()); + _impl_.keyframeposes_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_transform3d() { +inline std::string* getMappingDataRequestRequest::_internal_mutable_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.transform3d_.Mutable( GetArena()); + return _impl_.keyframeposes_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_transform3d() { +inline std::string* getMappingDataRequestRequest::release_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.transform3D) - return _impl_.transform3d_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) + return _impl_.keyframeposes_.Release(); } -inline void imageProcessRequestRequest::set_allocated_transform3d(std::string* value) { +inline void getMappingDataRequestRequest::set_allocated_keyframeposes(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.SetAllocated(value, GetArena()); + _impl_.keyframeposes_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.transform3d_.IsDefault()) { - _impl_.transform3d_.Set("", GetArena()); + if (_impl_.keyframeposes_.IsDefault()) { + _impl_.keyframeposes_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.transform3D) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) } -// bytes confidence = 11; -inline void imageProcessRequestRequest::clear_confidence() { +// ------------------------------------------------------------------- + +// getMappingDataRequestResponse + +// bytes outputPointClouds = 1; +inline void getMappingDataRequestResponse::clear_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.ClearToEmpty(); + _impl_.outputpointclouds_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::confidence() const +inline const std::string& getMappingDataRequestResponse::outputpointclouds() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.confidence) - return _internal_confidence(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) + return _internal_outputpointclouds(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_confidence(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestResponse::set_outputpointclouds(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.confidence) + _impl_.outputpointclouds_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) } -inline std::string* imageProcessRequestRequest::mutable_confidence() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_confidence(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.confidence) +inline std::string* getMappingDataRequestResponse::mutable_outputpointclouds() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_outputpointclouds(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) return _s; } -inline const std::string& imageProcessRequestRequest::_internal_confidence() const { +inline const std::string& getMappingDataRequestResponse::_internal_outputpointclouds() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.confidence_.Get(); + return _impl_.outputpointclouds_.Get(); } -inline void imageProcessRequestRequest::_internal_set_confidence(const std::string& value) { +inline void getMappingDataRequestResponse::_internal_set_outputpointclouds(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.Set(value, GetArena()); + _impl_.outputpointclouds_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_confidence() { +inline std::string* getMappingDataRequestResponse::_internal_mutable_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.confidence_.Mutable( GetArena()); + return _impl_.outputpointclouds_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_confidence() { +inline std::string* getMappingDataRequestResponse::release_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.confidence) - return _impl_.confidence_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) + return _impl_.outputpointclouds_.Release(); } -inline void imageProcessRequestRequest::set_allocated_confidence(std::string* value) { +inline void getMappingDataRequestResponse::set_allocated_outputpointclouds(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.SetAllocated(value, GetArena()); + _impl_.outputpointclouds_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.confidence_.IsDefault()) { - _impl_.confidence_.Set("", GetArena()); + if (_impl_.outputpointclouds_.IsDefault()) { + _impl_.outputpointclouds_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.confidence) -} - -// sint32 mappingStatus = 12; -inline void imageProcessRequestRequest::clear_mappingstatus() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mappingstatus_ = 0; -} -inline ::int32_t imageProcessRequestRequest::mappingstatus() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.mappingStatus) - return _internal_mappingstatus(); -} -inline void imageProcessRequestRequest::set_mappingstatus(::int32_t value) { - _internal_set_mappingstatus(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.mappingStatus) -} -inline ::int32_t imageProcessRequestRequest::_internal_mappingstatus() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mappingstatus_; -} -inline void imageProcessRequestRequest::_internal_set_mappingstatus(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mappingstatus_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) } -// bytes detectedObjects = 13; -inline void imageProcessRequestRequest::clear_detectedobjects() { +// bytes keyframePoses = 2; +inline void getMappingDataRequestResponse::clear_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.ClearToEmpty(); + _impl_.keyframeposes_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::detectedobjects() const +inline const std::string& getMappingDataRequestResponse::keyframeposes() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) - return _internal_detectedobjects(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) + return _internal_keyframeposes(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_detectedobjects(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestResponse::set_keyframeposes(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) + _impl_.keyframeposes_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) } -inline std::string* imageProcessRequestRequest::mutable_detectedobjects() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_detectedobjects(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) +inline std::string* getMappingDataRequestResponse::mutable_keyframeposes() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_keyframeposes(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) return _s; } -inline const std::string& imageProcessRequestRequest::_internal_detectedobjects() const { +inline const std::string& getMappingDataRequestResponse::_internal_keyframeposes() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.detectedobjects_.Get(); + return _impl_.keyframeposes_.Get(); } -inline void imageProcessRequestRequest::_internal_set_detectedobjects(const std::string& value) { +inline void getMappingDataRequestResponse::_internal_set_keyframeposes(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.Set(value, GetArena()); + _impl_.keyframeposes_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_detectedobjects() { +inline std::string* getMappingDataRequestResponse::_internal_mutable_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.detectedobjects_.Mutable( GetArena()); + return _impl_.keyframeposes_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_detectedobjects() { +inline std::string* getMappingDataRequestResponse::release_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) - return _impl_.detectedobjects_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) + return _impl_.keyframeposes_.Release(); } -inline void imageProcessRequestRequest::set_allocated_detectedobjects(std::string* value) { +inline void getMappingDataRequestResponse::set_allocated_keyframeposes(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.SetAllocated(value, GetArena()); + _impl_.keyframeposes_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.detectedobjects_.IsDefault()) { - _impl_.detectedobjects_.Set("", GetArena()); + if (_impl_.keyframeposes_.IsDefault()) { + _impl_.keyframeposes_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) } -// ------------------------------------------------------------------- - -// imageProcessRequestResponse - -// sint32 transform3DStatus = 1; -inline void imageProcessRequestResponse::clear_transform3dstatus() { +// sint32 xpcfGrpcReturnValue = 3; +inline void getMappingDataRequestResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = 0; + _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t imageProcessRequestResponse::transform3dstatus() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.transform3DStatus) - return _internal_transform3dstatus(); +inline ::int32_t getMappingDataRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); } -inline void imageProcessRequestResponse::set_transform3dstatus(::int32_t value) { - _internal_set_transform3dstatus(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.transform3DStatus) +inline void getMappingDataRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t imageProcessRequestResponse::_internal_transform3dstatus() const { +inline ::int32_t getMappingDataRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3dstatus_; + return _impl_.xpcfgrpcreturnvalue_; } -inline void imageProcessRequestResponse::_internal_set_transform3dstatus(::int32_t value) { +inline void getMappingDataRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = value; + _impl_.xpcfgrpcreturnvalue_ = value; } -// bytes transform3D = 2; -inline void imageProcessRequestResponse::clear_transform3d() { +// ------------------------------------------------------------------- + +// getClientPoseRequest + +// int32 grpcServerCompressionFormat = 1; +inline void getClientPoseRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.ClearToEmpty(); -} -inline const std::string& imageProcessRequestResponse::transform3d() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.transform3D) - return _internal_transform3d(); + _impl_.grpcservercompressionformat_ = 0; } -template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestResponse::set_transform3d(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.transform3D) +inline ::int32_t getClientPoseRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); } -inline std::string* imageProcessRequestResponse::mutable_transform3d() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_transform3d(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestResponse.transform3D) - return _s; +inline void getClientPoseRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.grpcServerCompressionFormat) } -inline const std::string& imageProcessRequestResponse::_internal_transform3d() const { +inline ::int32_t getClientPoseRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3d_.Get(); -} -inline void imageProcessRequestResponse::_internal_set_transform3d(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.Set(value, GetArena()); -} -inline std::string* imageProcessRequestResponse::_internal_mutable_transform3d() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.transform3d_.Mutable( GetArena()); -} -inline std::string* imageProcessRequestResponse::release_transform3d() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestResponse.transform3D) - return _impl_.transform3d_.Release(); + return _impl_.grpcservercompressionformat_; } -inline void imageProcessRequestResponse::set_allocated_transform3d(std::string* value) { +inline void getClientPoseRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.transform3d_.IsDefault()) { - _impl_.transform3d_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestResponse.transform3D) + _impl_.grpcservercompressionformat_ = value; } -// bytes confidence = 3; -inline void imageProcessRequestResponse::clear_confidence() { +// string accessToken = 2; +inline void getClientPoseRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.ClearToEmpty(); + _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& imageProcessRequestResponse::confidence() const +inline const std::string& getClientPoseRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.confidence) - return _internal_confidence(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestResponse::set_confidence(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.confidence) + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.accessToken) } -inline std::string* imageProcessRequestResponse::mutable_confidence() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_confidence(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestResponse.confidence) +inline std::string* getClientPoseRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.accessToken) return _s; } -inline const std::string& imageProcessRequestResponse::_internal_confidence() const { +inline const std::string& getClientPoseRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.confidence_.Get(); + return _impl_.accesstoken_.Get(); } -inline void imageProcessRequestResponse::_internal_set_confidence(const std::string& value) { +inline void getClientPoseRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.Set(value, GetArena()); + _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* imageProcessRequestResponse::_internal_mutable_confidence() { +inline std::string* getClientPoseRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.confidence_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* imageProcessRequestResponse::release_confidence() { +inline std::string* getClientPoseRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestResponse.confidence) - return _impl_.confidence_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void imageProcessRequestResponse::set_allocated_confidence(std::string* value) { +inline void getClientPoseRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.SetAllocated(value, GetArena()); + _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.confidence_.IsDefault()) { - _impl_.confidence_.Set("", GetArena()); + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestResponse.confidence) -} - -// sint32 mappingStatus = 4; -inline void imageProcessRequestResponse::clear_mappingstatus() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mappingstatus_ = 0; -} -inline ::int32_t imageProcessRequestResponse::mappingstatus() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.mappingStatus) - return _internal_mappingstatus(); -} -inline void imageProcessRequestResponse::set_mappingstatus(::int32_t value) { - _internal_set_mappingstatus(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.mappingStatus) -} -inline ::int32_t imageProcessRequestResponse::_internal_mappingstatus() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mappingstatus_; -} -inline void imageProcessRequestResponse::_internal_set_mappingstatus(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mappingstatus_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.accessToken) } -// bytes detectedObjects = 5; -inline void imageProcessRequestResponse::clear_detectedobjects() { +// string clientUUID = 3; +inline void getClientPoseRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.ClearToEmpty(); + _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& imageProcessRequestResponse::detectedobjects() const +inline const std::string& getClientPoseRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) - return _internal_detectedobjects(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.clientUUID) + return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestResponse::set_detectedobjects(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_clientuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) + _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.clientUUID) } -inline std::string* imageProcessRequestResponse::mutable_detectedobjects() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_detectedobjects(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) +inline std::string* getClientPoseRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.clientUUID) return _s; } -inline const std::string& imageProcessRequestResponse::_internal_detectedobjects() const { +inline const std::string& getClientPoseRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.detectedobjects_.Get(); + return _impl_.clientuuid_.Get(); } -inline void imageProcessRequestResponse::_internal_set_detectedobjects(const std::string& value) { +inline void getClientPoseRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.Set(value, GetArena()); + _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* imageProcessRequestResponse::_internal_mutable_detectedobjects() { +inline std::string* getClientPoseRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.detectedobjects_.Mutable( GetArena()); + return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* imageProcessRequestResponse::release_detectedobjects() { +inline std::string* getClientPoseRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) - return _impl_.detectedobjects_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.clientUUID) + return _impl_.clientuuid_.Release(); } -inline void imageProcessRequestResponse::set_allocated_detectedobjects(std::string* value) { +inline void getClientPoseRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.SetAllocated(value, GetArena()); + _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.detectedobjects_.IsDefault()) { - _impl_.detectedobjects_.Set("", GetArena()); + if (_impl_.clientuuid_.IsDefault()) { + _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.clientUUID) } -// sint32 xpcfGrpcReturnValue = 6; -inline void imageProcessRequestResponse::clear_xpcfgrpcreturnvalue() { +// sint32 poseType = 4; +inline void getClientPoseRequest::clear_posetype() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.posetype_ = 0; } -inline ::int32_t imageProcessRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline ::int32_t getClientPoseRequest::posetype() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.poseType) + return _internal_posetype(); } -inline void imageProcessRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.xpcfGrpcReturnValue) +inline void getClientPoseRequest::set_posetype(::int32_t value) { + _internal_set_posetype(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.poseType) } -inline ::int32_t imageProcessRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getClientPoseRequest::_internal_posetype() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; + return _impl_.posetype_; } -inline void imageProcessRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getClientPoseRequest::_internal_set_posetype(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + _impl_.posetype_ = value; } -// ------------------------------------------------------------------- - -// getMappingDataRequestRequest - -// int32 grpcServerCompressionFormat = 1; -inline void getMappingDataRequestRequest::clear_grpcservercompressionformat() { +// sint32 transform3DStatus = 5; +inline void getClientPoseRequest::clear_transform3dstatus() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; -} -inline ::int32_t getMappingDataRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); + _impl_.transform3dstatus_ = 0; } -inline void getMappingDataRequestRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.grpcServerCompressionFormat) +inline ::int32_t getClientPoseRequest::transform3dstatus() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.transform3DStatus) + return _internal_transform3dstatus(); } -inline ::int32_t getMappingDataRequestRequest::_internal_grpcservercompressionformat() const { +inline void getClientPoseRequest::set_transform3dstatus(::int32_t value) { + _internal_set_transform3dstatus(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.transform3DStatus) +} +inline ::int32_t getClientPoseRequest::_internal_transform3dstatus() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.transform3dstatus_; } -inline void getMappingDataRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getClientPoseRequest::_internal_set_transform3dstatus(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.transform3dstatus_ = value; } -// string accessToken = 2; -inline void getMappingDataRequestRequest::clear_accesstoken() { +// bytes transform3D = 6; +inline void getClientPoseRequest::clear_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); + _impl_.transform3d_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestRequest::accesstoken() const +inline const std::string& getClientPoseRequest::transform3d() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.transform3D) + return _internal_transform3d(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_transform3d(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) + _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.transform3D) } -inline std::string* getMappingDataRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) +inline std::string* getClientPoseRequest::mutable_transform3d() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_transform3d(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.transform3D) return _s; } -inline const std::string& getMappingDataRequestRequest::_internal_accesstoken() const { +inline const std::string& getClientPoseRequest::_internal_transform3d() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.transform3d_.Get(); } -inline void getMappingDataRequestRequest::_internal_set_accesstoken(const std::string& value) { +inline void getClientPoseRequest::_internal_set_transform3d(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.transform3d_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestRequest::_internal_mutable_accesstoken() { +inline std::string* getClientPoseRequest::_internal_mutable_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.transform3d_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestRequest::release_accesstoken() { +inline std::string* getClientPoseRequest::release_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.transform3D) + return _impl_.transform3d_.Release(); } -inline void getMappingDataRequestRequest::set_allocated_accesstoken(std::string* value) { +inline void getClientPoseRequest::set_allocated_transform3d(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.transform3d_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.transform3d_.IsDefault()) { + _impl_.transform3d_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.transform3D) } -// string clientUUID = 3; -inline void getMappingDataRequestRequest::clear_clientuuid() { +// bytes confidence = 7; +inline void getClientPoseRequest::clear_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.confidence_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestRequest::clientuuid() const +inline const std::string& getClientPoseRequest::confidence() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.confidence) + return _internal_confidence(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_confidence(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) + _impl_.confidence_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.confidence) } -inline std::string* getMappingDataRequestRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) +inline std::string* getClientPoseRequest::mutable_confidence() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_confidence(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.confidence) return _s; } -inline const std::string& getMappingDataRequestRequest::_internal_clientuuid() const { +inline const std::string& getClientPoseRequest::_internal_confidence() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuid_.Get(); + return _impl_.confidence_.Get(); } -inline void getMappingDataRequestRequest::_internal_set_clientuuid(const std::string& value) { +inline void getClientPoseRequest::_internal_set_confidence(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(value, GetArena()); + _impl_.confidence_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestRequest::_internal_mutable_clientuuid() { +inline std::string* getClientPoseRequest::_internal_mutable_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuid_.Mutable( GetArena()); + return _impl_.confidence_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestRequest::release_clientuuid() { +inline std::string* getClientPoseRequest::release_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.confidence) + return _impl_.confidence_.Release(); } -inline void getMappingDataRequestRequest::set_allocated_clientuuid(std::string* value) { +inline void getClientPoseRequest::set_allocated_confidence(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.SetAllocated(value, GetArena()); + _impl_.confidence_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuid_.IsDefault()) { - _impl_.clientuuid_.Set("", GetArena()); + if (_impl_.confidence_.IsDefault()) { + _impl_.confidence_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.confidence) } -// bytes outputPointClouds = 4; -inline void getMappingDataRequestRequest::clear_outputpointclouds() { +// bytes pose = 8; +inline void getClientPoseRequest::clear_pose() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.ClearToEmpty(); + _impl_.pose_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestRequest::outputpointclouds() const +inline const std::string& getClientPoseRequest::pose() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) - return _internal_outputpointclouds(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.pose) + return _internal_pose(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_outputpointclouds(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_pose(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) + _impl_.pose_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.pose) } -inline std::string* getMappingDataRequestRequest::mutable_outputpointclouds() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_outputpointclouds(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) +inline std::string* getClientPoseRequest::mutable_pose() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_pose(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.pose) return _s; } -inline const std::string& getMappingDataRequestRequest::_internal_outputpointclouds() const { +inline const std::string& getClientPoseRequest::_internal_pose() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.outputpointclouds_.Get(); + return _impl_.pose_.Get(); } -inline void getMappingDataRequestRequest::_internal_set_outputpointclouds(const std::string& value) { +inline void getClientPoseRequest::_internal_set_pose(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.Set(value, GetArena()); + _impl_.pose_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestRequest::_internal_mutable_outputpointclouds() { +inline std::string* getClientPoseRequest::_internal_mutable_pose() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.outputpointclouds_.Mutable( GetArena()); + return _impl_.pose_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestRequest::release_outputpointclouds() { +inline std::string* getClientPoseRequest::release_pose() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) - return _impl_.outputpointclouds_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.pose) + return _impl_.pose_.Release(); } -inline void getMappingDataRequestRequest::set_allocated_outputpointclouds(std::string* value) { +inline void getClientPoseRequest::set_allocated_pose(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.SetAllocated(value, GetArena()); + _impl_.pose_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.outputpointclouds_.IsDefault()) { - _impl_.outputpointclouds_.Set("", GetArena()); + if (_impl_.pose_.IsDefault()) { + _impl_.pose_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.pose) } -// bytes keyframePoses = 5; -inline void getMappingDataRequestRequest::clear_keyframeposes() { +// ------------------------------------------------------------------- + +// getClientPoseResponse + +// sint32 transform3DStatus = 1; +inline void getClientPoseResponse::clear_transform3dstatus() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.ClearToEmpty(); + _impl_.transform3dstatus_ = 0; } -inline const std::string& getMappingDataRequestRequest::keyframeposes() const +inline ::int32_t getClientPoseResponse::transform3dstatus() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.transform3DStatus) + return _internal_transform3dstatus(); +} +inline void getClientPoseResponse::set_transform3dstatus(::int32_t value) { + _internal_set_transform3dstatus(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.transform3DStatus) +} +inline ::int32_t getClientPoseResponse::_internal_transform3dstatus() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.transform3dstatus_; +} +inline void getClientPoseResponse::_internal_set_transform3dstatus(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.transform3dstatus_ = value; +} + +// bytes transform3D = 2; +inline void getClientPoseResponse::clear_transform3d() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.transform3d_.ClearToEmpty(); +} +inline const std::string& getClientPoseResponse::transform3d() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) - return _internal_keyframeposes(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.transform3D) + return _internal_transform3d(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_keyframeposes(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::set_transform3d(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) + _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.transform3D) } -inline std::string* getMappingDataRequestRequest::mutable_keyframeposes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_keyframeposes(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) +inline std::string* getClientPoseResponse::mutable_transform3d() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_transform3d(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseResponse.transform3D) return _s; } -inline const std::string& getMappingDataRequestRequest::_internal_keyframeposes() const { +inline const std::string& getClientPoseResponse::_internal_transform3d() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframeposes_.Get(); + return _impl_.transform3d_.Get(); } -inline void getMappingDataRequestRequest::_internal_set_keyframeposes(const std::string& value) { +inline void getClientPoseResponse::_internal_set_transform3d(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.Set(value, GetArena()); + _impl_.transform3d_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestRequest::_internal_mutable_keyframeposes() { +inline std::string* getClientPoseResponse::_internal_mutable_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.keyframeposes_.Mutable( GetArena()); + return _impl_.transform3d_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestRequest::release_keyframeposes() { +inline std::string* getClientPoseResponse::release_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) - return _impl_.keyframeposes_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.transform3D) + return _impl_.transform3d_.Release(); } -inline void getMappingDataRequestRequest::set_allocated_keyframeposes(std::string* value) { +inline void getClientPoseResponse::set_allocated_transform3d(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.SetAllocated(value, GetArena()); + _impl_.transform3d_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.keyframeposes_.IsDefault()) { - _impl_.keyframeposes_.Set("", GetArena()); + if (_impl_.transform3d_.IsDefault()) { + _impl_.transform3d_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) -} - -// ------------------------------------------------------------------- - -// getMappingDataRequestResponse + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseResponse.transform3D) +} -// bytes outputPointClouds = 1; -inline void getMappingDataRequestResponse::clear_outputpointclouds() { +// bytes confidence = 3; +inline void getClientPoseResponse::clear_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.ClearToEmpty(); + _impl_.confidence_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestResponse::outputpointclouds() const +inline const std::string& getClientPoseResponse::confidence() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) - return _internal_outputpointclouds(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.confidence) + return _internal_confidence(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestResponse::set_outputpointclouds(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::set_confidence(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) + _impl_.confidence_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.confidence) } -inline std::string* getMappingDataRequestResponse::mutable_outputpointclouds() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_outputpointclouds(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) +inline std::string* getClientPoseResponse::mutable_confidence() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_confidence(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseResponse.confidence) return _s; } -inline const std::string& getMappingDataRequestResponse::_internal_outputpointclouds() const { +inline const std::string& getClientPoseResponse::_internal_confidence() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.outputpointclouds_.Get(); + return _impl_.confidence_.Get(); } -inline void getMappingDataRequestResponse::_internal_set_outputpointclouds(const std::string& value) { +inline void getClientPoseResponse::_internal_set_confidence(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.Set(value, GetArena()); + _impl_.confidence_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestResponse::_internal_mutable_outputpointclouds() { +inline std::string* getClientPoseResponse::_internal_mutable_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.outputpointclouds_.Mutable( GetArena()); + return _impl_.confidence_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestResponse::release_outputpointclouds() { +inline std::string* getClientPoseResponse::release_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) - return _impl_.outputpointclouds_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.confidence) + return _impl_.confidence_.Release(); } -inline void getMappingDataRequestResponse::set_allocated_outputpointclouds(std::string* value) { +inline void getClientPoseResponse::set_allocated_confidence(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.SetAllocated(value, GetArena()); + _impl_.confidence_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.outputpointclouds_.IsDefault()) { - _impl_.outputpointclouds_.Set("", GetArena()); + if (_impl_.confidence_.IsDefault()) { + _impl_.confidence_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseResponse.confidence) } -// bytes keyframePoses = 2; -inline void getMappingDataRequestResponse::clear_keyframeposes() { +// bytes pose = 4; +inline void getClientPoseResponse::clear_pose() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.ClearToEmpty(); + _impl_.pose_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestResponse::keyframeposes() const +inline const std::string& getClientPoseResponse::pose() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) - return _internal_keyframeposes(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.pose) + return _internal_pose(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestResponse::set_keyframeposes(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::set_pose(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) + _impl_.pose_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.pose) } -inline std::string* getMappingDataRequestResponse::mutable_keyframeposes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_keyframeposes(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) +inline std::string* getClientPoseResponse::mutable_pose() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_pose(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseResponse.pose) return _s; } -inline const std::string& getMappingDataRequestResponse::_internal_keyframeposes() const { +inline const std::string& getClientPoseResponse::_internal_pose() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframeposes_.Get(); + return _impl_.pose_.Get(); } -inline void getMappingDataRequestResponse::_internal_set_keyframeposes(const std::string& value) { +inline void getClientPoseResponse::_internal_set_pose(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.Set(value, GetArena()); + _impl_.pose_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestResponse::_internal_mutable_keyframeposes() { +inline std::string* getClientPoseResponse::_internal_mutable_pose() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.keyframeposes_.Mutable( GetArena()); + return _impl_.pose_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestResponse::release_keyframeposes() { +inline std::string* getClientPoseResponse::release_pose() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) - return _impl_.keyframeposes_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.pose) + return _impl_.pose_.Release(); } -inline void getMappingDataRequestResponse::set_allocated_keyframeposes(std::string* value) { +inline void getClientPoseResponse::set_allocated_pose(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.SetAllocated(value, GetArena()); + _impl_.pose_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.keyframeposes_.IsDefault()) { - _impl_.keyframeposes_.Set("", GetArena()); + if (_impl_.pose_.IsDefault()) { + _impl_.pose_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseResponse.pose) } -// sint32 xpcfGrpcReturnValue = 3; -inline void getMappingDataRequestResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 5; +inline void getClientPoseResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getMappingDataRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.xpcfGrpcReturnValue) +inline ::int32_t getClientPoseResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getMappingDataRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getClientPoseResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.xpcfGrpcReturnValue) } -inline ::int32_t getMappingDataRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getClientPoseResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getMappingDataRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getClientPoseResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getClientPoseRequest +// createMapRequest // int32 grpcServerCompressionFormat = 1; -inline void getClientPoseRequest::clear_grpcservercompressionformat() { +inline void createMapRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getClientPoseRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.grpcServerCompressionFormat) +inline ::int32_t createMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getClientPoseRequest::set_grpcservercompressionformat(::int32_t value) { +inline void createMapRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapRequest.grpcServerCompressionFormat) } -inline ::int32_t getClientPoseRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t createMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getClientPoseRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void createMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void getClientPoseRequest::clear_accesstoken() { +inline void createMapRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getClientPoseRequest::accesstoken() const +inline const std::string& createMapRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void createMapRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapRequest.accessToken) } -inline std::string* getClientPoseRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* createMapRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.createMapRequest.accessToken) return _s; } -inline const std::string& getClientPoseRequest::_internal_accesstoken() const { +inline const std::string& createMapRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getClientPoseRequest::_internal_set_accesstoken(const std::string& value) { +inline void createMapRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getClientPoseRequest::_internal_mutable_accesstoken() { +inline std::string* createMapRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getClientPoseRequest::release_accesstoken() { +inline std::string* createMapRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.createMapRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getClientPoseRequest::set_allocated_accesstoken(std::string* value) { +inline void createMapRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -15930,567 +17270,659 @@ inline void getClientPoseRequest::set_allocated_accesstoken(std::string* value) _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.createMapRequest.accessToken) } -// string clientUUID = 3; -inline void getClientPoseRequest::clear_clientuuid() { +// string mapUUID = 3; +inline void createMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getClientPoseRequest::clientuuid() const +inline const std::string& createMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void createMapRequest::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.clientUUID) + _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapRequest.mapUUID) } -inline std::string* getClientPoseRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.clientUUID) +inline std::string* createMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.createMapRequest.mapUUID) return _s; } -inline const std::string& getClientPoseRequest::_internal_clientuuid() const { +inline const std::string& createMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuid_.Get(); + return _impl_.mapuuid_.Get(); } -inline void getClientPoseRequest::_internal_set_clientuuid(const std::string& value) { +inline void createMapRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* getClientPoseRequest::_internal_mutable_clientuuid() { +inline std::string* createMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuid_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getClientPoseRequest::release_clientuuid() { +inline std::string* createMapRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.createMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void getClientPoseRequest::set_allocated_clientuuid(std::string* value) { +inline void createMapRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuid_.IsDefault()) { - _impl_.clientuuid_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.createMapRequest.mapUUID) } -// sint32 poseType = 4; -inline void getClientPoseRequest::clear_posetype() { +// ------------------------------------------------------------------- + +// createMapResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void createMapResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.posetype_ = 0; + _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getClientPoseRequest::posetype() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.poseType) - return _internal_posetype(); +inline ::int32_t createMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); } -inline void getClientPoseRequest::set_posetype(::int32_t value) { - _internal_set_posetype(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.poseType) +inline void createMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapResponse.xpcfGrpcReturnValue) } -inline ::int32_t getClientPoseRequest::_internal_posetype() const { +inline ::int32_t createMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.posetype_; + return _impl_.xpcfgrpcreturnvalue_; } -inline void getClientPoseRequest::_internal_set_posetype(::int32_t value) { +inline void createMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.posetype_ = value; + _impl_.xpcfgrpcreturnvalue_ = value; } -// sint32 transform3DStatus = 5; -inline void getClientPoseRequest::clear_transform3dstatus() { +// ------------------------------------------------------------------- + +// deleteMapRequest + +// int32 grpcServerCompressionFormat = 1; +inline void deleteMapRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = 0; + _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getClientPoseRequest::transform3dstatus() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.transform3DStatus) - return _internal_transform3dstatus(); +inline ::int32_t deleteMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); } -inline void getClientPoseRequest::set_transform3dstatus(::int32_t value) { - _internal_set_transform3dstatus(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.transform3DStatus) +inline void deleteMapRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapRequest.grpcServerCompressionFormat) } -inline ::int32_t getClientPoseRequest::_internal_transform3dstatus() const { +inline ::int32_t deleteMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3dstatus_; + return _impl_.grpcservercompressionformat_; } -inline void getClientPoseRequest::_internal_set_transform3dstatus(::int32_t value) { +inline void deleteMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = value; + _impl_.grpcservercompressionformat_ = value; } -// bytes transform3D = 6; -inline void getClientPoseRequest::clear_transform3d() { +// string accessToken = 2; +inline void deleteMapRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.ClearToEmpty(); + _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getClientPoseRequest::transform3d() const +inline const std::string& deleteMapRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.transform3D) - return _internal_transform3d(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_transform3d(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void deleteMapRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.transform3D) + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapRequest.accessToken) } -inline std::string* getClientPoseRequest::mutable_transform3d() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_transform3d(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.transform3D) +inline std::string* deleteMapRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.deleteMapRequest.accessToken) return _s; } -inline const std::string& getClientPoseRequest::_internal_transform3d() const { +inline const std::string& deleteMapRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3d_.Get(); + return _impl_.accesstoken_.Get(); } -inline void getClientPoseRequest::_internal_set_transform3d(const std::string& value) { +inline void deleteMapRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.Set(value, GetArena()); + _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getClientPoseRequest::_internal_mutable_transform3d() { +inline std::string* deleteMapRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.transform3d_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getClientPoseRequest::release_transform3d() { +inline std::string* deleteMapRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.transform3D) - return _impl_.transform3d_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.deleteMapRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void getClientPoseRequest::set_allocated_transform3d(std::string* value) { +inline void deleteMapRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.SetAllocated(value, GetArena()); + _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.transform3d_.IsDefault()) { - _impl_.transform3d_.Set("", GetArena()); + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.transform3D) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.deleteMapRequest.accessToken) } -// bytes confidence = 7; -inline void getClientPoseRequest::clear_confidence() { +// string mapUUID = 3; +inline void deleteMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getClientPoseRequest::confidence() const +inline const std::string& deleteMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.confidence) - return _internal_confidence(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_confidence(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void deleteMapRequest::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.confidence) + _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapRequest.mapUUID) } -inline std::string* getClientPoseRequest::mutable_confidence() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_confidence(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.confidence) +inline std::string* deleteMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.deleteMapRequest.mapUUID) return _s; } -inline const std::string& getClientPoseRequest::_internal_confidence() const { +inline const std::string& deleteMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.confidence_.Get(); + return _impl_.mapuuid_.Get(); } -inline void getClientPoseRequest::_internal_set_confidence(const std::string& value) { +inline void deleteMapRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* getClientPoseRequest::_internal_mutable_confidence() { +inline std::string* deleteMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.confidence_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getClientPoseRequest::release_confidence() { +inline std::string* deleteMapRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.confidence) - return _impl_.confidence_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.deleteMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void getClientPoseRequest::set_allocated_confidence(std::string* value) { +inline void deleteMapRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.confidence_.IsDefault()) { - _impl_.confidence_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.confidence) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.deleteMapRequest.mapUUID) } -// bytes pose = 8; -inline void getClientPoseRequest::clear_pose() { +// ------------------------------------------------------------------- + +// deleteMapResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void deleteMapResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.ClearToEmpty(); -} -inline const std::string& getClientPoseRequest::pose() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.pose) - return _internal_pose(); + _impl_.xpcfgrpcreturnvalue_ = 0; } -template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_pose(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.pose) +inline ::int32_t deleteMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); } -inline std::string* getClientPoseRequest::mutable_pose() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pose(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.pose) - return _s; +inline void deleteMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapResponse.xpcfGrpcReturnValue) } -inline const std::string& getClientPoseRequest::_internal_pose() const { +inline ::int32_t deleteMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pose_.Get(); -} -inline void getClientPoseRequest::_internal_set_pose(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.Set(value, GetArena()); -} -inline std::string* getClientPoseRequest::_internal_mutable_pose() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pose_.Mutable( GetArena()); -} -inline std::string* getClientPoseRequest::release_pose() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.pose) - return _impl_.pose_.Release(); + return _impl_.xpcfgrpcreturnvalue_; } -inline void getClientPoseRequest::set_allocated_pose(std::string* value) { +inline void deleteMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.pose_.IsDefault()) { - _impl_.pose_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.pose) + _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getClientPoseResponse +// getAllMapsUUIDRequest -// sint32 transform3DStatus = 1; -inline void getClientPoseResponse::clear_transform3dstatus() { +// int32 grpcServerCompressionFormat = 1; +inline void getAllMapsUUIDRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = 0; + _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getClientPoseResponse::transform3dstatus() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.transform3DStatus) - return _internal_transform3dstatus(); +inline ::int32_t getAllMapsUUIDRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); } -inline void getClientPoseResponse::set_transform3dstatus(::int32_t value) { - _internal_set_transform3dstatus(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.transform3DStatus) +inline void getAllMapsUUIDRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDRequest.grpcServerCompressionFormat) } -inline ::int32_t getClientPoseResponse::_internal_transform3dstatus() const { +inline ::int32_t getAllMapsUUIDRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3dstatus_; + return _impl_.grpcservercompressionformat_; } -inline void getClientPoseResponse::_internal_set_transform3dstatus(::int32_t value) { +inline void getAllMapsUUIDRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = value; + _impl_.grpcservercompressionformat_ = value; } -// bytes transform3D = 2; -inline void getClientPoseResponse::clear_transform3d() { +// string accessToken = 2; +inline void getAllMapsUUIDRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.ClearToEmpty(); + _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getClientPoseResponse::transform3d() const +inline const std::string& getAllMapsUUIDRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.transform3D) - return _internal_transform3d(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::set_transform3d(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.transform3D) + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) } -inline std::string* getClientPoseResponse::mutable_transform3d() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_transform3d(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseResponse.transform3D) +inline std::string* getAllMapsUUIDRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) return _s; } -inline const std::string& getClientPoseResponse::_internal_transform3d() const { +inline const std::string& getAllMapsUUIDRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3d_.Get(); + return _impl_.accesstoken_.Get(); } -inline void getClientPoseResponse::_internal_set_transform3d(const std::string& value) { +inline void getAllMapsUUIDRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.Set(value, GetArena()); + _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getClientPoseResponse::_internal_mutable_transform3d() { +inline std::string* getAllMapsUUIDRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.transform3d_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getClientPoseResponse::release_transform3d() { +inline std::string* getAllMapsUUIDRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.transform3D) - return _impl_.transform3d_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void getClientPoseResponse::set_allocated_transform3d(std::string* value) { +inline void getAllMapsUUIDRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.SetAllocated(value, GetArena()); + _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.transform3d_.IsDefault()) { - _impl_.transform3d_.Set("", GetArena()); + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseResponse.transform3D) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) } -// bytes confidence = 3; -inline void getClientPoseResponse::clear_confidence() { +// bytes mapUUIDList = 3; +inline void getAllMapsUUIDRequest::clear_mapuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.ClearToEmpty(); + _impl_.mapuuidlist_.ClearToEmpty(); } -inline const std::string& getClientPoseResponse::confidence() const +inline const std::string& getAllMapsUUIDRequest::mapuuidlist() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.confidence) - return _internal_confidence(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) + return _internal_mapuuidlist(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::set_confidence(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDRequest::set_mapuuidlist(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.confidence) + _impl_.mapuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) } -inline std::string* getClientPoseResponse::mutable_confidence() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_confidence(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseResponse.confidence) +inline std::string* getAllMapsUUIDRequest::mutable_mapuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuidlist(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) return _s; } -inline const std::string& getClientPoseResponse::_internal_confidence() const { +inline const std::string& getAllMapsUUIDRequest::_internal_mapuuidlist() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.confidence_.Get(); + return _impl_.mapuuidlist_.Get(); } -inline void getClientPoseResponse::_internal_set_confidence(const std::string& value) { +inline void getAllMapsUUIDRequest::_internal_set_mapuuidlist(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.Set(value, GetArena()); + _impl_.mapuuidlist_.Set(value, GetArena()); } -inline std::string* getClientPoseResponse::_internal_mutable_confidence() { +inline std::string* getAllMapsUUIDRequest::_internal_mutable_mapuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.confidence_.Mutable( GetArena()); + return _impl_.mapuuidlist_.Mutable( GetArena()); } -inline std::string* getClientPoseResponse::release_confidence() { +inline std::string* getAllMapsUUIDRequest::release_mapuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.confidence) - return _impl_.confidence_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) + return _impl_.mapuuidlist_.Release(); } -inline void getClientPoseResponse::set_allocated_confidence(std::string* value) { +inline void getAllMapsUUIDRequest::set_allocated_mapuuidlist(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.SetAllocated(value, GetArena()); + _impl_.mapuuidlist_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.confidence_.IsDefault()) { - _impl_.confidence_.Set("", GetArena()); + if (_impl_.mapuuidlist_.IsDefault()) { + _impl_.mapuuidlist_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseResponse.confidence) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) } -// bytes pose = 4; -inline void getClientPoseResponse::clear_pose() { +// ------------------------------------------------------------------- + +// getAllMapsUUIDResponse + +// bytes mapUUIDList = 1; +inline void getAllMapsUUIDResponse::clear_mapuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.ClearToEmpty(); + _impl_.mapuuidlist_.ClearToEmpty(); } -inline const std::string& getClientPoseResponse::pose() const +inline const std::string& getAllMapsUUIDResponse::mapuuidlist() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.pose) - return _internal_pose(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) + return _internal_mapuuidlist(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::set_pose(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDResponse::set_mapuuidlist(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.pose) + _impl_.mapuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) } -inline std::string* getClientPoseResponse::mutable_pose() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pose(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseResponse.pose) +inline std::string* getAllMapsUUIDResponse::mutable_mapuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuidlist(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) return _s; } -inline const std::string& getClientPoseResponse::_internal_pose() const { +inline const std::string& getAllMapsUUIDResponse::_internal_mapuuidlist() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pose_.Get(); + return _impl_.mapuuidlist_.Get(); } -inline void getClientPoseResponse::_internal_set_pose(const std::string& value) { +inline void getAllMapsUUIDResponse::_internal_set_mapuuidlist(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.Set(value, GetArena()); + _impl_.mapuuidlist_.Set(value, GetArena()); } -inline std::string* getClientPoseResponse::_internal_mutable_pose() { +inline std::string* getAllMapsUUIDResponse::_internal_mutable_mapuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pose_.Mutable( GetArena()); + return _impl_.mapuuidlist_.Mutable( GetArena()); } -inline std::string* getClientPoseResponse::release_pose() { +inline std::string* getAllMapsUUIDResponse::release_mapuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.pose) - return _impl_.pose_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) + return _impl_.mapuuidlist_.Release(); } -inline void getClientPoseResponse::set_allocated_pose(std::string* value) { +inline void getAllMapsUUIDResponse::set_allocated_mapuuidlist(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.SetAllocated(value, GetArena()); + _impl_.mapuuidlist_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.pose_.IsDefault()) { - _impl_.pose_.Set("", GetArena()); + if (_impl_.mapuuidlist_.IsDefault()) { + _impl_.mapuuidlist_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseResponse.pose) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) } -// sint32 xpcfGrpcReturnValue = 5; -inline void getClientPoseResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 2; +inline void getAllMapsUUIDResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getClientPoseResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.xpcfGrpcReturnValue) +inline ::int32_t getAllMapsUUIDResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getClientPoseResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getAllMapsUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDResponse.xpcfGrpcReturnValue) } -inline ::int32_t getClientPoseResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getAllMapsUUIDResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getClientPoseResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getAllMapsUUIDResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// createMapRequest +// getClientMapUUIDRequest // int32 grpcServerCompressionFormat = 1; -inline void createMapRequest::clear_grpcservercompressionformat() { +inline void getClientMapUUIDRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t createMapRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.grpcServerCompressionFormat) +inline ::int32_t getClientMapUUIDRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void createMapRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getClientMapUUIDRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.grpcServerCompressionFormat) } -inline ::int32_t createMapRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getClientMapUUIDRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void createMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getClientMapUUIDRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void createMapRequest::clear_accesstoken() { +inline void getClientMapUUIDRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& createMapRequest::accesstoken() const +inline const std::string& getClientMapUUIDRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void createMapRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) +} +inline std::string* getClientMapUUIDRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + return _s; +} +inline const std::string& getClientMapUUIDRequest::_internal_accesstoken() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.accesstoken_.Get(); +} +inline void getClientMapUUIDRequest::_internal_set_accesstoken(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.Set(value, GetArena()); +} +inline std::string* getClientMapUUIDRequest::_internal_mutable_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.accesstoken_.Mutable( GetArena()); +} +inline std::string* getClientMapUUIDRequest::release_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + return _impl_.accesstoken_.Release(); +} +inline void getClientMapUUIDRequest::set_allocated_accesstoken(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) +} + +// string clientUUID = 3; +inline void getClientMapUUIDRequest::clear_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.ClearToEmpty(); +} +inline const std::string& getClientMapUUIDRequest::clientuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) + return _internal_clientuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::set_clientuuid(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) +} +inline std::string* getClientMapUUIDRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) + return _s; +} +inline const std::string& getClientMapUUIDRequest::_internal_clientuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.clientuuid_.Get(); +} +inline void getClientMapUUIDRequest::_internal_set_clientuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.Set(value, GetArena()); +} +inline std::string* getClientMapUUIDRequest::_internal_mutable_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.clientuuid_.Mutable( GetArena()); +} +inline std::string* getClientMapUUIDRequest::release_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) + return _impl_.clientuuid_.Release(); +} +inline void getClientMapUUIDRequest::set_allocated_clientuuid(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.clientuuid_.IsDefault()) { + _impl_.clientuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) +} + +// string mapUUID = 4; +inline void getClientMapUUIDRequest::clear_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.ClearToEmpty(); +} +inline const std::string& getClientMapUUIDRequest::mapuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) + return _internal_mapuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::set_mapuuid(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) } -inline std::string* createMapRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.createMapRequest.accessToken) +inline std::string* getClientMapUUIDRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) return _s; } -inline const std::string& createMapRequest::_internal_accesstoken() const { +inline const std::string& getClientMapUUIDRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.mapuuid_.Get(); } -inline void createMapRequest::_internal_set_accesstoken(const std::string& value) { +inline void getClientMapUUIDRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* createMapRequest::_internal_mutable_accesstoken() { +inline std::string* getClientMapUUIDRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* createMapRequest::release_accesstoken() { +inline std::string* getClientMapUUIDRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.createMapRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void createMapRequest::set_allocated_accesstoken(std::string* value) { +inline void getClientMapUUIDRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.createMapRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) } -// string mapUUID = 3; -inline void createMapRequest::clear_mapuuid() { +// ------------------------------------------------------------------- + +// getClientMapUUIDResponse + +// string mapUUID = 1; +inline void getClientMapUUIDResponse::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& createMapRequest::mapuuid() const +inline const std::string& getClientMapUUIDResponse::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void createMapRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDResponse::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) } -inline std::string* createMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getClientMapUUIDResponse::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.createMapRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) return _s; } -inline const std::string& createMapRequest::_internal_mapuuid() const { +inline const std::string& getClientMapUUIDResponse::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.mapuuid_.Get(); } -inline void createMapRequest::_internal_set_mapuuid(const std::string& value) { +inline void getClientMapUUIDResponse::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* createMapRequest::_internal_mutable_mapuuid() { +inline std::string* getClientMapUUIDResponse::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* createMapRequest::release_mapuuid() { +inline std::string* getClientMapUUIDResponse::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.createMapRequest.mapUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) return _impl_.mapuuid_.Release(); } -inline void createMapRequest::set_allocated_mapuuid(std::string* value) { +inline void getClientMapUUIDResponse::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -16498,101 +17930,97 @@ inline void createMapRequest::set_allocated_mapuuid(std::string* value) { _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.createMapRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) } -// ------------------------------------------------------------------- - -// createMapResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void createMapResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 2; +inline void getClientMapUUIDResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t createMapResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapResponse.xpcfGrpcReturnValue) +inline ::int32_t getClientMapUUIDResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void createMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getClientMapUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDResponse.xpcfGrpcReturnValue) } -inline ::int32_t createMapResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getClientMapUUIDResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void createMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getClientMapUUIDResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// deleteMapRequest +// getClientInfoForMapRequest // int32 grpcServerCompressionFormat = 1; -inline void deleteMapRequest::clear_grpcservercompressionformat() { +inline void getClientInfoForMapRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t deleteMapRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.grpcServerCompressionFormat) +inline ::int32_t getClientInfoForMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void deleteMapRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getClientInfoForMapRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.grpcServerCompressionFormat) } -inline ::int32_t deleteMapRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getClientInfoForMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void deleteMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getClientInfoForMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void deleteMapRequest::clear_accesstoken() { +inline void getClientInfoForMapRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& deleteMapRequest::accesstoken() const +inline const std::string& getClientInfoForMapRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void deleteMapRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) } -inline std::string* deleteMapRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getClientInfoForMapRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.deleteMapRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) return _s; } -inline const std::string& deleteMapRequest::_internal_accesstoken() const { +inline const std::string& getClientInfoForMapRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void deleteMapRequest::_internal_set_accesstoken(const std::string& value) { +inline void getClientInfoForMapRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* deleteMapRequest::_internal_mutable_accesstoken() { +inline std::string* getClientInfoForMapRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* deleteMapRequest::release_accesstoken() { +inline std::string* getClientInfoForMapRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.deleteMapRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void deleteMapRequest::set_allocated_accesstoken(std::string* value) { +inline void getClientInfoForMapRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -16600,353 +18028,251 @@ inline void deleteMapRequest::set_allocated_accesstoken(std::string* value) { _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.deleteMapRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) } // string mapUUID = 3; -inline void deleteMapRequest::clear_mapuuid() { +inline void getClientInfoForMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& deleteMapRequest::mapuuid() const +inline const std::string& getClientInfoForMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void deleteMapRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapRequest::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) } -inline std::string* deleteMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getClientInfoForMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) return _s; } -inline const std::string& deleteMapRequest::_internal_mapuuid() const { +inline const std::string& getClientInfoForMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.mapuuid_.Get(); } -inline void deleteMapRequest::_internal_set_mapuuid(const std::string& value) { +inline void getClientInfoForMapRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* deleteMapRequest::_internal_mutable_mapuuid() { +inline std::string* getClientInfoForMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* deleteMapRequest::release_mapuuid() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.deleteMapRequest.mapUUID) - return _impl_.mapuuid_.Release(); -} -inline void deleteMapRequest::set_allocated_mapuuid(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.deleteMapRequest.mapUUID) -} - -// ------------------------------------------------------------------- - -// deleteMapResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void deleteMapResponse::clear_xpcfgrpcreturnvalue() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; -} -inline ::int32_t deleteMapResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); -} -inline void deleteMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapResponse.xpcfGrpcReturnValue) -} -inline ::int32_t deleteMapResponse::_internal_xpcfgrpcreturnvalue() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; -} -inline void deleteMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; -} - -// ------------------------------------------------------------------- - -// getAllMapsUUIDRequest - -// int32 grpcServerCompressionFormat = 1; -inline void getAllMapsUUIDRequest::clear_grpcservercompressionformat() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; -} -inline ::int32_t getAllMapsUUIDRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); -} -inline void getAllMapsUUIDRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDRequest.grpcServerCompressionFormat) -} -inline ::int32_t getAllMapsUUIDRequest::_internal_grpcservercompressionformat() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; -} -inline void getAllMapsUUIDRequest::_internal_set_grpcservercompressionformat(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; -} - -// string accessToken = 2; -inline void getAllMapsUUIDRequest::clear_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); -} -inline const std::string& getAllMapsUUIDRequest::accesstoken() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) - return _internal_accesstoken(); -} -template -inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDRequest::set_accesstoken(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) -} -inline std::string* getAllMapsUUIDRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) - return _s; -} -inline const std::string& getAllMapsUUIDRequest::_internal_accesstoken() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); -} -inline void getAllMapsUUIDRequest::_internal_set_accesstoken(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); -} -inline std::string* getAllMapsUUIDRequest::_internal_mutable_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); -} -inline std::string* getAllMapsUUIDRequest::release_accesstoken() { +inline std::string* getClientInfoForMapRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void getAllMapsUUIDRequest::set_allocated_accesstoken(std::string* value) { +inline void getClientInfoForMapRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) } -// bytes mapUUIDList = 3; -inline void getAllMapsUUIDRequest::clear_mapuuidlist() { +// bytes clientInfoList = 4; +inline void getClientInfoForMapRequest::clear_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.ClearToEmpty(); + _impl_.clientinfolist_.ClearToEmpty(); } -inline const std::string& getAllMapsUUIDRequest::mapuuidlist() const +inline const std::string& getClientInfoForMapRequest::clientinfolist() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) - return _internal_mapuuidlist(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) + return _internal_clientinfolist(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDRequest::set_mapuuidlist(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapRequest::set_clientinfolist(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) + _impl_.clientinfolist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) } -inline std::string* getAllMapsUUIDRequest::mutable_mapuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuidlist(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) +inline std::string* getClientInfoForMapRequest::mutable_clientinfolist() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientinfolist(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) return _s; } -inline const std::string& getAllMapsUUIDRequest::_internal_mapuuidlist() const { +inline const std::string& getClientInfoForMapRequest::_internal_clientinfolist() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuidlist_.Get(); + return _impl_.clientinfolist_.Get(); } -inline void getAllMapsUUIDRequest::_internal_set_mapuuidlist(const std::string& value) { +inline void getClientInfoForMapRequest::_internal_set_clientinfolist(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.Set(value, GetArena()); + _impl_.clientinfolist_.Set(value, GetArena()); } -inline std::string* getAllMapsUUIDRequest::_internal_mutable_mapuuidlist() { +inline std::string* getClientInfoForMapRequest::_internal_mutable_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuidlist_.Mutable( GetArena()); + return _impl_.clientinfolist_.Mutable( GetArena()); } -inline std::string* getAllMapsUUIDRequest::release_mapuuidlist() { +inline std::string* getClientInfoForMapRequest::release_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) - return _impl_.mapuuidlist_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) + return _impl_.clientinfolist_.Release(); } -inline void getAllMapsUUIDRequest::set_allocated_mapuuidlist(std::string* value) { +inline void getClientInfoForMapRequest::set_allocated_clientinfolist(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.SetAllocated(value, GetArena()); + _impl_.clientinfolist_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuidlist_.IsDefault()) { - _impl_.mapuuidlist_.Set("", GetArena()); + if (_impl_.clientinfolist_.IsDefault()) { + _impl_.clientinfolist_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) } // ------------------------------------------------------------------- -// getAllMapsUUIDResponse +// getClientInfoForMapResponse -// bytes mapUUIDList = 1; -inline void getAllMapsUUIDResponse::clear_mapuuidlist() { +// bytes clientInfoList = 1; +inline void getClientInfoForMapResponse::clear_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.ClearToEmpty(); + _impl_.clientinfolist_.ClearToEmpty(); } -inline const std::string& getAllMapsUUIDResponse::mapuuidlist() const +inline const std::string& getClientInfoForMapResponse::clientinfolist() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) - return _internal_mapuuidlist(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) + return _internal_clientinfolist(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDResponse::set_mapuuidlist(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapResponse::set_clientinfolist(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) + _impl_.clientinfolist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) } -inline std::string* getAllMapsUUIDResponse::mutable_mapuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuidlist(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) +inline std::string* getClientInfoForMapResponse::mutable_clientinfolist() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientinfolist(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) return _s; } -inline const std::string& getAllMapsUUIDResponse::_internal_mapuuidlist() const { +inline const std::string& getClientInfoForMapResponse::_internal_clientinfolist() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuidlist_.Get(); + return _impl_.clientinfolist_.Get(); } -inline void getAllMapsUUIDResponse::_internal_set_mapuuidlist(const std::string& value) { +inline void getClientInfoForMapResponse::_internal_set_clientinfolist(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.Set(value, GetArena()); + _impl_.clientinfolist_.Set(value, GetArena()); } -inline std::string* getAllMapsUUIDResponse::_internal_mutable_mapuuidlist() { +inline std::string* getClientInfoForMapResponse::_internal_mutable_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuidlist_.Mutable( GetArena()); + return _impl_.clientinfolist_.Mutable( GetArena()); } -inline std::string* getAllMapsUUIDResponse::release_mapuuidlist() { +inline std::string* getClientInfoForMapResponse::release_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) - return _impl_.mapuuidlist_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) + return _impl_.clientinfolist_.Release(); } -inline void getAllMapsUUIDResponse::set_allocated_mapuuidlist(std::string* value) { +inline void getClientInfoForMapResponse::set_allocated_clientinfolist(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.SetAllocated(value, GetArena()); + _impl_.clientinfolist_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuidlist_.IsDefault()) { - _impl_.mapuuidlist_.Set("", GetArena()); + if (_impl_.clientinfolist_.IsDefault()) { + _impl_.clientinfolist_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) } // sint32 xpcfGrpcReturnValue = 2; -inline void getAllMapsUUIDResponse::clear_xpcfgrpcreturnvalue() { +inline void getClientInfoForMapResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getAllMapsUUIDResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDResponse.xpcfGrpcReturnValue) +inline ::int32_t getClientInfoForMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getAllMapsUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getClientInfoForMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapResponse.xpcfGrpcReturnValue) } -inline ::int32_t getAllMapsUUIDResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getClientInfoForMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getAllMapsUUIDResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getClientInfoForMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getClientMapUUIDRequest +// getMapRequestRequest // int32 grpcServerCompressionFormat = 1; -inline void getClientMapUUIDRequest::clear_grpcservercompressionformat() { +inline void getMapRequestRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getClientMapUUIDRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.grpcServerCompressionFormat) +inline ::int32_t getMapRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getClientMapUUIDRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.grpcServerCompressionFormat) } -inline ::int32_t getClientMapUUIDRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getMapRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getClientMapUUIDRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getMapRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void getClientMapUUIDRequest::clear_accesstoken() { +inline void getMapRequestRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getClientMapUUIDRequest::accesstoken() const +inline const std::string& getMapRequestRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.accessToken) } -inline std::string* getClientMapUUIDRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getMapRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapRequestRequest.accessToken) return _s; } -inline const std::string& getClientMapUUIDRequest::_internal_accesstoken() const { +inline const std::string& getMapRequestRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getClientMapUUIDRequest::_internal_set_accesstoken(const std::string& value) { +inline void getMapRequestRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getClientMapUUIDRequest::_internal_mutable_accesstoken() { +inline std::string* getMapRequestRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getClientMapUUIDRequest::release_accesstoken() { +inline std::string* getMapRequestRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getClientMapUUIDRequest::set_allocated_accesstoken(std::string* value) { +inline void getMapRequestRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -16954,251 +18280,273 @@ inline void getClientMapUUIDRequest::set_allocated_accesstoken(std::string* valu _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestRequest.accessToken) } -// string clientUUID = 3; -inline void getClientMapUUIDRequest::clear_clientuuid() { +// string mapUUID = 3; +inline void getMapRequestRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getClientMapUUIDRequest::clientuuid() const +inline const std::string& getMapRequestRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) + _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.mapUUID) } -inline std::string* getClientMapUUIDRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) +inline std::string* getMapRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapRequestRequest.mapUUID) return _s; } -inline const std::string& getClientMapUUIDRequest::_internal_clientuuid() const { +inline const std::string& getMapRequestRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuid_.Get(); + return _impl_.mapuuid_.Get(); } -inline void getClientMapUUIDRequest::_internal_set_clientuuid(const std::string& value) { +inline void getMapRequestRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* getClientMapUUIDRequest::_internal_mutable_clientuuid() { +inline std::string* getMapRequestRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuid_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getClientMapUUIDRequest::release_clientuuid() { +inline std::string* getMapRequestRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void getClientMapUUIDRequest::set_allocated_clientuuid(std::string* value) { +inline void getMapRequestRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuid_.IsDefault()) { - _impl_.clientuuid_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestRequest.mapUUID) } -// string mapUUID = 4; -inline void getClientMapUUIDRequest::clear_mapuuid() { +// sint32 keyframeImagesOption = 4; +inline void getMapRequestRequest::clear_keyframeimagesoption() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.keyframeimagesoption_ = 0; +} +inline ::int32_t getMapRequestRequest::keyframeimagesoption() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.keyframeImagesOption) + return _internal_keyframeimagesoption(); +} +inline void getMapRequestRequest::set_keyframeimagesoption(::int32_t value) { + _internal_set_keyframeimagesoption(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.keyframeImagesOption) +} +inline ::int32_t getMapRequestRequest::_internal_keyframeimagesoption() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.keyframeimagesoption_; +} +inline void getMapRequestRequest::_internal_set_keyframeimagesoption(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.keyframeimagesoption_ = value; +} + +// bytes mapDatastructure = 5; +inline void getMapRequestRequest::clear_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.ClearToEmpty(); + _impl_.mapdatastructure_.ClearToEmpty(); } -inline const std::string& getClientMapUUIDRequest::mapuuid() const +inline const std::string& getMapRequestRequest::mapdatastructure() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) + return _internal_mapdatastructure(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_mapdatastructure(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) + _impl_.mapdatastructure_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) } -inline std::string* getClientMapUUIDRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) +inline std::string* getMapRequestRequest::mutable_mapdatastructure() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapdatastructure(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) return _s; } -inline const std::string& getClientMapUUIDRequest::_internal_mapuuid() const { +inline const std::string& getMapRequestRequest::_internal_mapdatastructure() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.mapdatastructure_.Get(); } -inline void getClientMapUUIDRequest::_internal_set_mapuuid(const std::string& value) { +inline void getMapRequestRequest::_internal_set_mapdatastructure(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.mapdatastructure_.Set(value, GetArena()); } -inline std::string* getClientMapUUIDRequest::_internal_mutable_mapuuid() { +inline std::string* getMapRequestRequest::_internal_mutable_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.mapdatastructure_.Mutable( GetArena()); } -inline std::string* getClientMapUUIDRequest::release_mapuuid() { +inline std::string* getMapRequestRequest::release_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) + return _impl_.mapdatastructure_.Release(); } -inline void getClientMapUUIDRequest::set_allocated_mapuuid(std::string* value) { +inline void getMapRequestRequest::set_allocated_mapdatastructure(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.mapdatastructure_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.mapdatastructure_.IsDefault()) { + _impl_.mapdatastructure_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) } // ------------------------------------------------------------------- -// getClientMapUUIDResponse +// getMapRequestResponse -// string mapUUID = 1; -inline void getClientMapUUIDResponse::clear_mapuuid() { +// bytes mapDatastructure = 1; +inline void getMapRequestResponse::clear_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.ClearToEmpty(); + _impl_.mapdatastructure_.ClearToEmpty(); } -inline const std::string& getClientMapUUIDResponse::mapuuid() const +inline const std::string& getMapRequestResponse::mapdatastructure() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) + return _internal_mapdatastructure(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDResponse::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapRequestResponse::set_mapdatastructure(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) + _impl_.mapdatastructure_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) } -inline std::string* getClientMapUUIDResponse::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) +inline std::string* getMapRequestResponse::mutable_mapdatastructure() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapdatastructure(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) return _s; } -inline const std::string& getClientMapUUIDResponse::_internal_mapuuid() const { +inline const std::string& getMapRequestResponse::_internal_mapdatastructure() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.mapdatastructure_.Get(); } -inline void getClientMapUUIDResponse::_internal_set_mapuuid(const std::string& value) { +inline void getMapRequestResponse::_internal_set_mapdatastructure(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.mapdatastructure_.Set(value, GetArena()); } -inline std::string* getClientMapUUIDResponse::_internal_mutable_mapuuid() { +inline std::string* getMapRequestResponse::_internal_mutable_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.mapdatastructure_.Mutable( GetArena()); } -inline std::string* getClientMapUUIDResponse::release_mapuuid() { +inline std::string* getMapRequestResponse::release_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) + return _impl_.mapdatastructure_.Release(); } -inline void getClientMapUUIDResponse::set_allocated_mapuuid(std::string* value) { +inline void getMapRequestResponse::set_allocated_mapdatastructure(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.mapdatastructure_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.mapdatastructure_.IsDefault()) { + _impl_.mapdatastructure_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) } // sint32 xpcfGrpcReturnValue = 2; -inline void getClientMapUUIDResponse::clear_xpcfgrpcreturnvalue() { +inline void getMapRequestResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getClientMapUUIDResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDResponse.xpcfGrpcReturnValue) +inline ::int32_t getMapRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getClientMapUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t getClientMapUUIDResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getClientMapUUIDResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getClientInfoForMapRequest +// setMapRequestRequest // int32 grpcServerCompressionFormat = 1; -inline void getClientInfoForMapRequest::clear_grpcservercompressionformat() { +inline void setMapRequestRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getClientInfoForMapRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.grpcServerCompressionFormat) +inline ::int32_t setMapRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getClientInfoForMapRequest::set_grpcservercompressionformat(::int32_t value) { +inline void setMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.grpcServerCompressionFormat) } -inline ::int32_t getClientInfoForMapRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t setMapRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getClientInfoForMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void setMapRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void getClientInfoForMapRequest::clear_accesstoken() { +inline void setMapRequestRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getClientInfoForMapRequest::accesstoken() const +inline const std::string& setMapRequestRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.accessToken) } -inline std::string* getClientInfoForMapRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* setMapRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setMapRequestRequest.accessToken) return _s; } -inline const std::string& getClientInfoForMapRequest::_internal_accesstoken() const { +inline const std::string& setMapRequestRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getClientInfoForMapRequest::_internal_set_accesstoken(const std::string& value) { +inline void setMapRequestRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getClientInfoForMapRequest::_internal_mutable_accesstoken() { +inline std::string* setMapRequestRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getClientInfoForMapRequest::release_accesstoken() { +inline std::string* setMapRequestRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getClientInfoForMapRequest::set_allocated_accesstoken(std::string* value) { +inline void setMapRequestRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -17206,49 +18554,49 @@ inline void getClientInfoForMapRequest::set_allocated_accesstoken(std::string* v _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.accessToken) } // string mapUUID = 3; -inline void getClientInfoForMapRequest::clear_mapuuid() { +inline void setMapRequestRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getClientInfoForMapRequest::mapuuid() const +inline const std::string& setMapRequestRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.mapUUID) } -inline std::string* getClientInfoForMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* setMapRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setMapRequestRequest.mapUUID) return _s; } -inline const std::string& getClientInfoForMapRequest::_internal_mapuuid() const { +inline const std::string& setMapRequestRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.mapuuid_.Get(); } -inline void getClientInfoForMapRequest::_internal_set_mapuuid(const std::string& value) { +inline void setMapRequestRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* getClientInfoForMapRequest::_internal_mutable_mapuuid() { +inline std::string* setMapRequestRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getClientInfoForMapRequest::release_mapuuid() { +inline std::string* setMapRequestRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.mapUUID) return _impl_.mapuuid_.Release(); } -inline void getClientInfoForMapRequest::set_allocated_mapuuid(std::string* value) { +inline void setMapRequestRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -17256,201 +18604,151 @@ inline void getClientInfoForMapRequest::set_allocated_mapuuid(std::string* value _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) -} - -// bytes clientInfoList = 4; -inline void getClientInfoForMapRequest::clear_clientinfolist() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.ClearToEmpty(); -} -inline const std::string& getClientInfoForMapRequest::clientinfolist() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) - return _internal_clientinfolist(); -} -template -inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapRequest::set_clientinfolist(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) -} -inline std::string* getClientInfoForMapRequest::mutable_clientinfolist() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientinfolist(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) - return _s; -} -inline const std::string& getClientInfoForMapRequest::_internal_clientinfolist() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientinfolist_.Get(); -} -inline void getClientInfoForMapRequest::_internal_set_clientinfolist(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.Set(value, GetArena()); -} -inline std::string* getClientInfoForMapRequest::_internal_mutable_clientinfolist() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientinfolist_.Mutable( GetArena()); -} -inline std::string* getClientInfoForMapRequest::release_clientinfolist() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) - return _impl_.clientinfolist_.Release(); -} -inline void getClientInfoForMapRequest::set_allocated_clientinfolist(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientinfolist_.IsDefault()) { - _impl_.clientinfolist_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.mapUUID) } -// ------------------------------------------------------------------- - -// getClientInfoForMapResponse - -// bytes clientInfoList = 1; -inline void getClientInfoForMapResponse::clear_clientinfolist() { +// bytes mapDatastructure = 4; +inline void setMapRequestRequest::clear_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.ClearToEmpty(); + _impl_.mapdatastructure_.ClearToEmpty(); } -inline const std::string& getClientInfoForMapResponse::clientinfolist() const +inline const std::string& setMapRequestRequest::mapdatastructure() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) - return _internal_clientinfolist(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) + return _internal_mapdatastructure(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapResponse::set_clientinfolist(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_mapdatastructure(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) + _impl_.mapdatastructure_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) } -inline std::string* getClientInfoForMapResponse::mutable_clientinfolist() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientinfolist(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) +inline std::string* setMapRequestRequest::mutable_mapdatastructure() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapdatastructure(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) return _s; } -inline const std::string& getClientInfoForMapResponse::_internal_clientinfolist() const { +inline const std::string& setMapRequestRequest::_internal_mapdatastructure() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientinfolist_.Get(); + return _impl_.mapdatastructure_.Get(); } -inline void getClientInfoForMapResponse::_internal_set_clientinfolist(const std::string& value) { +inline void setMapRequestRequest::_internal_set_mapdatastructure(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.Set(value, GetArena()); + _impl_.mapdatastructure_.Set(value, GetArena()); } -inline std::string* getClientInfoForMapResponse::_internal_mutable_clientinfolist() { +inline std::string* setMapRequestRequest::_internal_mutable_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientinfolist_.Mutable( GetArena()); + return _impl_.mapdatastructure_.Mutable( GetArena()); } -inline std::string* getClientInfoForMapResponse::release_clientinfolist() { +inline std::string* setMapRequestRequest::release_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) - return _impl_.clientinfolist_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) + return _impl_.mapdatastructure_.Release(); } -inline void getClientInfoForMapResponse::set_allocated_clientinfolist(std::string* value) { +inline void setMapRequestRequest::set_allocated_mapdatastructure(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.SetAllocated(value, GetArena()); + _impl_.mapdatastructure_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientinfolist_.IsDefault()) { - _impl_.clientinfolist_.Set("", GetArena()); + if (_impl_.mapdatastructure_.IsDefault()) { + _impl_.mapdatastructure_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getClientInfoForMapResponse::clear_xpcfgrpcreturnvalue() { +// ------------------------------------------------------------------- + +// setMapRequestResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void setMapRequestResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getClientInfoForMapResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapResponse.xpcfGrpcReturnValue) +inline ::int32_t setMapRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getClientInfoForMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t getClientInfoForMapResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t setMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getClientInfoForMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getMapRequestRequest +// getPointCloudRequestRequest // int32 grpcServerCompressionFormat = 1; -inline void getMapRequestRequest::clear_grpcservercompressionformat() { +inline void getPointCloudRequestRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getMapRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.grpcServerCompressionFormat) +inline ::int32_t getPointCloudRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getPointCloudRequestRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.grpcServerCompressionFormat) } -inline ::int32_t getMapRequestRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getPointCloudRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getMapRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getPointCloudRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void getMapRequestRequest::clear_accesstoken() { +inline void getPointCloudRequestRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getMapRequestRequest::accesstoken() const +inline const std::string& getPointCloudRequestRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) } -inline std::string* getMapRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getPointCloudRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) return _s; } -inline const std::string& getMapRequestRequest::_internal_accesstoken() const { +inline const std::string& getPointCloudRequestRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getMapRequestRequest::_internal_set_accesstoken(const std::string& value) { +inline void getPointCloudRequestRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getMapRequestRequest::_internal_mutable_accesstoken() { +inline std::string* getPointCloudRequestRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getMapRequestRequest::release_accesstoken() { +inline std::string* getPointCloudRequestRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getMapRequestRequest::set_allocated_accesstoken(std::string* value) { +inline void getPointCloudRequestRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -17458,49 +18756,49 @@ inline void getMapRequestRequest::set_allocated_accesstoken(std::string* value) _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) } // string mapUUID = 3; -inline void getMapRequestRequest::clear_mapuuid() { +inline void getPointCloudRequestRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getMapRequestRequest::mapuuid() const +inline const std::string& getPointCloudRequestRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) } -inline std::string* getMapRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getPointCloudRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) return _s; } -inline const std::string& getMapRequestRequest::_internal_mapuuid() const { +inline const std::string& getPointCloudRequestRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.mapuuid_.Get(); } -inline void getMapRequestRequest::_internal_set_mapuuid(const std::string& value) { +inline void getPointCloudRequestRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* getMapRequestRequest::_internal_mutable_mapuuid() { +inline std::string* getPointCloudRequestRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getMapRequestRequest::release_mapuuid() { +inline std::string* getPointCloudRequestRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) return _impl_.mapuuid_.Release(); } -inline void getMapRequestRequest::set_allocated_mapuuid(std::string* value) { +inline void getPointCloudRequestRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -17508,223 +18806,201 @@ inline void getMapRequestRequest::set_allocated_mapuuid(std::string* value) { _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestRequest.mapUUID) -} - -// sint32 keyframeImagesOption = 4; -inline void getMapRequestRequest::clear_keyframeimagesoption() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeimagesoption_ = 0; -} -inline ::int32_t getMapRequestRequest::keyframeimagesoption() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.keyframeImagesOption) - return _internal_keyframeimagesoption(); -} -inline void getMapRequestRequest::set_keyframeimagesoption(::int32_t value) { - _internal_set_keyframeimagesoption(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.keyframeImagesOption) -} -inline ::int32_t getMapRequestRequest::_internal_keyframeimagesoption() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframeimagesoption_; -} -inline void getMapRequestRequest::_internal_set_keyframeimagesoption(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeimagesoption_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) } -// bytes mapDatastructure = 5; -inline void getMapRequestRequest::clear_mapdatastructure() { +// bytes pointCloud = 4; +inline void getPointCloudRequestRequest::clear_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.ClearToEmpty(); + _impl_.pointcloud_.ClearToEmpty(); } -inline const std::string& getMapRequestRequest::mapdatastructure() const +inline const std::string& getPointCloudRequestRequest::pointcloud() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) - return _internal_mapdatastructure(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) + return _internal_pointcloud(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_mapdatastructure(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_pointcloud(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) + _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) } -inline std::string* getMapRequestRequest::mutable_mapdatastructure() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapdatastructure(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) +inline std::string* getPointCloudRequestRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_pointcloud(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) return _s; } -inline const std::string& getMapRequestRequest::_internal_mapdatastructure() const { +inline const std::string& getPointCloudRequestRequest::_internal_pointcloud() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapdatastructure_.Get(); + return _impl_.pointcloud_.Get(); } -inline void getMapRequestRequest::_internal_set_mapdatastructure(const std::string& value) { +inline void getPointCloudRequestRequest::_internal_set_pointcloud(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.Set(value, GetArena()); + _impl_.pointcloud_.Set(value, GetArena()); } -inline std::string* getMapRequestRequest::_internal_mutable_mapdatastructure() { +inline std::string* getPointCloudRequestRequest::_internal_mutable_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapdatastructure_.Mutable( GetArena()); + return _impl_.pointcloud_.Mutable( GetArena()); } -inline std::string* getMapRequestRequest::release_mapdatastructure() { +inline std::string* getPointCloudRequestRequest::release_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) - return _impl_.mapdatastructure_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) + return _impl_.pointcloud_.Release(); } -inline void getMapRequestRequest::set_allocated_mapdatastructure(std::string* value) { +inline void getPointCloudRequestRequest::set_allocated_pointcloud(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetAllocated(value, GetArena()); + _impl_.pointcloud_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapdatastructure_.IsDefault()) { - _impl_.mapdatastructure_.Set("", GetArena()); + if (_impl_.pointcloud_.IsDefault()) { + _impl_.pointcloud_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) } // ------------------------------------------------------------------- -// getMapRequestResponse +// getPointCloudRequestResponse -// bytes mapDatastructure = 1; -inline void getMapRequestResponse::clear_mapdatastructure() { +// bytes pointCloud = 1; +inline void getPointCloudRequestResponse::clear_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.ClearToEmpty(); + _impl_.pointcloud_.ClearToEmpty(); } -inline const std::string& getMapRequestResponse::mapdatastructure() const +inline const std::string& getPointCloudRequestResponse::pointcloud() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) - return _internal_mapdatastructure(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) + return _internal_pointcloud(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestResponse::set_mapdatastructure(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestResponse::set_pointcloud(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) + _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) } -inline std::string* getMapRequestResponse::mutable_mapdatastructure() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapdatastructure(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) +inline std::string* getPointCloudRequestResponse::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_pointcloud(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) return _s; } -inline const std::string& getMapRequestResponse::_internal_mapdatastructure() const { +inline const std::string& getPointCloudRequestResponse::_internal_pointcloud() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapdatastructure_.Get(); + return _impl_.pointcloud_.Get(); } -inline void getMapRequestResponse::_internal_set_mapdatastructure(const std::string& value) { +inline void getPointCloudRequestResponse::_internal_set_pointcloud(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.Set(value, GetArena()); + _impl_.pointcloud_.Set(value, GetArena()); } -inline std::string* getMapRequestResponse::_internal_mutable_mapdatastructure() { +inline std::string* getPointCloudRequestResponse::_internal_mutable_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapdatastructure_.Mutable( GetArena()); + return _impl_.pointcloud_.Mutable( GetArena()); } -inline std::string* getMapRequestResponse::release_mapdatastructure() { +inline std::string* getPointCloudRequestResponse::release_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) - return _impl_.mapdatastructure_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) + return _impl_.pointcloud_.Release(); } -inline void getMapRequestResponse::set_allocated_mapdatastructure(std::string* value) { +inline void getPointCloudRequestResponse::set_allocated_pointcloud(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetAllocated(value, GetArena()); + _impl_.pointcloud_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapdatastructure_.IsDefault()) { - _impl_.mapdatastructure_.Set("", GetArena()); + if (_impl_.pointcloud_.IsDefault()) { + _impl_.pointcloud_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) } // sint32 xpcfGrpcReturnValue = 2; -inline void getMapRequestResponse::clear_xpcfgrpcreturnvalue() { +inline void getPointCloudRequestResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getMapRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestResponse.xpcfGrpcReturnValue) +inline ::int32_t getPointCloudRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getPointCloudRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t getMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getPointCloudRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getPointCloudRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// setMapRequestRequest +// getMapInfoRequest // int32 grpcServerCompressionFormat = 1; -inline void setMapRequestRequest::clear_grpcservercompressionformat() { +inline void getMapInfoRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t setMapRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.grpcServerCompressionFormat) +inline ::int32_t getMapInfoRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void setMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getMapInfoRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.grpcServerCompressionFormat) } -inline ::int32_t setMapRequestRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getMapInfoRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void setMapRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getMapInfoRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void setMapRequestRequest::clear_accesstoken() { +inline void getMapInfoRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& setMapRequestRequest::accesstoken() const +inline const std::string& getMapInfoRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.accessToken) } -inline std::string* setMapRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getMapInfoRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoRequest.accessToken) return _s; } -inline const std::string& setMapRequestRequest::_internal_accesstoken() const { +inline const std::string& getMapInfoRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void setMapRequestRequest::_internal_set_accesstoken(const std::string& value) { +inline void getMapInfoRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* setMapRequestRequest::_internal_mutable_accesstoken() { +inline std::string* getMapInfoRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* setMapRequestRequest::release_accesstoken() { +inline std::string* getMapInfoRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void setMapRequestRequest::set_allocated_accesstoken(std::string* value) { +inline void getMapInfoRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -17732,49 +19008,49 @@ inline void setMapRequestRequest::set_allocated_accesstoken(std::string* value) _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.accessToken) } // string mapUUID = 3; -inline void setMapRequestRequest::clear_mapuuid() { +inline void getMapInfoRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& setMapRequestRequest::mapuuid() const +inline const std::string& getMapInfoRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.mapUUID) } -inline std::string* setMapRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getMapInfoRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoRequest.mapUUID) return _s; } -inline const std::string& setMapRequestRequest::_internal_mapuuid() const { +inline const std::string& getMapInfoRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.mapuuid_.Get(); } -inline void setMapRequestRequest::_internal_set_mapuuid(const std::string& value) { +inline void getMapInfoRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* setMapRequestRequest::_internal_mutable_mapuuid() { +inline std::string* getMapInfoRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* setMapRequestRequest::release_mapuuid() { +inline std::string* getMapInfoRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.mapUUID) return _impl_.mapuuid_.Release(); } -inline void setMapRequestRequest::set_allocated_mapuuid(std::string* value) { +inline void getMapInfoRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -17782,403 +19058,377 @@ inline void setMapRequestRequest::set_allocated_mapuuid(std::string* value) { _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.mapUUID) } -// bytes mapDatastructure = 4; -inline void setMapRequestRequest::clear_mapdatastructure() { +// string version = 4; +inline void getMapInfoRequest::clear_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.ClearToEmpty(); + _impl_.version_.ClearToEmpty(); } -inline const std::string& setMapRequestRequest::mapdatastructure() const +inline const std::string& getMapInfoRequest::version() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) - return _internal_mapdatastructure(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.version) + return _internal_version(); } template -inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_mapdatastructure(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_version(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) + _impl_.version_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.version) } -inline std::string* setMapRequestRequest::mutable_mapdatastructure() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapdatastructure(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) +inline std::string* getMapInfoRequest::mutable_version() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_version(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoRequest.version) return _s; } -inline const std::string& setMapRequestRequest::_internal_mapdatastructure() const { +inline const std::string& getMapInfoRequest::_internal_version() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapdatastructure_.Get(); + return _impl_.version_.Get(); } -inline void setMapRequestRequest::_internal_set_mapdatastructure(const std::string& value) { +inline void getMapInfoRequest::_internal_set_version(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.Set(value, GetArena()); + _impl_.version_.Set(value, GetArena()); } -inline std::string* setMapRequestRequest::_internal_mutable_mapdatastructure() { +inline std::string* getMapInfoRequest::_internal_mutable_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapdatastructure_.Mutable( GetArena()); + return _impl_.version_.Mutable( GetArena()); } -inline std::string* setMapRequestRequest::release_mapdatastructure() { +inline std::string* getMapInfoRequest::release_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) - return _impl_.mapdatastructure_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.version) + return _impl_.version_.Release(); } -inline void setMapRequestRequest::set_allocated_mapdatastructure(std::string* value) { +inline void getMapInfoRequest::set_allocated_version(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetAllocated(value, GetArena()); + _impl_.version_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapdatastructure_.IsDefault()) { - _impl_.mapdatastructure_.Set("", GetArena()); + if (_impl_.version_.IsDefault()) { + _impl_.version_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.version) } -// ------------------------------------------------------------------- - -// setMapRequestResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void setMapRequestResponse::clear_xpcfgrpcreturnvalue() { +// sint32 globalDescriptorType = 5; +inline void getMapInfoRequest::clear_globaldescriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.globaldescriptortype_ = 0; } -inline ::int32_t setMapRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline ::int32_t getMapInfoRequest::globaldescriptortype() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.globalDescriptorType) + return _internal_globaldescriptortype(); } -inline void setMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestResponse.xpcfGrpcReturnValue) +inline void getMapInfoRequest::set_globaldescriptortype(::int32_t value) { + _internal_set_globaldescriptortype(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.globalDescriptorType) } -inline ::int32_t setMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getMapInfoRequest::_internal_globaldescriptortype() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; + return _impl_.globaldescriptortype_; } -inline void setMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapInfoRequest::_internal_set_globaldescriptortype(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + _impl_.globaldescriptortype_ = value; } -// ------------------------------------------------------------------- - -// getPointCloudRequestRequest - -// int32 grpcServerCompressionFormat = 1; -inline void getPointCloudRequestRequest::clear_grpcservercompressionformat() { +// sint32 descriptorType = 6; +inline void getMapInfoRequest::clear_descriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + _impl_.descriptortype_ = 0; } -inline ::int32_t getPointCloudRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline ::int32_t getMapInfoRequest::descriptortype() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.descriptorType) + return _internal_descriptortype(); } -inline void getPointCloudRequestRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.grpcServerCompressionFormat) +inline void getMapInfoRequest::set_descriptortype(::int32_t value) { + _internal_set_descriptortype(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.descriptorType) } -inline ::int32_t getPointCloudRequestRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getMapInfoRequest::_internal_descriptortype() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.descriptortype_; } -inline void getPointCloudRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getMapInfoRequest::_internal_set_descriptortype(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.descriptortype_ = value; } -// string accessToken = 2; -inline void getPointCloudRequestRequest::clear_accesstoken() { +// uint32 dataSize = 7; +inline void getMapInfoRequest::clear_datasize() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); -} -inline const std::string& getPointCloudRequestRequest::accesstoken() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) - return _internal_accesstoken(); + _impl_.datasize_ = 0u; } -template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_accesstoken(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) +inline ::uint32_t getMapInfoRequest::datasize() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.dataSize) + return _internal_datasize(); } -inline std::string* getPointCloudRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) - return _s; +inline void getMapInfoRequest::set_datasize(::uint32_t value) { + _internal_set_datasize(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.dataSize) } -inline const std::string& getPointCloudRequestRequest::_internal_accesstoken() const { +inline ::uint32_t getMapInfoRequest::_internal_datasize() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.datasize_; } -inline void getPointCloudRequestRequest::_internal_set_accesstoken(const std::string& value) { +inline void getMapInfoRequest::_internal_set_datasize(::uint32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.datasize_ = value; } -inline std::string* getPointCloudRequestRequest::_internal_mutable_accesstoken() { + +// bool areImageSaved = 8; +inline void getMapInfoRequest::clear_areimagesaved() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + _impl_.areimagesaved_ = false; } -inline std::string* getPointCloudRequestRequest::release_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) - return _impl_.accesstoken_.Release(); +inline bool getMapInfoRequest::areimagesaved() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.areImageSaved) + return _internal_areimagesaved(); +} +inline void getMapInfoRequest::set_areimagesaved(bool value) { + _internal_set_areimagesaved(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.areImageSaved) +} +inline bool getMapInfoRequest::_internal_areimagesaved() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.areimagesaved_; } -inline void getPointCloudRequestRequest::set_allocated_accesstoken(std::string* value) { +inline void getMapInfoRequest::_internal_set_areimagesaved(bool value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) + _impl_.areimagesaved_ = value; } -// string mapUUID = 3; -inline void getPointCloudRequestRequest::clear_mapuuid() { +// ------------------------------------------------------------------- + +// getMapInfoResponse + +// string version = 1; +inline void getMapInfoResponse::clear_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.ClearToEmpty(); + _impl_.version_.ClearToEmpty(); } -inline const std::string& getPointCloudRequestRequest::mapuuid() const +inline const std::string& getMapInfoResponse::version() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.version) + return _internal_version(); } template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapInfoResponse::set_version(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) + _impl_.version_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.version) } -inline std::string* getPointCloudRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) +inline std::string* getMapInfoResponse::mutable_version() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_version(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoResponse.version) return _s; } -inline const std::string& getPointCloudRequestRequest::_internal_mapuuid() const { +inline const std::string& getMapInfoResponse::_internal_version() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.version_.Get(); } -inline void getPointCloudRequestRequest::_internal_set_mapuuid(const std::string& value) { +inline void getMapInfoResponse::_internal_set_version(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.version_.Set(value, GetArena()); } -inline std::string* getPointCloudRequestRequest::_internal_mutable_mapuuid() { +inline std::string* getMapInfoResponse::_internal_mutable_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.version_.Mutable( GetArena()); } -inline std::string* getPointCloudRequestRequest::release_mapuuid() { +inline std::string* getMapInfoResponse::release_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoResponse.version) + return _impl_.version_.Release(); } -inline void getPointCloudRequestRequest::set_allocated_mapuuid(std::string* value) { +inline void getMapInfoResponse::set_allocated_version(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.version_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.version_.IsDefault()) { + _impl_.version_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoResponse.version) } -// bytes pointCloud = 4; -inline void getPointCloudRequestRequest::clear_pointcloud() { +// sint32 globalDescriptorType = 2; +inline void getMapInfoResponse::clear_globaldescriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.ClearToEmpty(); -} -inline const std::string& getPointCloudRequestRequest::pointcloud() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) - return _internal_pointcloud(); + _impl_.globaldescriptortype_ = 0; } -template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_pointcloud(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) +inline ::int32_t getMapInfoResponse::globaldescriptortype() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.globalDescriptorType) + return _internal_globaldescriptortype(); } -inline std::string* getPointCloudRequestRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) - return _s; +inline void getMapInfoResponse::set_globaldescriptortype(::int32_t value) { + _internal_set_globaldescriptortype(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.globalDescriptorType) } -inline const std::string& getPointCloudRequestRequest::_internal_pointcloud() const { +inline ::int32_t getMapInfoResponse::_internal_globaldescriptortype() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pointcloud_.Get(); + return _impl_.globaldescriptortype_; } -inline void getPointCloudRequestRequest::_internal_set_pointcloud(const std::string& value) { +inline void getMapInfoResponse::_internal_set_globaldescriptortype(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.Set(value, GetArena()); + _impl_.globaldescriptortype_ = value; } -inline std::string* getPointCloudRequestRequest::_internal_mutable_pointcloud() { + +// sint32 descriptorType = 3; +inline void getMapInfoResponse::clear_descriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pointcloud_.Mutable( GetArena()); + _impl_.descriptortype_ = 0; } -inline std::string* getPointCloudRequestRequest::release_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) - return _impl_.pointcloud_.Release(); +inline ::int32_t getMapInfoResponse::descriptortype() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.descriptorType) + return _internal_descriptortype(); } -inline void getPointCloudRequestRequest::set_allocated_pointcloud(std::string* value) { +inline void getMapInfoResponse::set_descriptortype(::int32_t value) { + _internal_set_descriptortype(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.descriptorType) +} +inline ::int32_t getMapInfoResponse::_internal_descriptortype() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.descriptortype_; +} +inline void getMapInfoResponse::_internal_set_descriptortype(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.pointcloud_.IsDefault()) { - _impl_.pointcloud_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) + _impl_.descriptortype_ = value; } -// ------------------------------------------------------------------- - -// getPointCloudRequestResponse - -// bytes pointCloud = 1; -inline void getPointCloudRequestResponse::clear_pointcloud() { +// uint32 dataSize = 4; +inline void getMapInfoResponse::clear_datasize() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.ClearToEmpty(); -} -inline const std::string& getPointCloudRequestResponse::pointcloud() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) - return _internal_pointcloud(); + _impl_.datasize_ = 0u; } -template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestResponse::set_pointcloud(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) +inline ::uint32_t getMapInfoResponse::datasize() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.dataSize) + return _internal_datasize(); } -inline std::string* getPointCloudRequestResponse::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) - return _s; +inline void getMapInfoResponse::set_datasize(::uint32_t value) { + _internal_set_datasize(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.dataSize) } -inline const std::string& getPointCloudRequestResponse::_internal_pointcloud() const { +inline ::uint32_t getMapInfoResponse::_internal_datasize() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pointcloud_.Get(); + return _impl_.datasize_; } -inline void getPointCloudRequestResponse::_internal_set_pointcloud(const std::string& value) { +inline void getMapInfoResponse::_internal_set_datasize(::uint32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.Set(value, GetArena()); + _impl_.datasize_ = value; } -inline std::string* getPointCloudRequestResponse::_internal_mutable_pointcloud() { + +// bool areImageSaved = 5; +inline void getMapInfoResponse::clear_areimagesaved() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pointcloud_.Mutable( GetArena()); + _impl_.areimagesaved_ = false; } -inline std::string* getPointCloudRequestResponse::release_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) - return _impl_.pointcloud_.Release(); +inline bool getMapInfoResponse::areimagesaved() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.areImageSaved) + return _internal_areimagesaved(); } -inline void getPointCloudRequestResponse::set_allocated_pointcloud(std::string* value) { +inline void getMapInfoResponse::set_areimagesaved(bool value) { + _internal_set_areimagesaved(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.areImageSaved) +} +inline bool getMapInfoResponse::_internal_areimagesaved() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.areimagesaved_; +} +inline void getMapInfoResponse::_internal_set_areimagesaved(bool value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.pointcloud_.IsDefault()) { - _impl_.pointcloud_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) + _impl_.areimagesaved_ = value; } -// sint32 xpcfGrpcReturnValue = 2; -inline void getPointCloudRequestResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 6; +inline void getMapInfoResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getPointCloudRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestResponse.xpcfGrpcReturnValue) +inline ::int32_t getMapInfoResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getPointCloudRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapInfoResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.xpcfGrpcReturnValue) } -inline ::int32_t getPointCloudRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getMapInfoResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getPointCloudRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapInfoResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getMapInfoRequest +// backupMapRequest // int32 grpcServerCompressionFormat = 1; -inline void getMapInfoRequest::clear_grpcservercompressionformat() { +inline void backupMapRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getMapInfoRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.grpcServerCompressionFormat) +inline ::int32_t backupMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getMapInfoRequest::set_grpcservercompressionformat(::int32_t value) { +inline void backupMapRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.grpcServerCompressionFormat) } -inline ::int32_t getMapInfoRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t backupMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getMapInfoRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void backupMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void getMapInfoRequest::clear_accesstoken() { +inline void backupMapRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getMapInfoRequest::accesstoken() const +inline const std::string& backupMapRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.accessToken) } -inline std::string* getMapInfoRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* backupMapRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.accessToken) return _s; } -inline const std::string& getMapInfoRequest::_internal_accesstoken() const { +inline const std::string& backupMapRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getMapInfoRequest::_internal_set_accesstoken(const std::string& value) { +inline void backupMapRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getMapInfoRequest::_internal_mutable_accesstoken() { +inline std::string* backupMapRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getMapInfoRequest::release_accesstoken() { +inline std::string* backupMapRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getMapInfoRequest::set_allocated_accesstoken(std::string* value) { +inline void backupMapRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -18186,49 +19436,49 @@ inline void getMapInfoRequest::set_allocated_accesstoken(std::string* value) { _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.accessToken) } // string mapUUID = 3; -inline void getMapInfoRequest::clear_mapuuid() { +inline void backupMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getMapInfoRequest::mapuuid() const +inline const std::string& backupMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.mapUUID) } -inline std::string* getMapInfoRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* backupMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.mapUUID) return _s; } -inline const std::string& getMapInfoRequest::_internal_mapuuid() const { +inline const std::string& backupMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.mapuuid_.Get(); } -inline void getMapInfoRequest::_internal_set_mapuuid(const std::string& value) { +inline void backupMapRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* getMapInfoRequest::_internal_mutable_mapuuid() { +inline std::string* backupMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getMapInfoRequest::release_mapuuid() { +inline std::string* backupMapRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.mapUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.mapUUID) return _impl_.mapuuid_.Release(); } -inline void getMapInfoRequest::set_allocated_mapuuid(std::string* value) { +inline void backupMapRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -18236,307 +19486,333 @@ inline void getMapInfoRequest::set_allocated_mapuuid(std::string* value) { _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.mapUUID) } -// string version = 4; -inline void getMapInfoRequest::clear_version() { +// bytes compressedZipData = 4; +inline void backupMapRequest::clear_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); } -inline const std::string& getMapInfoRequest::version() const +inline const std::string& backupMapRequest::compressedzipdata() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.version) - return _internal_version(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.compressedZipData) + return _internal_compressedzipdata(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_version(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_compressedzipdata(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.version) + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.compressedZipData) } -inline std::string* getMapInfoRequest::mutable_version() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_version(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoRequest.version) +inline std::string* backupMapRequest::mutable_compressedzipdata() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressedzipdata(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.compressedZipData) return _s; } -inline const std::string& getMapInfoRequest::_internal_version() const { +inline const std::string& backupMapRequest::_internal_compressedzipdata() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.version_.Get(); + return _impl_.compressedzipdata_.Get(); } -inline void getMapInfoRequest::_internal_set_version(const std::string& value) { +inline void backupMapRequest::_internal_set_compressedzipdata(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.Set(value, GetArena()); + _impl_.compressedzipdata_.Set(value, GetArena()); } -inline std::string* getMapInfoRequest::_internal_mutable_version() { +inline std::string* backupMapRequest::_internal_mutable_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.version_.Mutable( GetArena()); + return _impl_.compressedzipdata_.Mutable( GetArena()); } -inline std::string* getMapInfoRequest::release_version() { +inline std::string* backupMapRequest::release_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.version) - return _impl_.version_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.compressedZipData) + return _impl_.compressedzipdata_.Release(); } -inline void getMapInfoRequest::set_allocated_version(std::string* value) { +inline void backupMapRequest::set_allocated_compressedzipdata(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.SetAllocated(value, GetArena()); + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.version_.IsDefault()) { - _impl_.version_.Set("", GetArena()); + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.version) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.compressedZipData) } -// sint32 globalDescriptorType = 5; -inline void getMapInfoRequest::clear_globaldescriptortype() { +// ------------------------------------------------------------------- + +// backupMapResponse + +// bytes compressedZipData = 1; +inline void backupMapResponse::clear_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = 0; + _impl_.compressedzipdata_.ClearToEmpty(); } -inline ::int32_t getMapInfoRequest::globaldescriptortype() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.globalDescriptorType) - return _internal_globaldescriptortype(); +inline const std::string& backupMapResponse::compressedzipdata() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.compressedZipData) + return _internal_compressedzipdata(); } -inline void getMapInfoRequest::set_globaldescriptortype(::int32_t value) { - _internal_set_globaldescriptortype(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.globalDescriptorType) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_compressedzipdata(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.compressedZipData) } -inline ::int32_t getMapInfoRequest::_internal_globaldescriptortype() const { +inline std::string* backupMapResponse::mutable_compressedzipdata() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressedzipdata(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.compressedZipData) + return _s; +} +inline const std::string& backupMapResponse::_internal_compressedzipdata() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.globaldescriptortype_; + return _impl_.compressedzipdata_.Get(); } -inline void getMapInfoRequest::_internal_set_globaldescriptortype(::int32_t value) { +inline void backupMapResponse::_internal_set_compressedzipdata(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = value; + _impl_.compressedzipdata_.Set(value, GetArena()); } - -// sint32 descriptorType = 6; -inline void getMapInfoRequest::clear_descriptortype() { +inline std::string* backupMapResponse::_internal_mutable_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = 0; -} -inline ::int32_t getMapInfoRequest::descriptortype() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.descriptorType) - return _internal_descriptortype(); + return _impl_.compressedzipdata_.Mutable( GetArena()); } -inline void getMapInfoRequest::set_descriptortype(::int32_t value) { - _internal_set_descriptortype(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.descriptorType) -} -inline ::int32_t getMapInfoRequest::_internal_descriptortype() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.descriptortype_; +inline std::string* backupMapResponse::release_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.compressedZipData) + return _impl_.compressedzipdata_.Release(); } -inline void getMapInfoRequest::_internal_set_descriptortype(::int32_t value) { +inline void backupMapResponse::set_allocated_compressedzipdata(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = value; + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.compressedZipData) } -// uint32 dataSize = 7; -inline void getMapInfoRequest::clear_datasize() { +// sint32 xpcfGrpcReturnValue = 2; +inline void backupMapResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = 0u; + _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::uint32_t getMapInfoRequest::datasize() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.dataSize) - return _internal_datasize(); +inline ::int32_t backupMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); } -inline void getMapInfoRequest::set_datasize(::uint32_t value) { - _internal_set_datasize(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.dataSize) +inline void backupMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.xpcfGrpcReturnValue) } -inline ::uint32_t getMapInfoRequest::_internal_datasize() const { +inline ::int32_t backupMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.datasize_; + return _impl_.xpcfgrpcreturnvalue_; } -inline void getMapInfoRequest::_internal_set_datasize(::uint32_t value) { +inline void backupMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = value; + _impl_.xpcfgrpcreturnvalue_ = value; } -// bool areImageSaved = 8; -inline void getMapInfoRequest::clear_areimagesaved() { +// ------------------------------------------------------------------- + +// restoreMapRequest + +// int32 grpcServerCompressionFormat = 1; +inline void restoreMapRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = false; + _impl_.grpcservercompressionformat_ = 0; } -inline bool getMapInfoRequest::areimagesaved() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.areImageSaved) - return _internal_areimagesaved(); +inline ::int32_t restoreMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); } -inline void getMapInfoRequest::set_areimagesaved(bool value) { - _internal_set_areimagesaved(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.areImageSaved) +inline void restoreMapRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.grpcServerCompressionFormat) } -inline bool getMapInfoRequest::_internal_areimagesaved() const { +inline ::int32_t restoreMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.areimagesaved_; + return _impl_.grpcservercompressionformat_; } -inline void getMapInfoRequest::_internal_set_areimagesaved(bool value) { +inline void restoreMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = value; + _impl_.grpcservercompressionformat_ = value; } -// ------------------------------------------------------------------- - -// getMapInfoResponse - -// string version = 1; -inline void getMapInfoResponse::clear_version() { +// string accessToken = 2; +inline void restoreMapRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.ClearToEmpty(); + _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getMapInfoResponse::version() const +inline const std::string& restoreMapRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.version) - return _internal_version(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoResponse::set_version(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.version) + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.accessToken) } -inline std::string* getMapInfoResponse::mutable_version() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_version(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoResponse.version) +inline std::string* restoreMapRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.accessToken) return _s; } -inline const std::string& getMapInfoResponse::_internal_version() const { +inline const std::string& restoreMapRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.version_.Get(); + return _impl_.accesstoken_.Get(); } -inline void getMapInfoResponse::_internal_set_version(const std::string& value) { +inline void restoreMapRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.Set(value, GetArena()); + _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getMapInfoResponse::_internal_mutable_version() { +inline std::string* restoreMapRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.version_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getMapInfoResponse::release_version() { +inline std::string* restoreMapRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoResponse.version) - return _impl_.version_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void getMapInfoResponse::set_allocated_version(std::string* value) { +inline void restoreMapRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.SetAllocated(value, GetArena()); + _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.version_.IsDefault()) { - _impl_.version_.Set("", GetArena()); + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoResponse.version) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.accessToken) } -// sint32 globalDescriptorType = 2; -inline void getMapInfoResponse::clear_globaldescriptortype() { +// string mapUUID = 3; +inline void restoreMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = 0; + _impl_.mapuuid_.ClearToEmpty(); } -inline ::int32_t getMapInfoResponse::globaldescriptortype() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.globalDescriptorType) - return _internal_globaldescriptortype(); +inline const std::string& restoreMapRequest::mapuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.mapUUID) + return _internal_mapuuid(); } -inline void getMapInfoResponse::set_globaldescriptortype(::int32_t value) { - _internal_set_globaldescriptortype(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.globalDescriptorType) +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_mapuuid(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.mapUUID) } -inline ::int32_t getMapInfoResponse::_internal_globaldescriptortype() const { +inline std::string* restoreMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.mapUUID) + return _s; +} +inline const std::string& restoreMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.globaldescriptortype_; + return _impl_.mapuuid_.Get(); } -inline void getMapInfoResponse::_internal_set_globaldescriptortype(::int32_t value) { +inline void restoreMapRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = value; + _impl_.mapuuid_.Set(value, GetArena()); } - -// sint32 descriptorType = 3; -inline void getMapInfoResponse::clear_descriptortype() { +inline std::string* restoreMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = 0; -} -inline ::int32_t getMapInfoResponse::descriptortype() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.descriptorType) - return _internal_descriptortype(); -} -inline void getMapInfoResponse::set_descriptortype(::int32_t value) { - _internal_set_descriptortype(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.descriptorType) + return _impl_.mapuuid_.Mutable( GetArena()); } -inline ::int32_t getMapInfoResponse::_internal_descriptortype() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.descriptortype_; +inline std::string* restoreMapRequest::release_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void getMapInfoResponse::_internal_set_descriptortype(::int32_t value) { +inline void restoreMapRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = value; + _impl_.mapuuid_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.mapUUID) } -// uint32 dataSize = 4; -inline void getMapInfoResponse::clear_datasize() { +// bytes compressedZipData = 4; +inline void restoreMapRequest::clear_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = 0u; + _impl_.compressedzipdata_.ClearToEmpty(); } -inline ::uint32_t getMapInfoResponse::datasize() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.dataSize) - return _internal_datasize(); +inline const std::string& restoreMapRequest::compressedzipdata() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.compressedZipData) + return _internal_compressedzipdata(); } -inline void getMapInfoResponse::set_datasize(::uint32_t value) { - _internal_set_datasize(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.dataSize) +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_compressedzipdata(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.compressedZipData) } -inline ::uint32_t getMapInfoResponse::_internal_datasize() const { +inline std::string* restoreMapRequest::mutable_compressedzipdata() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressedzipdata(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.compressedZipData) + return _s; +} +inline const std::string& restoreMapRequest::_internal_compressedzipdata() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.datasize_; + return _impl_.compressedzipdata_.Get(); } -inline void getMapInfoResponse::_internal_set_datasize(::uint32_t value) { +inline void restoreMapRequest::_internal_set_compressedzipdata(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = value; + _impl_.compressedzipdata_.Set(value, GetArena()); } - -// bool areImageSaved = 5; -inline void getMapInfoResponse::clear_areimagesaved() { +inline std::string* restoreMapRequest::_internal_mutable_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = false; -} -inline bool getMapInfoResponse::areimagesaved() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.areImageSaved) - return _internal_areimagesaved(); -} -inline void getMapInfoResponse::set_areimagesaved(bool value) { - _internal_set_areimagesaved(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.areImageSaved) + return _impl_.compressedzipdata_.Mutable( GetArena()); } -inline bool getMapInfoResponse::_internal_areimagesaved() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.areimagesaved_; +inline std::string* restoreMapRequest::release_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.compressedZipData) + return _impl_.compressedzipdata_.Release(); } -inline void getMapInfoResponse::_internal_set_areimagesaved(bool value) { +inline void restoreMapRequest::set_allocated_compressedzipdata(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = value; + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.compressedZipData) } -// sint32 xpcfGrpcReturnValue = 6; -inline void getMapInfoResponse::clear_xpcfgrpcreturnvalue() { +// ------------------------------------------------------------------- + +// restoreMapResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void restoreMapResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getMapInfoResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.xpcfGrpcReturnValue) +inline ::int32_t restoreMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getMapInfoResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void restoreMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapResponse.xpcfGrpcReturnValue) } -inline ::int32_t getMapInfoResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t restoreMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getMapInfoResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void restoreMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } diff --git a/gen/interfaces/grpcIMapsManagerService.grpc.pb.h b/gen/interfaces/grpcIMapsManagerService.grpc.pb.h index 6a3d476..c9ac723 100644 --- a/gen/interfaces/grpcIMapsManagerService.grpc.pb.h +++ b/gen/interfaces/grpcIMapsManagerService.grpc.pb.h @@ -99,6 +99,20 @@ class grpcIMapsManagerService final { std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::getMapInfoResponse>> PrepareAsyncgetMapInfo(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::getMapInfoResponse>>(PrepareAsyncgetMapInfoRaw(context, request, cq)); } + virtual ::grpc::Status backupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpcIMapsManager::backupMapResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::backupMapResponse>> AsyncbackupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::backupMapResponse>>(AsyncbackupMapRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::backupMapResponse>> PrepareAsyncbackupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::backupMapResponse>>(PrepareAsyncbackupMapRaw(context, request, cq)); + } + virtual ::grpc::Status restoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpcIMapsManager::restoreMapResponse* response) = 0; + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::restoreMapResponse>> AsyncrestoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::restoreMapResponse>>(AsyncrestoreMapRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::restoreMapResponse>> PrepareAsyncrestoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::restoreMapResponse>>(PrepareAsyncrestoreMapRaw(context, request, cq)); + } virtual ::grpc::Status requestMapProcessing(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest& request, ::grpcIMapsManager::requestMapProcessingResponse* response) = 0; std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::requestMapProcessingResponse>> AsyncrequestMapProcessing(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::requestMapProcessingResponse>>(AsyncrequestMapProcessingRaw(context, request, cq)); @@ -141,6 +155,10 @@ class grpcIMapsManagerService final { virtual void getPointCloudRequest(::grpc::ClientContext* context, const ::grpcIMapsManager::getPointCloudRequestRequest* request, ::grpcIMapsManager::getPointCloudRequestResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; virtual void getMapInfo(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapInfoRequest* request, ::grpcIMapsManager::getMapInfoResponse* response, std::function) = 0; virtual void getMapInfo(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapInfoRequest* request, ::grpcIMapsManager::getMapInfoResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; + virtual void backupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response, std::function) = 0; + virtual void backupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; + virtual void restoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response, std::function) = 0; + virtual void restoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; virtual void requestMapProcessing(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest* request, ::grpcIMapsManager::requestMapProcessingResponse* response, std::function) = 0; virtual void requestMapProcessing(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest* request, ::grpcIMapsManager::requestMapProcessingResponse* response, ::grpc::ClientUnaryReactor* reactor) = 0; virtual void getMapProcessingStatus(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapProcessingStatusRequest* request, ::grpcIMapsManager::getMapProcessingStatusResponse* response, std::function) = 0; @@ -170,6 +188,10 @@ class grpcIMapsManagerService final { virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::getPointCloudRequestResponse>* PrepareAsyncgetPointCloudRequestRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::getPointCloudRequestRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::getMapInfoResponse>* AsyncgetMapInfoRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::getMapInfoResponse>* PrepareAsyncgetMapInfoRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::backupMapResponse>* AsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::backupMapResponse>* PrepareAsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::restoreMapResponse>* AsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpc::CompletionQueue* cq) = 0; + virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::restoreMapResponse>* PrepareAsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::requestMapProcessingResponse>* AsyncrequestMapProcessingRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::requestMapProcessingResponse>* PrepareAsyncrequestMapProcessingRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) = 0; virtual ::grpc::ClientAsyncResponseReaderInterface< ::grpcIMapsManager::getMapProcessingStatusResponse>* AsyncgetMapProcessingStatusRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapProcessingStatusRequest& request, ::grpc::CompletionQueue* cq) = 0; @@ -243,6 +265,20 @@ class grpcIMapsManagerService final { std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::getMapInfoResponse>> PrepareAsyncgetMapInfo(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::getMapInfoResponse>>(PrepareAsyncgetMapInfoRaw(context, request, cq)); } + ::grpc::Status backupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpcIMapsManager::backupMapResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::backupMapResponse>> AsyncbackupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::backupMapResponse>>(AsyncbackupMapRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::backupMapResponse>> PrepareAsyncbackupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::backupMapResponse>>(PrepareAsyncbackupMapRaw(context, request, cq)); + } + ::grpc::Status restoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpcIMapsManager::restoreMapResponse* response) override; + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::restoreMapResponse>> AsyncrestoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::restoreMapResponse>>(AsyncrestoreMapRaw(context, request, cq)); + } + std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::restoreMapResponse>> PrepareAsyncrestoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::restoreMapResponse>>(PrepareAsyncrestoreMapRaw(context, request, cq)); + } ::grpc::Status requestMapProcessing(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest& request, ::grpcIMapsManager::requestMapProcessingResponse* response) override; std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::requestMapProcessingResponse>> AsyncrequestMapProcessing(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) { return std::unique_ptr< ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::requestMapProcessingResponse>>(AsyncrequestMapProcessingRaw(context, request, cq)); @@ -285,6 +321,10 @@ class grpcIMapsManagerService final { void getPointCloudRequest(::grpc::ClientContext* context, const ::grpcIMapsManager::getPointCloudRequestRequest* request, ::grpcIMapsManager::getPointCloudRequestResponse* response, ::grpc::ClientUnaryReactor* reactor) override; void getMapInfo(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapInfoRequest* request, ::grpcIMapsManager::getMapInfoResponse* response, std::function) override; void getMapInfo(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapInfoRequest* request, ::grpcIMapsManager::getMapInfoResponse* response, ::grpc::ClientUnaryReactor* reactor) override; + void backupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response, std::function) override; + void backupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response, ::grpc::ClientUnaryReactor* reactor) override; + void restoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response, std::function) override; + void restoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response, ::grpc::ClientUnaryReactor* reactor) override; void requestMapProcessing(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest* request, ::grpcIMapsManager::requestMapProcessingResponse* response, std::function) override; void requestMapProcessing(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest* request, ::grpcIMapsManager::requestMapProcessingResponse* response, ::grpc::ClientUnaryReactor* reactor) override; void getMapProcessingStatus(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapProcessingStatusRequest* request, ::grpcIMapsManager::getMapProcessingStatusResponse* response, std::function) override; @@ -320,6 +360,10 @@ class grpcIMapsManagerService final { ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::getPointCloudRequestResponse>* PrepareAsyncgetPointCloudRequestRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::getPointCloudRequestRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::getMapInfoResponse>* AsyncgetMapInfoRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::getMapInfoResponse>* PrepareAsyncgetMapInfoRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapInfoRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::backupMapResponse>* AsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::backupMapResponse>* PrepareAsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::restoreMapResponse>* AsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpc::CompletionQueue* cq) override; + ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::restoreMapResponse>* PrepareAsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::requestMapProcessingResponse>* AsyncrequestMapProcessingRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::requestMapProcessingResponse>* PrepareAsyncrequestMapProcessingRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest& request, ::grpc::CompletionQueue* cq) override; ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::getMapProcessingStatusResponse>* AsyncgetMapProcessingStatusRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::getMapProcessingStatusRequest& request, ::grpc::CompletionQueue* cq) override; @@ -335,6 +379,8 @@ class grpcIMapsManagerService final { const ::grpc::internal::RpcMethod rpcmethod_setMapRequest_; const ::grpc::internal::RpcMethod rpcmethod_getPointCloudRequest_; const ::grpc::internal::RpcMethod rpcmethod_getMapInfo_; + const ::grpc::internal::RpcMethod rpcmethod_backupMap_; + const ::grpc::internal::RpcMethod rpcmethod_restoreMap_; const ::grpc::internal::RpcMethod rpcmethod_requestMapProcessing_; const ::grpc::internal::RpcMethod rpcmethod_getMapProcessingStatus_; const ::grpc::internal::RpcMethod rpcmethod_getMapProcessingData_; @@ -354,6 +400,8 @@ class grpcIMapsManagerService final { virtual ::grpc::Status setMapRequest(::grpc::ServerContext* context, const ::grpcIMapsManager::setMapRequestRequest* request, ::grpcIMapsManager::setMapRequestResponse* response); virtual ::grpc::Status getPointCloudRequest(::grpc::ServerContext* context, const ::grpcIMapsManager::getPointCloudRequestRequest* request, ::grpcIMapsManager::getPointCloudRequestResponse* response); virtual ::grpc::Status getMapInfo(::grpc::ServerContext* context, const ::grpcIMapsManager::getMapInfoRequest* request, ::grpcIMapsManager::getMapInfoResponse* response); + virtual ::grpc::Status backupMap(::grpc::ServerContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response); + virtual ::grpc::Status restoreMap(::grpc::ServerContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response); virtual ::grpc::Status requestMapProcessing(::grpc::ServerContext* context, const ::grpcIMapsManager::requestMapProcessingRequest* request, ::grpcIMapsManager::requestMapProcessingResponse* response); virtual ::grpc::Status getMapProcessingStatus(::grpc::ServerContext* context, const ::grpcIMapsManager::getMapProcessingStatusRequest* request, ::grpcIMapsManager::getMapProcessingStatusResponse* response); virtual ::grpc::Status getMapProcessingData(::grpc::ServerContext* context, const ::grpcIMapsManager::getMapProcessingDataRequest* request, ::grpcIMapsManager::getMapProcessingDataResponse* response); @@ -539,12 +587,52 @@ class grpcIMapsManagerService final { } }; template + class WithAsyncMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithAsyncMethod_backupMap() { + ::grpc::Service::MarkMethodAsync(9); + } + ~WithAsyncMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::backupMapRequest* /*request*/, ::grpcIMapsManager::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestbackupMap(::grpc::ServerContext* context, ::grpcIMapsManager::backupMapRequest* request, ::grpc::ServerAsyncResponseWriter< ::grpcIMapsManager::backupMapResponse>* 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_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithAsyncMethod_restoreMap() { + ::grpc::Service::MarkMethodAsync(10); + } + ~WithAsyncMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::restoreMapRequest* /*request*/, ::grpcIMapsManager::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestrestoreMap(::grpc::ServerContext* context, ::grpcIMapsManager::restoreMapRequest* request, ::grpc::ServerAsyncResponseWriter< ::grpcIMapsManager::restoreMapResponse>* 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_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithAsyncMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodAsync(9); + ::grpc::Service::MarkMethodAsync(11); } ~WithAsyncMethod_requestMapProcessing() override { BaseClassMustBeDerivedFromService(this); @@ -555,7 +643,7 @@ class grpcIMapsManagerService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestrequestMapProcessing(::grpc::ServerContext* context, ::grpcIMapsManager::requestMapProcessingRequest* request, ::grpc::ServerAsyncResponseWriter< ::grpcIMapsManager::requestMapProcessingResponse>* 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); + ::grpc::Service::RequestAsyncUnary(11, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -564,7 +652,7 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithAsyncMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodAsync(10); + ::grpc::Service::MarkMethodAsync(12); } ~WithAsyncMethod_getMapProcessingStatus() override { BaseClassMustBeDerivedFromService(this); @@ -575,7 +663,7 @@ class grpcIMapsManagerService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestgetMapProcessingStatus(::grpc::ServerContext* context, ::grpcIMapsManager::getMapProcessingStatusRequest* request, ::grpc::ServerAsyncResponseWriter< ::grpcIMapsManager::getMapProcessingStatusResponse>* 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); + ::grpc::Service::RequestAsyncUnary(12, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -584,7 +672,7 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithAsyncMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodAsync(11); + ::grpc::Service::MarkMethodAsync(13); } ~WithAsyncMethod_getMapProcessingData() override { BaseClassMustBeDerivedFromService(this); @@ -595,10 +683,10 @@ class grpcIMapsManagerService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestgetMapProcessingData(::grpc::ServerContext* context, ::grpcIMapsManager::getMapProcessingDataRequest* request, ::grpc::ServerAsyncResponseWriter< ::grpcIMapsManager::getMapProcessingDataResponse>* 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); + ::grpc::Service::RequestAsyncUnary(13, context, request, response, new_call_cq, notification_cq, tag); } }; - typedef WithAsyncMethod_createMap > > > > > > > > > > > AsyncService; + typedef WithAsyncMethod_createMap > > > > > > > > > > > > > AsyncService; template class WithCallbackMethod_createMap : public BaseClass { private: @@ -843,18 +931,72 @@ class grpcIMapsManagerService final { ::grpc::CallbackServerContext* /*context*/, const ::grpcIMapsManager::getMapInfoRequest* /*request*/, ::grpcIMapsManager::getMapInfoResponse* /*response*/) { return nullptr; } }; template + class WithCallbackMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithCallbackMethod_backupMap() { + ::grpc::Service::MarkMethodCallback(9, + new ::grpc::internal::CallbackUnaryHandler< ::grpcIMapsManager::backupMapRequest, ::grpcIMapsManager::backupMapResponse>( + [this]( + ::grpc::CallbackServerContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response) { return this->backupMap(context, request, response); }));} + void SetMessageAllocatorFor_backupMap( + ::grpc::MessageAllocator< ::grpcIMapsManager::backupMapRequest, ::grpcIMapsManager::backupMapResponse>* allocator) { + ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(9); + static_cast<::grpc::internal::CallbackUnaryHandler< ::grpcIMapsManager::backupMapRequest, ::grpcIMapsManager::backupMapResponse>*>(handler) + ->SetMessageAllocator(allocator); + } + ~WithCallbackMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::backupMapRequest* /*request*/, ::grpcIMapsManager::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + virtual ::grpc::ServerUnaryReactor* backupMap( + ::grpc::CallbackServerContext* /*context*/, const ::grpcIMapsManager::backupMapRequest* /*request*/, ::grpcIMapsManager::backupMapResponse* /*response*/) { return nullptr; } + }; + template + class WithCallbackMethod_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithCallbackMethod_restoreMap() { + ::grpc::Service::MarkMethodCallback(10, + new ::grpc::internal::CallbackUnaryHandler< ::grpcIMapsManager::restoreMapRequest, ::grpcIMapsManager::restoreMapResponse>( + [this]( + ::grpc::CallbackServerContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response) { return this->restoreMap(context, request, response); }));} + void SetMessageAllocatorFor_restoreMap( + ::grpc::MessageAllocator< ::grpcIMapsManager::restoreMapRequest, ::grpcIMapsManager::restoreMapResponse>* allocator) { + ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(10); + static_cast<::grpc::internal::CallbackUnaryHandler< ::grpcIMapsManager::restoreMapRequest, ::grpcIMapsManager::restoreMapResponse>*>(handler) + ->SetMessageAllocator(allocator); + } + ~WithCallbackMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::restoreMapRequest* /*request*/, ::grpcIMapsManager::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + virtual ::grpc::ServerUnaryReactor* restoreMap( + ::grpc::CallbackServerContext* /*context*/, const ::grpcIMapsManager::restoreMapRequest* /*request*/, ::grpcIMapsManager::restoreMapResponse* /*response*/) { return nullptr; } + }; + template class WithCallbackMethod_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithCallbackMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodCallback(9, + ::grpc::Service::MarkMethodCallback(11, new ::grpc::internal::CallbackUnaryHandler< ::grpcIMapsManager::requestMapProcessingRequest, ::grpcIMapsManager::requestMapProcessingResponse>( [this]( ::grpc::CallbackServerContext* context, const ::grpcIMapsManager::requestMapProcessingRequest* request, ::grpcIMapsManager::requestMapProcessingResponse* response) { return this->requestMapProcessing(context, request, response); }));} void SetMessageAllocatorFor_requestMapProcessing( ::grpc::MessageAllocator< ::grpcIMapsManager::requestMapProcessingRequest, ::grpcIMapsManager::requestMapProcessingResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(9); + ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(11); static_cast<::grpc::internal::CallbackUnaryHandler< ::grpcIMapsManager::requestMapProcessingRequest, ::grpcIMapsManager::requestMapProcessingResponse>*>(handler) ->SetMessageAllocator(allocator); } @@ -875,13 +1017,13 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithCallbackMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodCallback(10, + ::grpc::Service::MarkMethodCallback(12, new ::grpc::internal::CallbackUnaryHandler< ::grpcIMapsManager::getMapProcessingStatusRequest, ::grpcIMapsManager::getMapProcessingStatusResponse>( [this]( ::grpc::CallbackServerContext* context, const ::grpcIMapsManager::getMapProcessingStatusRequest* request, ::grpcIMapsManager::getMapProcessingStatusResponse* response) { return this->getMapProcessingStatus(context, request, response); }));} void SetMessageAllocatorFor_getMapProcessingStatus( ::grpc::MessageAllocator< ::grpcIMapsManager::getMapProcessingStatusRequest, ::grpcIMapsManager::getMapProcessingStatusResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(10); + ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(12); static_cast<::grpc::internal::CallbackUnaryHandler< ::grpcIMapsManager::getMapProcessingStatusRequest, ::grpcIMapsManager::getMapProcessingStatusResponse>*>(handler) ->SetMessageAllocator(allocator); } @@ -902,13 +1044,13 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithCallbackMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodCallback(11, + ::grpc::Service::MarkMethodCallback(13, new ::grpc::internal::CallbackUnaryHandler< ::grpcIMapsManager::getMapProcessingDataRequest, ::grpcIMapsManager::getMapProcessingDataResponse>( [this]( ::grpc::CallbackServerContext* context, const ::grpcIMapsManager::getMapProcessingDataRequest* request, ::grpcIMapsManager::getMapProcessingDataResponse* response) { return this->getMapProcessingData(context, request, response); }));} void SetMessageAllocatorFor_getMapProcessingData( ::grpc::MessageAllocator< ::grpcIMapsManager::getMapProcessingDataRequest, ::grpcIMapsManager::getMapProcessingDataResponse>* allocator) { - ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(11); + ::grpc::internal::MethodHandler* const handler = ::grpc::Service::GetHandler(13); static_cast<::grpc::internal::CallbackUnaryHandler< ::grpcIMapsManager::getMapProcessingDataRequest, ::grpcIMapsManager::getMapProcessingDataResponse>*>(handler) ->SetMessageAllocator(allocator); } @@ -923,7 +1065,7 @@ class grpcIMapsManagerService final { virtual ::grpc::ServerUnaryReactor* getMapProcessingData( ::grpc::CallbackServerContext* /*context*/, const ::grpcIMapsManager::getMapProcessingDataRequest* /*request*/, ::grpcIMapsManager::getMapProcessingDataResponse* /*response*/) { return nullptr; } }; - typedef WithCallbackMethod_createMap > > > > > > > > > > > CallbackService; + typedef WithCallbackMethod_createMap > > > > > > > > > > > > > CallbackService; typedef CallbackService ExperimentalCallbackService; template class WithGenericMethod_createMap : public BaseClass { @@ -1079,12 +1221,46 @@ class grpcIMapsManagerService final { } }; template + class WithGenericMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithGenericMethod_backupMap() { + ::grpc::Service::MarkMethodGeneric(9); + } + ~WithGenericMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::backupMapRequest* /*request*/, ::grpcIMapsManager::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template + class WithGenericMethod_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithGenericMethod_restoreMap() { + ::grpc::Service::MarkMethodGeneric(10); + } + ~WithGenericMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::restoreMapRequest* /*request*/, ::grpcIMapsManager::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + }; + template class WithGenericMethod_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithGenericMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodGeneric(9); + ::grpc::Service::MarkMethodGeneric(11); } ~WithGenericMethod_requestMapProcessing() override { BaseClassMustBeDerivedFromService(this); @@ -1101,7 +1277,7 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithGenericMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodGeneric(10); + ::grpc::Service::MarkMethodGeneric(12); } ~WithGenericMethod_getMapProcessingStatus() override { BaseClassMustBeDerivedFromService(this); @@ -1118,7 +1294,7 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithGenericMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodGeneric(11); + ::grpc::Service::MarkMethodGeneric(13); } ~WithGenericMethod_getMapProcessingData() override { BaseClassMustBeDerivedFromService(this); @@ -1310,12 +1486,52 @@ class grpcIMapsManagerService final { } }; template + class WithRawMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithRawMethod_backupMap() { + ::grpc::Service::MarkMethodRaw(9); + } + ~WithRawMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::backupMapRequest* /*request*/, ::grpcIMapsManager::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestbackupMap(::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_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithRawMethod_restoreMap() { + ::grpc::Service::MarkMethodRaw(10); + } + ~WithRawMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::restoreMapRequest* /*request*/, ::grpcIMapsManager::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + void RequestrestoreMap(::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_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodRaw(9); + ::grpc::Service::MarkMethodRaw(11); } ~WithRawMethod_requestMapProcessing() override { BaseClassMustBeDerivedFromService(this); @@ -1326,7 +1542,7 @@ class grpcIMapsManagerService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestrequestMapProcessing(::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); + ::grpc::Service::RequestAsyncUnary(11, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1335,7 +1551,7 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodRaw(10); + ::grpc::Service::MarkMethodRaw(12); } ~WithRawMethod_getMapProcessingStatus() override { BaseClassMustBeDerivedFromService(this); @@ -1346,7 +1562,7 @@ class grpcIMapsManagerService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestgetMapProcessingStatus(::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); + ::grpc::Service::RequestAsyncUnary(12, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1355,7 +1571,7 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodRaw(11); + ::grpc::Service::MarkMethodRaw(13); } ~WithRawMethod_getMapProcessingData() override { BaseClassMustBeDerivedFromService(this); @@ -1366,7 +1582,7 @@ class grpcIMapsManagerService final { return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } void RequestgetMapProcessingData(::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); + ::grpc::Service::RequestAsyncUnary(13, context, request, response, new_call_cq, notification_cq, tag); } }; template @@ -1568,12 +1784,56 @@ class grpcIMapsManagerService final { ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } }; template + class WithRawCallbackMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithRawCallbackMethod_backupMap() { + ::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->backupMap(context, request, response); })); + } + ~WithRawCallbackMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::backupMapRequest* /*request*/, ::grpcIMapsManager::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + virtual ::grpc::ServerUnaryReactor* backupMap( + ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } + }; + template + class WithRawCallbackMethod_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithRawCallbackMethod_restoreMap() { + ::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->restoreMap(context, request, response); })); + } + ~WithRawCallbackMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable synchronous version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::restoreMapRequest* /*request*/, ::grpcIMapsManager::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + virtual ::grpc::ServerUnaryReactor* restoreMap( + ::grpc::CallbackServerContext* /*context*/, const ::grpc::ByteBuffer* /*request*/, ::grpc::ByteBuffer* /*response*/) { return nullptr; } + }; + template class WithRawCallbackMethod_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawCallbackMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodRawCallback(9, + ::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->requestMapProcessing(context, request, response); })); @@ -1595,7 +1855,7 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawCallbackMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodRawCallback(10, + ::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->getMapProcessingStatus(context, request, response); })); @@ -1617,7 +1877,7 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithRawCallbackMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodRawCallback(11, + ::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->getMapProcessingData(context, request, response); })); @@ -1877,12 +2137,66 @@ class grpcIMapsManagerService final { virtual ::grpc::Status StreamedgetMapInfo(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::grpcIMapsManager::getMapInfoRequest,::grpcIMapsManager::getMapInfoResponse>* server_unary_streamer) = 0; }; template + class WithStreamedUnaryMethod_backupMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithStreamedUnaryMethod_backupMap() { + ::grpc::Service::MarkMethodStreamed(9, + new ::grpc::internal::StreamedUnaryHandler< + ::grpcIMapsManager::backupMapRequest, ::grpcIMapsManager::backupMapResponse>( + [this](::grpc::ServerContext* context, + ::grpc::ServerUnaryStreamer< + ::grpcIMapsManager::backupMapRequest, ::grpcIMapsManager::backupMapResponse>* streamer) { + return this->StreamedbackupMap(context, + streamer); + })); + } + ~WithStreamedUnaryMethod_backupMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status backupMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::backupMapRequest* /*request*/, ::grpcIMapsManager::backupMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedbackupMap(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::grpcIMapsManager::backupMapRequest,::grpcIMapsManager::backupMapResponse>* server_unary_streamer) = 0; + }; + template + class WithStreamedUnaryMethod_restoreMap : public BaseClass { + private: + void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} + public: + WithStreamedUnaryMethod_restoreMap() { + ::grpc::Service::MarkMethodStreamed(10, + new ::grpc::internal::StreamedUnaryHandler< + ::grpcIMapsManager::restoreMapRequest, ::grpcIMapsManager::restoreMapResponse>( + [this](::grpc::ServerContext* context, + ::grpc::ServerUnaryStreamer< + ::grpcIMapsManager::restoreMapRequest, ::grpcIMapsManager::restoreMapResponse>* streamer) { + return this->StreamedrestoreMap(context, + streamer); + })); + } + ~WithStreamedUnaryMethod_restoreMap() override { + BaseClassMustBeDerivedFromService(this); + } + // disable regular version of this method + ::grpc::Status restoreMap(::grpc::ServerContext* /*context*/, const ::grpcIMapsManager::restoreMapRequest* /*request*/, ::grpcIMapsManager::restoreMapResponse* /*response*/) override { + abort(); + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); + } + // replace default version of method with streamed unary + virtual ::grpc::Status StreamedrestoreMap(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::grpcIMapsManager::restoreMapRequest,::grpcIMapsManager::restoreMapResponse>* server_unary_streamer) = 0; + }; + template class WithStreamedUnaryMethod_requestMapProcessing : public BaseClass { private: void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithStreamedUnaryMethod_requestMapProcessing() { - ::grpc::Service::MarkMethodStreamed(9, + ::grpc::Service::MarkMethodStreamed(11, new ::grpc::internal::StreamedUnaryHandler< ::grpcIMapsManager::requestMapProcessingRequest, ::grpcIMapsManager::requestMapProcessingResponse>( [this](::grpc::ServerContext* context, @@ -1909,7 +2223,7 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithStreamedUnaryMethod_getMapProcessingStatus() { - ::grpc::Service::MarkMethodStreamed(10, + ::grpc::Service::MarkMethodStreamed(12, new ::grpc::internal::StreamedUnaryHandler< ::grpcIMapsManager::getMapProcessingStatusRequest, ::grpcIMapsManager::getMapProcessingStatusResponse>( [this](::grpc::ServerContext* context, @@ -1936,7 +2250,7 @@ class grpcIMapsManagerService final { void BaseClassMustBeDerivedFromService(const Service* /*service*/) {} public: WithStreamedUnaryMethod_getMapProcessingData() { - ::grpc::Service::MarkMethodStreamed(11, + ::grpc::Service::MarkMethodStreamed(13, new ::grpc::internal::StreamedUnaryHandler< ::grpcIMapsManager::getMapProcessingDataRequest, ::grpcIMapsManager::getMapProcessingDataResponse>( [this](::grpc::ServerContext* context, @@ -1957,9 +2271,9 @@ class grpcIMapsManagerService final { // replace default version of method with streamed unary virtual ::grpc::Status StreamedgetMapProcessingData(::grpc::ServerContext* context, ::grpc::ServerUnaryStreamer< ::grpcIMapsManager::getMapProcessingDataRequest,::grpcIMapsManager::getMapProcessingDataResponse>* server_unary_streamer) = 0; }; - typedef WithStreamedUnaryMethod_createMap > > > > > > > > > > > StreamedUnaryService; + typedef WithStreamedUnaryMethod_createMap > > > > > > > > > > > > > StreamedUnaryService; typedef Service SplitStreamedService; - typedef WithStreamedUnaryMethod_createMap > > > > > > > > > > > StreamedService; + typedef WithStreamedUnaryMethod_createMap > > > > > > > > > > > > > StreamedService; }; } // namespace grpcIMapsManager diff --git a/gen/interfaces/grpcIMapsManagerService.pb.h b/gen/interfaces/grpcIMapsManagerService.pb.h index 704b6a8..ed36db0 100644 --- a/gen/interfaces/grpcIMapsManagerService.pb.h +++ b/gen/interfaces/grpcIMapsManagerService.pb.h @@ -51,6 +51,12 @@ struct TableStruct_grpcIMapsManagerService_2eproto { extern const ::google::protobuf::internal::DescriptorTable descriptor_table_grpcIMapsManagerService_2eproto; namespace grpcIMapsManager { +class backupMapRequest; +struct backupMapRequestDefaultTypeInternal; +extern backupMapRequestDefaultTypeInternal _backupMapRequest_default_instance_; +class backupMapResponse; +struct backupMapResponseDefaultTypeInternal; +extern backupMapResponseDefaultTypeInternal _backupMapResponse_default_instance_; class createMapRequest; struct createMapRequestDefaultTypeInternal; extern createMapRequestDefaultTypeInternal _createMapRequest_default_instance_; @@ -117,6 +123,12 @@ extern requestMapProcessingRequestDefaultTypeInternal _requestMapProcessingReque class requestMapProcessingResponse; struct requestMapProcessingResponseDefaultTypeInternal; extern requestMapProcessingResponseDefaultTypeInternal _requestMapProcessingResponse_default_instance_; +class restoreMapRequest; +struct restoreMapRequestDefaultTypeInternal; +extern restoreMapRequestDefaultTypeInternal _restoreMapRequest_default_instance_; +class restoreMapResponse; +struct restoreMapResponseDefaultTypeInternal; +extern restoreMapResponseDefaultTypeInternal _restoreMapResponse_default_instance_; class setMapRequestRequest; struct setMapRequestRequestDefaultTypeInternal; extern setMapRequestRequestDefaultTypeInternal _setMapRequestRequest_default_instance_; @@ -514,23 +526,23 @@ class setMapRequestRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class requestMapProcessingResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.requestMapProcessingResponse) */ { +class restoreMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.restoreMapResponse) */ { public: - inline requestMapProcessingResponse() : requestMapProcessingResponse(nullptr) {} - ~requestMapProcessingResponse() override; + inline restoreMapResponse() : restoreMapResponse(nullptr) {} + ~restoreMapResponse() override; template - explicit PROTOBUF_CONSTEXPR requestMapProcessingResponse( + explicit PROTOBUF_CONSTEXPR restoreMapResponse( ::google::protobuf::internal::ConstantInitialized); - inline requestMapProcessingResponse(const requestMapProcessingResponse& from) : requestMapProcessingResponse(nullptr, from) {} - inline requestMapProcessingResponse(requestMapProcessingResponse&& from) noexcept - : requestMapProcessingResponse(nullptr, std::move(from)) {} - inline requestMapProcessingResponse& operator=(const requestMapProcessingResponse& from) { + inline restoreMapResponse(const restoreMapResponse& from) : restoreMapResponse(nullptr, from) {} + inline restoreMapResponse(restoreMapResponse&& from) noexcept + : restoreMapResponse(nullptr, std::move(from)) {} + inline restoreMapResponse& operator=(const restoreMapResponse& from) { CopyFrom(from); return *this; } - inline requestMapProcessingResponse& operator=(requestMapProcessingResponse&& from) noexcept { + inline restoreMapResponse& operator=(restoreMapResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -562,16 +574,16 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const requestMapProcessingResponse& default_instance() { + static const restoreMapResponse& default_instance() { return *internal_default_instance(); } - static inline const requestMapProcessingResponse* internal_default_instance() { - return reinterpret_cast( - &_requestMapProcessingResponse_default_instance_); + static inline const restoreMapResponse* internal_default_instance() { + return reinterpret_cast( + &_restoreMapResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 19; - friend void swap(requestMapProcessingResponse& a, requestMapProcessingResponse& b) { a.Swap(&b); } - inline void Swap(requestMapProcessingResponse* other) { + static constexpr int kIndexInFileMessages = 21; + friend void swap(restoreMapResponse& a, restoreMapResponse& b) { a.Swap(&b); } + inline void Swap(restoreMapResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -583,7 +595,7 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(requestMapProcessingResponse* other) { + void UnsafeArenaSwap(restoreMapResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -591,13 +603,13 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - requestMapProcessingResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + restoreMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const requestMapProcessingResponse& from); + void CopyFrom(const restoreMapResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const requestMapProcessingResponse& from) { requestMapProcessingResponse::MergeImpl(*this, from); } + void MergeFrom(const restoreMapResponse& from) { restoreMapResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -618,16 +630,16 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(requestMapProcessingResponse* other); + void InternalSwap(restoreMapResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.requestMapProcessingResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.restoreMapResponse"; } protected: - explicit requestMapProcessingResponse(::google::protobuf::Arena* arena); - requestMapProcessingResponse(::google::protobuf::Arena* arena, const requestMapProcessingResponse& from); - requestMapProcessingResponse(::google::protobuf::Arena* arena, requestMapProcessingResponse&& from) noexcept - : requestMapProcessingResponse(arena) { + explicit restoreMapResponse(::google::protobuf::Arena* arena); + restoreMapResponse(::google::protobuf::Arena* arena, const restoreMapResponse& from); + restoreMapResponse(::google::protobuf::Arena* arena, restoreMapResponse&& from) noexcept + : restoreMapResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -650,7 +662,7 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.requestMapProcessingResponse) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.restoreMapResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -660,7 +672,7 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_requestMapProcessingResponse_default_instance_; + &_restoreMapResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -675,7 +687,7 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const requestMapProcessingResponse& from_msg); + const restoreMapResponse& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -685,23 +697,23 @@ class requestMapProcessingResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class requestMapProcessingRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.requestMapProcessingRequest) */ { +class restoreMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.restoreMapRequest) */ { public: - inline requestMapProcessingRequest() : requestMapProcessingRequest(nullptr) {} - ~requestMapProcessingRequest() override; + inline restoreMapRequest() : restoreMapRequest(nullptr) {} + ~restoreMapRequest() override; template - explicit PROTOBUF_CONSTEXPR requestMapProcessingRequest( + explicit PROTOBUF_CONSTEXPR restoreMapRequest( ::google::protobuf::internal::ConstantInitialized); - inline requestMapProcessingRequest(const requestMapProcessingRequest& from) : requestMapProcessingRequest(nullptr, from) {} - inline requestMapProcessingRequest(requestMapProcessingRequest&& from) noexcept - : requestMapProcessingRequest(nullptr, std::move(from)) {} - inline requestMapProcessingRequest& operator=(const requestMapProcessingRequest& from) { + inline restoreMapRequest(const restoreMapRequest& from) : restoreMapRequest(nullptr, from) {} + inline restoreMapRequest(restoreMapRequest&& from) noexcept + : restoreMapRequest(nullptr, std::move(from)) {} + inline restoreMapRequest& operator=(const restoreMapRequest& from) { CopyFrom(from); return *this; } - inline requestMapProcessingRequest& operator=(requestMapProcessingRequest&& from) noexcept { + inline restoreMapRequest& operator=(restoreMapRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -733,16 +745,16 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const requestMapProcessingRequest& default_instance() { + static const restoreMapRequest& default_instance() { return *internal_default_instance(); } - static inline const requestMapProcessingRequest* internal_default_instance() { - return reinterpret_cast( - &_requestMapProcessingRequest_default_instance_); + static inline const restoreMapRequest* internal_default_instance() { + return reinterpret_cast( + &_restoreMapRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 18; - friend void swap(requestMapProcessingRequest& a, requestMapProcessingRequest& b) { a.Swap(&b); } - inline void Swap(requestMapProcessingRequest* other) { + static constexpr int kIndexInFileMessages = 20; + friend void swap(restoreMapRequest& a, restoreMapRequest& b) { a.Swap(&b); } + inline void Swap(restoreMapRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -754,7 +766,7 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(requestMapProcessingRequest* other) { + void UnsafeArenaSwap(restoreMapRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -762,13 +774,13 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - requestMapProcessingRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + restoreMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const requestMapProcessingRequest& from); + void CopyFrom(const restoreMapRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const requestMapProcessingRequest& from) { requestMapProcessingRequest::MergeImpl(*this, from); } + void MergeFrom(const restoreMapRequest& from) { restoreMapRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -789,16 +801,16 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(requestMapProcessingRequest* other); + void InternalSwap(restoreMapRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.requestMapProcessingRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.restoreMapRequest"; } protected: - explicit requestMapProcessingRequest(::google::protobuf::Arena* arena); - requestMapProcessingRequest(::google::protobuf::Arena* arena, const requestMapProcessingRequest& from); - requestMapProcessingRequest(::google::protobuf::Arena* arena, requestMapProcessingRequest&& from) noexcept - : requestMapProcessingRequest(arena) { + explicit restoreMapRequest(::google::protobuf::Arena* arena); + restoreMapRequest(::google::protobuf::Arena* arena, const restoreMapRequest& from); + restoreMapRequest(::google::protobuf::Arena* arena, restoreMapRequest&& from) noexcept + : restoreMapRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -810,9 +822,8 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kMapUUIDFieldNumber = 2, - kResultMapUUIDFieldNumber = 3, + kCompressedZipDataFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, - kProcessingTypeFieldNumber = 4, }; // string mapUUID = 2; void clear_mapuuid() ; @@ -830,20 +841,20 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // string resultMapUUID = 3; - void clear_resultmapuuid() ; - const std::string& resultmapuuid() const; + // bytes compressedZipData = 3; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; template - void set_resultmapuuid(Arg_&& arg, Args_... args); - std::string* mutable_resultmapuuid(); - PROTOBUF_NODISCARD std::string* release_resultmapuuid(); - void set_allocated_resultmapuuid(std::string* value); + void set_compressedzipdata(Arg_&& arg, Args_... args); + std::string* mutable_compressedzipdata(); + PROTOBUF_NODISCARD std::string* release_compressedzipdata(); + void set_allocated_compressedzipdata(std::string* value); private: - const std::string& _internal_resultmapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_resultmapuuid( + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( const std::string& value); - std::string* _internal_mutable_resultmapuuid(); + std::string* _internal_mutable_compressedzipdata(); public: // int32 grpcServerCompressionFormat = 1; @@ -856,27 +867,17 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 processingType = 4; - void clear_processingtype() ; - ::int32_t processingtype() const; - void set_processingtype(::int32_t value); - - private: - ::int32_t _internal_processingtype() const; - void _internal_set_processingtype(::int32_t value); - - public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.requestMapProcessingRequest) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.restoreMapRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 4, 0, - 73, 2> + 2, 3, 0, + 50, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_requestMapProcessingRequest_default_instance_; + &_restoreMapRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -891,11 +892,10 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const requestMapProcessingRequest& from_msg); + const restoreMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr resultmapuuid_; + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; ::int32_t grpcservercompressionformat_; - ::int32_t processingtype_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -904,23 +904,23 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class increaseMapClientsResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.increaseMapClientsResponse) */ { +class requestMapProcessingResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.requestMapProcessingResponse) */ { public: - inline increaseMapClientsResponse() : increaseMapClientsResponse(nullptr) {} - ~increaseMapClientsResponse() override; + inline requestMapProcessingResponse() : requestMapProcessingResponse(nullptr) {} + ~requestMapProcessingResponse() override; template - explicit PROTOBUF_CONSTEXPR increaseMapClientsResponse( + explicit PROTOBUF_CONSTEXPR requestMapProcessingResponse( ::google::protobuf::internal::ConstantInitialized); - inline increaseMapClientsResponse(const increaseMapClientsResponse& from) : increaseMapClientsResponse(nullptr, from) {} - inline increaseMapClientsResponse(increaseMapClientsResponse&& from) noexcept - : increaseMapClientsResponse(nullptr, std::move(from)) {} - inline increaseMapClientsResponse& operator=(const increaseMapClientsResponse& from) { + inline requestMapProcessingResponse(const requestMapProcessingResponse& from) : requestMapProcessingResponse(nullptr, from) {} + inline requestMapProcessingResponse(requestMapProcessingResponse&& from) noexcept + : requestMapProcessingResponse(nullptr, std::move(from)) {} + inline requestMapProcessingResponse& operator=(const requestMapProcessingResponse& from) { CopyFrom(from); return *this; } - inline increaseMapClientsResponse& operator=(increaseMapClientsResponse&& from) noexcept { + inline requestMapProcessingResponse& operator=(requestMapProcessingResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -952,16 +952,16 @@ class increaseMapClientsResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const increaseMapClientsResponse& default_instance() { + static const requestMapProcessingResponse& default_instance() { return *internal_default_instance(); } - static inline const increaseMapClientsResponse* internal_default_instance() { - return reinterpret_cast( - &_increaseMapClientsResponse_default_instance_); + static inline const requestMapProcessingResponse* internal_default_instance() { + return reinterpret_cast( + &_requestMapProcessingResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 7; - friend void swap(increaseMapClientsResponse& a, increaseMapClientsResponse& b) { a.Swap(&b); } - inline void Swap(increaseMapClientsResponse* other) { + static constexpr int kIndexInFileMessages = 23; + friend void swap(requestMapProcessingResponse& a, requestMapProcessingResponse& b) { a.Swap(&b); } + inline void Swap(requestMapProcessingResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -973,7 +973,7 @@ class increaseMapClientsResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(increaseMapClientsResponse* other) { + void UnsafeArenaSwap(requestMapProcessingResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -981,13 +981,13 @@ class increaseMapClientsResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - increaseMapClientsResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + requestMapProcessingResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const increaseMapClientsResponse& from); + void CopyFrom(const requestMapProcessingResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const increaseMapClientsResponse& from) { increaseMapClientsResponse::MergeImpl(*this, from); } + void MergeFrom(const requestMapProcessingResponse& from) { requestMapProcessingResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -1008,16 +1008,16 @@ class increaseMapClientsResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(increaseMapClientsResponse* other); + void InternalSwap(requestMapProcessingResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.increaseMapClientsResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.requestMapProcessingResponse"; } protected: - explicit increaseMapClientsResponse(::google::protobuf::Arena* arena); - increaseMapClientsResponse(::google::protobuf::Arena* arena, const increaseMapClientsResponse& from); - increaseMapClientsResponse(::google::protobuf::Arena* arena, increaseMapClientsResponse&& from) noexcept - : increaseMapClientsResponse(arena) { + explicit requestMapProcessingResponse(::google::protobuf::Arena* arena); + requestMapProcessingResponse(::google::protobuf::Arena* arena, const requestMapProcessingResponse& from); + requestMapProcessingResponse(::google::protobuf::Arena* arena, requestMapProcessingResponse&& from) noexcept + : requestMapProcessingResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -1028,26 +1028,9 @@ class increaseMapClientsResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kServiceURLFieldNumber = 1, - kXpcfGrpcReturnValueFieldNumber = 2, + kXpcfGrpcReturnValueFieldNumber = 1, }; - // string serviceURL = 1; - void clear_serviceurl() ; - const std::string& serviceurl() const; - template - void set_serviceurl(Arg_&& arg, Args_... args); - std::string* mutable_serviceurl(); - PROTOBUF_NODISCARD std::string* release_serviceurl(); - void set_allocated_serviceurl(std::string* value); - - private: - const std::string& _internal_serviceurl() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_serviceurl( - const std::string& value); - std::string* _internal_mutable_serviceurl(); - - public: - // sint32 xpcfGrpcReturnValue = 2; + // sint32 xpcfGrpcReturnValue = 1; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -1057,17 +1040,17 @@ class increaseMapClientsResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.increaseMapClientsResponse) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.requestMapProcessingResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 1, 2, 0, - 62, 2> + 0, 1, 0, + 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_increaseMapClientsResponse_default_instance_; + &_requestMapProcessingResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1082,8 +1065,7 @@ class increaseMapClientsResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const increaseMapClientsResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr serviceurl_; + const requestMapProcessingResponse& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -1093,23 +1075,23 @@ class increaseMapClientsResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class increaseMapClientsRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.increaseMapClientsRequest) */ { +class requestMapProcessingRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.requestMapProcessingRequest) */ { public: - inline increaseMapClientsRequest() : increaseMapClientsRequest(nullptr) {} - ~increaseMapClientsRequest() override; + inline requestMapProcessingRequest() : requestMapProcessingRequest(nullptr) {} + ~requestMapProcessingRequest() override; template - explicit PROTOBUF_CONSTEXPR increaseMapClientsRequest( + explicit PROTOBUF_CONSTEXPR requestMapProcessingRequest( ::google::protobuf::internal::ConstantInitialized); - inline increaseMapClientsRequest(const increaseMapClientsRequest& from) : increaseMapClientsRequest(nullptr, from) {} - inline increaseMapClientsRequest(increaseMapClientsRequest&& from) noexcept - : increaseMapClientsRequest(nullptr, std::move(from)) {} - inline increaseMapClientsRequest& operator=(const increaseMapClientsRequest& from) { + inline requestMapProcessingRequest(const requestMapProcessingRequest& from) : requestMapProcessingRequest(nullptr, from) {} + inline requestMapProcessingRequest(requestMapProcessingRequest&& from) noexcept + : requestMapProcessingRequest(nullptr, std::move(from)) {} + inline requestMapProcessingRequest& operator=(const requestMapProcessingRequest& from) { CopyFrom(from); return *this; } - inline increaseMapClientsRequest& operator=(increaseMapClientsRequest&& from) noexcept { + inline requestMapProcessingRequest& operator=(requestMapProcessingRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -1141,16 +1123,16 @@ class increaseMapClientsRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const increaseMapClientsRequest& default_instance() { + static const requestMapProcessingRequest& default_instance() { return *internal_default_instance(); } - static inline const increaseMapClientsRequest* internal_default_instance() { - return reinterpret_cast( - &_increaseMapClientsRequest_default_instance_); + static inline const requestMapProcessingRequest* internal_default_instance() { + return reinterpret_cast( + &_requestMapProcessingRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 6; - friend void swap(increaseMapClientsRequest& a, increaseMapClientsRequest& b) { a.Swap(&b); } - inline void Swap(increaseMapClientsRequest* other) { + static constexpr int kIndexInFileMessages = 22; + friend void swap(requestMapProcessingRequest& a, requestMapProcessingRequest& b) { a.Swap(&b); } + inline void Swap(requestMapProcessingRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -1162,7 +1144,7 @@ class increaseMapClientsRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(increaseMapClientsRequest* other) { + void UnsafeArenaSwap(requestMapProcessingRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -1170,13 +1152,13 @@ class increaseMapClientsRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - increaseMapClientsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + requestMapProcessingRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const increaseMapClientsRequest& from); + void CopyFrom(const requestMapProcessingRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const increaseMapClientsRequest& from) { increaseMapClientsRequest::MergeImpl(*this, from); } + void MergeFrom(const requestMapProcessingRequest& from) { requestMapProcessingRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -1197,16 +1179,16 @@ class increaseMapClientsRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(increaseMapClientsRequest* other); + void InternalSwap(requestMapProcessingRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.increaseMapClientsRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.requestMapProcessingRequest"; } protected: - explicit increaseMapClientsRequest(::google::protobuf::Arena* arena); - increaseMapClientsRequest(::google::protobuf::Arena* arena, const increaseMapClientsRequest& from); - increaseMapClientsRequest(::google::protobuf::Arena* arena, increaseMapClientsRequest&& from) noexcept - : increaseMapClientsRequest(arena) { + explicit requestMapProcessingRequest(::google::protobuf::Arena* arena); + requestMapProcessingRequest(::google::protobuf::Arena* arena, const requestMapProcessingRequest& from); + requestMapProcessingRequest(::google::protobuf::Arena* arena, requestMapProcessingRequest&& from) noexcept + : requestMapProcessingRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -1218,8 +1200,9 @@ class increaseMapClientsRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kMapUUIDFieldNumber = 2, - kServiceURLFieldNumber = 3, + kResultMapUUIDFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, + kProcessingTypeFieldNumber = 4, }; // string mapUUID = 2; void clear_mapuuid() ; @@ -1237,20 +1220,20 @@ class increaseMapClientsRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // string serviceURL = 3; - void clear_serviceurl() ; - const std::string& serviceurl() const; + // string resultMapUUID = 3; + void clear_resultmapuuid() ; + const std::string& resultmapuuid() const; template - void set_serviceurl(Arg_&& arg, Args_... args); - std::string* mutable_serviceurl(); - PROTOBUF_NODISCARD std::string* release_serviceurl(); - void set_allocated_serviceurl(std::string* value); + void set_resultmapuuid(Arg_&& arg, Args_... args); + std::string* mutable_resultmapuuid(); + PROTOBUF_NODISCARD std::string* release_resultmapuuid(); + void set_allocated_resultmapuuid(std::string* value); private: - const std::string& _internal_serviceurl() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_serviceurl( + const std::string& _internal_resultmapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_resultmapuuid( const std::string& value); - std::string* _internal_mutable_serviceurl(); + std::string* _internal_mutable_resultmapuuid(); public: // int32 grpcServerCompressionFormat = 1; @@ -1263,17 +1246,27 @@ class increaseMapClientsRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.increaseMapClientsRequest) + // sint32 processingType = 4; + void clear_processingtype() ; + ::int32_t processingtype() const; + void set_processingtype(::int32_t value); + + private: + ::int32_t _internal_processingtype() const; + void _internal_set_processingtype(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIMapsManager.requestMapProcessingRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 3, 0, - 68, 2> + 2, 4, 0, + 73, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_increaseMapClientsRequest_default_instance_; + &_requestMapProcessingRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1288,10 +1281,11 @@ class increaseMapClientsRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const increaseMapClientsRequest& from_msg); + const requestMapProcessingRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr serviceurl_; + ::google::protobuf::internal::ArenaStringPtr resultmapuuid_; ::int32_t grpcservercompressionformat_; + ::int32_t processingtype_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -1300,23 +1294,23 @@ class increaseMapClientsRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getPointCloudRequestResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getPointCloudRequestResponse) */ { +class increaseMapClientsResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.increaseMapClientsResponse) */ { public: - inline getPointCloudRequestResponse() : getPointCloudRequestResponse(nullptr) {} - ~getPointCloudRequestResponse() override; + inline increaseMapClientsResponse() : increaseMapClientsResponse(nullptr) {} + ~increaseMapClientsResponse() override; template - explicit PROTOBUF_CONSTEXPR getPointCloudRequestResponse( + explicit PROTOBUF_CONSTEXPR increaseMapClientsResponse( ::google::protobuf::internal::ConstantInitialized); - inline getPointCloudRequestResponse(const getPointCloudRequestResponse& from) : getPointCloudRequestResponse(nullptr, from) {} - inline getPointCloudRequestResponse(getPointCloudRequestResponse&& from) noexcept - : getPointCloudRequestResponse(nullptr, std::move(from)) {} - inline getPointCloudRequestResponse& operator=(const getPointCloudRequestResponse& from) { + inline increaseMapClientsResponse(const increaseMapClientsResponse& from) : increaseMapClientsResponse(nullptr, from) {} + inline increaseMapClientsResponse(increaseMapClientsResponse&& from) noexcept + : increaseMapClientsResponse(nullptr, std::move(from)) {} + inline increaseMapClientsResponse& operator=(const increaseMapClientsResponse& from) { CopyFrom(from); return *this; } - inline getPointCloudRequestResponse& operator=(getPointCloudRequestResponse&& from) noexcept { + inline increaseMapClientsResponse& operator=(increaseMapClientsResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -1348,16 +1342,16 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getPointCloudRequestResponse& default_instance() { + static const increaseMapClientsResponse& default_instance() { return *internal_default_instance(); } - static inline const getPointCloudRequestResponse* internal_default_instance() { - return reinterpret_cast( - &_getPointCloudRequestResponse_default_instance_); + static inline const increaseMapClientsResponse* internal_default_instance() { + return reinterpret_cast( + &_increaseMapClientsResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 15; - friend void swap(getPointCloudRequestResponse& a, getPointCloudRequestResponse& b) { a.Swap(&b); } - inline void Swap(getPointCloudRequestResponse* other) { + static constexpr int kIndexInFileMessages = 7; + friend void swap(increaseMapClientsResponse& a, increaseMapClientsResponse& b) { a.Swap(&b); } + inline void Swap(increaseMapClientsResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -1369,7 +1363,7 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getPointCloudRequestResponse* other) { + void UnsafeArenaSwap(increaseMapClientsResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -1377,13 +1371,13 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getPointCloudRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + increaseMapClientsResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getPointCloudRequestResponse& from); + void CopyFrom(const increaseMapClientsResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getPointCloudRequestResponse& from) { getPointCloudRequestResponse::MergeImpl(*this, from); } + void MergeFrom(const increaseMapClientsResponse& from) { increaseMapClientsResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -1404,16 +1398,16 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getPointCloudRequestResponse* other); + void InternalSwap(increaseMapClientsResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getPointCloudRequestResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.increaseMapClientsResponse"; } protected: - explicit getPointCloudRequestResponse(::google::protobuf::Arena* arena); - getPointCloudRequestResponse(::google::protobuf::Arena* arena, const getPointCloudRequestResponse& from); - getPointCloudRequestResponse(::google::protobuf::Arena* arena, getPointCloudRequestResponse&& from) noexcept - : getPointCloudRequestResponse(arena) { + explicit increaseMapClientsResponse(::google::protobuf::Arena* arena); + increaseMapClientsResponse(::google::protobuf::Arena* arena, const increaseMapClientsResponse& from); + increaseMapClientsResponse(::google::protobuf::Arena* arena, increaseMapClientsResponse&& from) noexcept + : increaseMapClientsResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -1424,23 +1418,23 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kPointCloudFieldNumber = 1, + kServiceURLFieldNumber = 1, kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes pointCloud = 1; - void clear_pointcloud() ; - const std::string& pointcloud() const; + // string serviceURL = 1; + void clear_serviceurl() ; + const std::string& serviceurl() const; template - void set_pointcloud(Arg_&& arg, Args_... args); - std::string* mutable_pointcloud(); - PROTOBUF_NODISCARD std::string* release_pointcloud(); - void set_allocated_pointcloud(std::string* value); + void set_serviceurl(Arg_&& arg, Args_... args); + std::string* mutable_serviceurl(); + PROTOBUF_NODISCARD std::string* release_serviceurl(); + void set_allocated_serviceurl(std::string* value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& _internal_serviceurl() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_serviceurl( const std::string& value); - std::string* _internal_mutable_pointcloud(); + std::string* _internal_mutable_serviceurl(); public: // sint32 xpcfGrpcReturnValue = 2; @@ -1453,17 +1447,17 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getPointCloudRequestResponse) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.increaseMapClientsResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, - 0, 2> + 62, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getPointCloudRequestResponse_default_instance_; + &_increaseMapClientsResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1478,8 +1472,8 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getPointCloudRequestResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr pointcloud_; + const increaseMapClientsResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr serviceurl_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -1489,23 +1483,23 @@ class getPointCloudRequestResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getPointCloudRequestRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getPointCloudRequestRequest) */ { +class increaseMapClientsRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.increaseMapClientsRequest) */ { public: - inline getPointCloudRequestRequest() : getPointCloudRequestRequest(nullptr) {} - ~getPointCloudRequestRequest() override; + inline increaseMapClientsRequest() : increaseMapClientsRequest(nullptr) {} + ~increaseMapClientsRequest() override; template - explicit PROTOBUF_CONSTEXPR getPointCloudRequestRequest( + explicit PROTOBUF_CONSTEXPR increaseMapClientsRequest( ::google::protobuf::internal::ConstantInitialized); - inline getPointCloudRequestRequest(const getPointCloudRequestRequest& from) : getPointCloudRequestRequest(nullptr, from) {} - inline getPointCloudRequestRequest(getPointCloudRequestRequest&& from) noexcept - : getPointCloudRequestRequest(nullptr, std::move(from)) {} - inline getPointCloudRequestRequest& operator=(const getPointCloudRequestRequest& from) { + inline increaseMapClientsRequest(const increaseMapClientsRequest& from) : increaseMapClientsRequest(nullptr, from) {} + inline increaseMapClientsRequest(increaseMapClientsRequest&& from) noexcept + : increaseMapClientsRequest(nullptr, std::move(from)) {} + inline increaseMapClientsRequest& operator=(const increaseMapClientsRequest& from) { CopyFrom(from); return *this; } - inline getPointCloudRequestRequest& operator=(getPointCloudRequestRequest&& from) noexcept { + inline increaseMapClientsRequest& operator=(increaseMapClientsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -1537,16 +1531,16 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getPointCloudRequestRequest& default_instance() { + static const increaseMapClientsRequest& default_instance() { return *internal_default_instance(); } - static inline const getPointCloudRequestRequest* internal_default_instance() { - return reinterpret_cast( - &_getPointCloudRequestRequest_default_instance_); + static inline const increaseMapClientsRequest* internal_default_instance() { + return reinterpret_cast( + &_increaseMapClientsRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 14; - friend void swap(getPointCloudRequestRequest& a, getPointCloudRequestRequest& b) { a.Swap(&b); } - inline void Swap(getPointCloudRequestRequest* other) { + static constexpr int kIndexInFileMessages = 6; + friend void swap(increaseMapClientsRequest& a, increaseMapClientsRequest& b) { a.Swap(&b); } + inline void Swap(increaseMapClientsRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -1558,7 +1552,7 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getPointCloudRequestRequest* other) { + void UnsafeArenaSwap(increaseMapClientsRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -1566,13 +1560,13 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getPointCloudRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + increaseMapClientsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getPointCloudRequestRequest& from); + void CopyFrom(const increaseMapClientsRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getPointCloudRequestRequest& from) { getPointCloudRequestRequest::MergeImpl(*this, from); } + void MergeFrom(const increaseMapClientsRequest& from) { increaseMapClientsRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -1593,16 +1587,16 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getPointCloudRequestRequest* other); + void InternalSwap(increaseMapClientsRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getPointCloudRequestRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.increaseMapClientsRequest"; } protected: - explicit getPointCloudRequestRequest(::google::protobuf::Arena* arena); - getPointCloudRequestRequest(::google::protobuf::Arena* arena, const getPointCloudRequestRequest& from); - getPointCloudRequestRequest(::google::protobuf::Arena* arena, getPointCloudRequestRequest&& from) noexcept - : getPointCloudRequestRequest(arena) { + explicit increaseMapClientsRequest(::google::protobuf::Arena* arena); + increaseMapClientsRequest(::google::protobuf::Arena* arena, const increaseMapClientsRequest& from); + increaseMapClientsRequest(::google::protobuf::Arena* arena, increaseMapClientsRequest&& from) noexcept + : increaseMapClientsRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -1614,7 +1608,7 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kMapUUIDFieldNumber = 2, - kPointCloudFieldNumber = 3, + kServiceURLFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, }; // string mapUUID = 2; @@ -1633,20 +1627,20 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // bytes pointCloud = 3; - void clear_pointcloud() ; - const std::string& pointcloud() const; + // string serviceURL = 3; + void clear_serviceurl() ; + const std::string& serviceurl() const; template - void set_pointcloud(Arg_&& arg, Args_... args); - std::string* mutable_pointcloud(); - PROTOBUF_NODISCARD std::string* release_pointcloud(); - void set_allocated_pointcloud(std::string* value); + void set_serviceurl(Arg_&& arg, Args_... args); + std::string* mutable_serviceurl(); + PROTOBUF_NODISCARD std::string* release_serviceurl(); + void set_allocated_serviceurl(std::string* value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& _internal_serviceurl() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_serviceurl( const std::string& value); - std::string* _internal_mutable_pointcloud(); + std::string* _internal_mutable_serviceurl(); public: // int32 grpcServerCompressionFormat = 1; @@ -1659,17 +1653,17 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getPointCloudRequestRequest) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.increaseMapClientsRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 2, 3, 0, - 60, 2> + 68, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getPointCloudRequestRequest_default_instance_; + &_increaseMapClientsRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1684,9 +1678,9 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getPointCloudRequestRequest& from_msg); + const increaseMapClientsRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr serviceurl_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -1696,23 +1690,23 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapRequestResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapRequestResponse) */ { +class getPointCloudRequestResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getPointCloudRequestResponse) */ { public: - inline getMapRequestResponse() : getMapRequestResponse(nullptr) {} - ~getMapRequestResponse() override; + inline getPointCloudRequestResponse() : getPointCloudRequestResponse(nullptr) {} + ~getPointCloudRequestResponse() override; template - explicit PROTOBUF_CONSTEXPR getMapRequestResponse( + explicit PROTOBUF_CONSTEXPR getPointCloudRequestResponse( ::google::protobuf::internal::ConstantInitialized); - inline getMapRequestResponse(const getMapRequestResponse& from) : getMapRequestResponse(nullptr, from) {} - inline getMapRequestResponse(getMapRequestResponse&& from) noexcept - : getMapRequestResponse(nullptr, std::move(from)) {} - inline getMapRequestResponse& operator=(const getMapRequestResponse& from) { + inline getPointCloudRequestResponse(const getPointCloudRequestResponse& from) : getPointCloudRequestResponse(nullptr, from) {} + inline getPointCloudRequestResponse(getPointCloudRequestResponse&& from) noexcept + : getPointCloudRequestResponse(nullptr, std::move(from)) {} + inline getPointCloudRequestResponse& operator=(const getPointCloudRequestResponse& from) { CopyFrom(from); return *this; } - inline getMapRequestResponse& operator=(getMapRequestResponse&& from) noexcept { + inline getPointCloudRequestResponse& operator=(getPointCloudRequestResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -1744,16 +1738,16 @@ class getMapRequestResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapRequestResponse& default_instance() { + static const getPointCloudRequestResponse& default_instance() { return *internal_default_instance(); } - static inline const getMapRequestResponse* internal_default_instance() { - return reinterpret_cast( - &_getMapRequestResponse_default_instance_); + static inline const getPointCloudRequestResponse* internal_default_instance() { + return reinterpret_cast( + &_getPointCloudRequestResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 11; - friend void swap(getMapRequestResponse& a, getMapRequestResponse& b) { a.Swap(&b); } - inline void Swap(getMapRequestResponse* other) { + static constexpr int kIndexInFileMessages = 15; + friend void swap(getPointCloudRequestResponse& a, getPointCloudRequestResponse& b) { a.Swap(&b); } + inline void Swap(getPointCloudRequestResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -1765,7 +1759,7 @@ class getMapRequestResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapRequestResponse* other) { + void UnsafeArenaSwap(getPointCloudRequestResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -1773,13 +1767,13 @@ class getMapRequestResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getPointCloudRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapRequestResponse& from); + void CopyFrom(const getPointCloudRequestResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapRequestResponse& from) { getMapRequestResponse::MergeImpl(*this, from); } + void MergeFrom(const getPointCloudRequestResponse& from) { getPointCloudRequestResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -1800,19 +1794,19 @@ class getMapRequestResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapRequestResponse* other); + void InternalSwap(getPointCloudRequestResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapRequestResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getPointCloudRequestResponse"; } protected: - explicit getMapRequestResponse(::google::protobuf::Arena* arena); - getMapRequestResponse(::google::protobuf::Arena* arena, const getMapRequestResponse& from); - getMapRequestResponse(::google::protobuf::Arena* arena, getMapRequestResponse&& from) noexcept - : getMapRequestResponse(arena) { - *this = ::std::move(from); - } - const ::google::protobuf::Message::ClassData* GetClassData() const final; + explicit getPointCloudRequestResponse(::google::protobuf::Arena* arena); + getPointCloudRequestResponse(::google::protobuf::Arena* arena, const getPointCloudRequestResponse& from); + getPointCloudRequestResponse(::google::protobuf::Arena* arena, getPointCloudRequestResponse&& from) noexcept + : getPointCloudRequestResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; public: ::google::protobuf::Metadata GetMetadata() const; @@ -1820,23 +1814,23 @@ class getMapRequestResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapFieldNumber = 1, + kPointCloudFieldNumber = 1, kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes map = 1; - void clear_map() ; - const std::string& map() const; + // bytes pointCloud = 1; + void clear_pointcloud() ; + const std::string& pointcloud() const; template - void set_map(Arg_&& arg, Args_... args); - std::string* mutable_map(); - PROTOBUF_NODISCARD std::string* release_map(); - void set_allocated_map(std::string* value); + void set_pointcloud(Arg_&& arg, Args_... args); + std::string* mutable_pointcloud(); + PROTOBUF_NODISCARD std::string* release_pointcloud(); + void set_allocated_pointcloud(std::string* value); private: - const std::string& _internal_map() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_map( + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( const std::string& value); - std::string* _internal_mutable_map(); + std::string* _internal_mutable_pointcloud(); public: // sint32 xpcfGrpcReturnValue = 2; @@ -1849,7 +1843,7 @@ class getMapRequestResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapRequestResponse) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getPointCloudRequestResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -1859,7 +1853,7 @@ class getMapRequestResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_getMapRequestResponse_default_instance_; + &_getPointCloudRequestResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -1874,8 +1868,8 @@ class getMapRequestResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapRequestResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr map_; + const getPointCloudRequestResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr pointcloud_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -1885,23 +1879,23 @@ class getMapRequestResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapRequestRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapRequestRequest) */ { +class getPointCloudRequestRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getPointCloudRequestRequest) */ { public: - inline getMapRequestRequest() : getMapRequestRequest(nullptr) {} - ~getMapRequestRequest() override; + inline getPointCloudRequestRequest() : getPointCloudRequestRequest(nullptr) {} + ~getPointCloudRequestRequest() override; template - explicit PROTOBUF_CONSTEXPR getMapRequestRequest( + explicit PROTOBUF_CONSTEXPR getPointCloudRequestRequest( ::google::protobuf::internal::ConstantInitialized); - inline getMapRequestRequest(const getMapRequestRequest& from) : getMapRequestRequest(nullptr, from) {} - inline getMapRequestRequest(getMapRequestRequest&& from) noexcept - : getMapRequestRequest(nullptr, std::move(from)) {} - inline getMapRequestRequest& operator=(const getMapRequestRequest& from) { + inline getPointCloudRequestRequest(const getPointCloudRequestRequest& from) : getPointCloudRequestRequest(nullptr, from) {} + inline getPointCloudRequestRequest(getPointCloudRequestRequest&& from) noexcept + : getPointCloudRequestRequest(nullptr, std::move(from)) {} + inline getPointCloudRequestRequest& operator=(const getPointCloudRequestRequest& from) { CopyFrom(from); return *this; } - inline getMapRequestRequest& operator=(getMapRequestRequest&& from) noexcept { + inline getPointCloudRequestRequest& operator=(getPointCloudRequestRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -1933,16 +1927,16 @@ class getMapRequestRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapRequestRequest& default_instance() { + static const getPointCloudRequestRequest& default_instance() { return *internal_default_instance(); } - static inline const getMapRequestRequest* internal_default_instance() { - return reinterpret_cast( - &_getMapRequestRequest_default_instance_); + static inline const getPointCloudRequestRequest* internal_default_instance() { + return reinterpret_cast( + &_getPointCloudRequestRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 10; - friend void swap(getMapRequestRequest& a, getMapRequestRequest& b) { a.Swap(&b); } - inline void Swap(getMapRequestRequest* other) { + static constexpr int kIndexInFileMessages = 14; + friend void swap(getPointCloudRequestRequest& a, getPointCloudRequestRequest& b) { a.Swap(&b); } + inline void Swap(getPointCloudRequestRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -1954,7 +1948,7 @@ class getMapRequestRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapRequestRequest* other) { + void UnsafeArenaSwap(getPointCloudRequestRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -1962,13 +1956,13 @@ class getMapRequestRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getPointCloudRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapRequestRequest& from); + void CopyFrom(const getPointCloudRequestRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapRequestRequest& from) { getMapRequestRequest::MergeImpl(*this, from); } + void MergeFrom(const getPointCloudRequestRequest& from) { getPointCloudRequestRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -1989,16 +1983,16 @@ class getMapRequestRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapRequestRequest* other); + void InternalSwap(getPointCloudRequestRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapRequestRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getPointCloudRequestRequest"; } protected: - explicit getMapRequestRequest(::google::protobuf::Arena* arena); - getMapRequestRequest(::google::protobuf::Arena* arena, const getMapRequestRequest& from); - getMapRequestRequest(::google::protobuf::Arena* arena, getMapRequestRequest&& from) noexcept - : getMapRequestRequest(arena) { + explicit getPointCloudRequestRequest(::google::protobuf::Arena* arena); + getPointCloudRequestRequest(::google::protobuf::Arena* arena, const getPointCloudRequestRequest& from); + getPointCloudRequestRequest(::google::protobuf::Arena* arena, getPointCloudRequestRequest&& from) noexcept + : getPointCloudRequestRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -2010,9 +2004,8 @@ class getMapRequestRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kMapUUIDFieldNumber = 2, - kMapFieldNumber = 4, + kPointCloudFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, - kKeyframeImagesOptionFieldNumber = 3, }; // string mapUUID = 2; void clear_mapuuid() ; @@ -2030,20 +2023,20 @@ class getMapRequestRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // bytes map = 4; - void clear_map() ; - const std::string& map() const; + // bytes pointCloud = 3; + void clear_pointcloud() ; + const std::string& pointcloud() const; template - void set_map(Arg_&& arg, Args_... args); - std::string* mutable_map(); - PROTOBUF_NODISCARD std::string* release_map(); - void set_allocated_map(std::string* value); + void set_pointcloud(Arg_&& arg, Args_... args); + std::string* mutable_pointcloud(); + PROTOBUF_NODISCARD std::string* release_pointcloud(); + void set_allocated_pointcloud(std::string* value); private: - const std::string& _internal_map() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_map( + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( const std::string& value); - std::string* _internal_mutable_map(); + std::string* _internal_mutable_pointcloud(); public: // int32 grpcServerCompressionFormat = 1; @@ -2056,27 +2049,17 @@ class getMapRequestRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 keyframeImagesOption = 3; - void clear_keyframeimagesoption() ; - ::int32_t keyframeimagesoption() const; - void set_keyframeimagesoption(::int32_t value); - - private: - ::int32_t _internal_keyframeimagesoption() const; - void _internal_set_keyframeimagesoption(::int32_t value); - - public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapRequestRequest) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getPointCloudRequestRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 4, 0, - 53, 2> + 2, 3, 0, + 60, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapRequestRequest_default_instance_; + &_getPointCloudRequestRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -2091,11 +2074,10 @@ class getMapRequestRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapRequestRequest& from_msg); + const getPointCloudRequestRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr map_; + ::google::protobuf::internal::ArenaStringPtr pointcloud_; ::int32_t grpcservercompressionformat_; - ::int32_t keyframeimagesoption_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -2104,23 +2086,23 @@ class getMapRequestRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapProcessingStatusResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapProcessingStatusResponse) */ { +class getMapRequestResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapRequestResponse) */ { public: - inline getMapProcessingStatusResponse() : getMapProcessingStatusResponse(nullptr) {} - ~getMapProcessingStatusResponse() override; + inline getMapRequestResponse() : getMapRequestResponse(nullptr) {} + ~getMapRequestResponse() override; template - explicit PROTOBUF_CONSTEXPR getMapProcessingStatusResponse( + explicit PROTOBUF_CONSTEXPR getMapRequestResponse( ::google::protobuf::internal::ConstantInitialized); - inline getMapProcessingStatusResponse(const getMapProcessingStatusResponse& from) : getMapProcessingStatusResponse(nullptr, from) {} - inline getMapProcessingStatusResponse(getMapProcessingStatusResponse&& from) noexcept - : getMapProcessingStatusResponse(nullptr, std::move(from)) {} - inline getMapProcessingStatusResponse& operator=(const getMapProcessingStatusResponse& from) { + inline getMapRequestResponse(const getMapRequestResponse& from) : getMapRequestResponse(nullptr, from) {} + inline getMapRequestResponse(getMapRequestResponse&& from) noexcept + : getMapRequestResponse(nullptr, std::move(from)) {} + inline getMapRequestResponse& operator=(const getMapRequestResponse& from) { CopyFrom(from); return *this; } - inline getMapProcessingStatusResponse& operator=(getMapProcessingStatusResponse&& from) noexcept { + inline getMapRequestResponse& operator=(getMapRequestResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -2152,16 +2134,16 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapProcessingStatusResponse& default_instance() { + static const getMapRequestResponse& default_instance() { return *internal_default_instance(); } - static inline const getMapProcessingStatusResponse* internal_default_instance() { - return reinterpret_cast( - &_getMapProcessingStatusResponse_default_instance_); + static inline const getMapRequestResponse* internal_default_instance() { + return reinterpret_cast( + &_getMapRequestResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 21; - friend void swap(getMapProcessingStatusResponse& a, getMapProcessingStatusResponse& b) { a.Swap(&b); } - inline void Swap(getMapProcessingStatusResponse* other) { + static constexpr int kIndexInFileMessages = 11; + friend void swap(getMapRequestResponse& a, getMapRequestResponse& b) { a.Swap(&b); } + inline void Swap(getMapRequestResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -2173,7 +2155,7 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapProcessingStatusResponse* other) { + void UnsafeArenaSwap(getMapRequestResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -2181,13 +2163,13 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapProcessingStatusResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapProcessingStatusResponse& from); + void CopyFrom(const getMapRequestResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapProcessingStatusResponse& from) { getMapProcessingStatusResponse::MergeImpl(*this, from); } + void MergeFrom(const getMapRequestResponse& from) { getMapRequestResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -2208,16 +2190,16 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapProcessingStatusResponse* other); + void InternalSwap(getMapRequestResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapProcessingStatusResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapRequestResponse"; } protected: - explicit getMapProcessingStatusResponse(::google::protobuf::Arena* arena); - getMapProcessingStatusResponse(::google::protobuf::Arena* arena, const getMapProcessingStatusResponse& from); - getMapProcessingStatusResponse(::google::protobuf::Arena* arena, getMapProcessingStatusResponse&& from) noexcept - : getMapProcessingStatusResponse(arena) { + explicit getMapRequestResponse(::google::protobuf::Arena* arena); + getMapRequestResponse(::google::protobuf::Arena* arena, const getMapRequestResponse& from); + getMapRequestResponse(::google::protobuf::Arena* arena, getMapRequestResponse&& from) noexcept + : getMapRequestResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -2228,42 +2210,26 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kStatusFieldNumber = 1, - kProcessingTypeFieldNumber = 2, - kProgressFieldNumber = 3, - kXpcfGrpcReturnValueFieldNumber = 4, + kMapFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, }; - // sint32 status = 1; - void clear_status() ; - ::int32_t status() const; - void set_status(::int32_t value); - - private: - ::int32_t _internal_status() const; - void _internal_set_status(::int32_t value); - - public: - // sint32 processingType = 2; - void clear_processingtype() ; - ::int32_t processingtype() const; - void set_processingtype(::int32_t value); - - private: - ::int32_t _internal_processingtype() const; - void _internal_set_processingtype(::int32_t value); - - public: - // float progress = 3; - void clear_progress() ; - float progress() const; - void set_progress(float value); + // bytes map = 1; + void clear_map() ; + const std::string& map() const; + template + void set_map(Arg_&& arg, Args_... args); + std::string* mutable_map(); + PROTOBUF_NODISCARD std::string* release_map(); + void set_allocated_map(std::string* value); private: - float _internal_progress() const; - void _internal_set_progress(float value); + const std::string& _internal_map() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_map( + const std::string& value); + std::string* _internal_mutable_map(); public: - // sint32 xpcfGrpcReturnValue = 4; + // sint32 xpcfGrpcReturnValue = 2; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -2273,17 +2239,17 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapProcessingStatusResponse) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapRequestResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 4, 0, + 1, 2, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapProcessingStatusResponse_default_instance_; + &_getMapRequestResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -2298,10 +2264,8 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapProcessingStatusResponse& from_msg); - ::int32_t status_; - ::int32_t processingtype_; - float progress_; + const getMapRequestResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr map_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -2311,23 +2275,23 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapProcessingStatusRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapProcessingStatusRequest) */ { - public: - inline getMapProcessingStatusRequest() : getMapProcessingStatusRequest(nullptr) {} - ~getMapProcessingStatusRequest() override; +class getMapRequestRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapRequestRequest) */ { + public: + inline getMapRequestRequest() : getMapRequestRequest(nullptr) {} + ~getMapRequestRequest() override; template - explicit PROTOBUF_CONSTEXPR getMapProcessingStatusRequest( + explicit PROTOBUF_CONSTEXPR getMapRequestRequest( ::google::protobuf::internal::ConstantInitialized); - inline getMapProcessingStatusRequest(const getMapProcessingStatusRequest& from) : getMapProcessingStatusRequest(nullptr, from) {} - inline getMapProcessingStatusRequest(getMapProcessingStatusRequest&& from) noexcept - : getMapProcessingStatusRequest(nullptr, std::move(from)) {} - inline getMapProcessingStatusRequest& operator=(const getMapProcessingStatusRequest& from) { + inline getMapRequestRequest(const getMapRequestRequest& from) : getMapRequestRequest(nullptr, from) {} + inline getMapRequestRequest(getMapRequestRequest&& from) noexcept + : getMapRequestRequest(nullptr, std::move(from)) {} + inline getMapRequestRequest& operator=(const getMapRequestRequest& from) { CopyFrom(from); return *this; } - inline getMapProcessingStatusRequest& operator=(getMapProcessingStatusRequest&& from) noexcept { + inline getMapRequestRequest& operator=(getMapRequestRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -2359,16 +2323,16 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapProcessingStatusRequest& default_instance() { + static const getMapRequestRequest& default_instance() { return *internal_default_instance(); } - static inline const getMapProcessingStatusRequest* internal_default_instance() { - return reinterpret_cast( - &_getMapProcessingStatusRequest_default_instance_); + static inline const getMapRequestRequest* internal_default_instance() { + return reinterpret_cast( + &_getMapRequestRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 20; - friend void swap(getMapProcessingStatusRequest& a, getMapProcessingStatusRequest& b) { a.Swap(&b); } - inline void Swap(getMapProcessingStatusRequest* other) { + static constexpr int kIndexInFileMessages = 10; + friend void swap(getMapRequestRequest& a, getMapRequestRequest& b) { a.Swap(&b); } + inline void Swap(getMapRequestRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -2380,7 +2344,7 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapProcessingStatusRequest* other) { + void UnsafeArenaSwap(getMapRequestRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -2388,13 +2352,13 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapProcessingStatusRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapRequestRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapProcessingStatusRequest& from); + void CopyFrom(const getMapRequestRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapProcessingStatusRequest& from) { getMapProcessingStatusRequest::MergeImpl(*this, from); } + void MergeFrom(const getMapRequestRequest& from) { getMapRequestRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -2415,16 +2379,16 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapProcessingStatusRequest* other); + void InternalSwap(getMapRequestRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapProcessingStatusRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapRequestRequest"; } protected: - explicit getMapProcessingStatusRequest(::google::protobuf::Arena* arena); - getMapProcessingStatusRequest(::google::protobuf::Arena* arena, const getMapProcessingStatusRequest& from); - getMapProcessingStatusRequest(::google::protobuf::Arena* arena, getMapProcessingStatusRequest&& from) noexcept - : getMapProcessingStatusRequest(arena) { + explicit getMapRequestRequest(::google::protobuf::Arena* arena); + getMapRequestRequest(::google::protobuf::Arena* arena, const getMapRequestRequest& from); + getMapRequestRequest(::google::protobuf::Arena* arena, getMapRequestRequest&& from) noexcept + : getMapRequestRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -2435,26 +2399,41 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kResultMapUUIDFieldNumber = 2, + kMapUUIDFieldNumber = 2, + kMapFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, - kStatusFieldNumber = 3, - kProcessingTypeFieldNumber = 4, - kProgressFieldNumber = 5, + kKeyframeImagesOptionFieldNumber = 3, }; - // string resultMapUUID = 2; - void clear_resultmapuuid() ; - const std::string& resultmapuuid() const; + // string mapUUID = 2; + void clear_mapuuid() ; + const std::string& mapuuid() const; template - void set_resultmapuuid(Arg_&& arg, Args_... args); - std::string* mutable_resultmapuuid(); - PROTOBUF_NODISCARD std::string* release_resultmapuuid(); - void set_allocated_resultmapuuid(std::string* value); + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); private: - const std::string& _internal_resultmapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_resultmapuuid( + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( const std::string& value); - std::string* _internal_mutable_resultmapuuid(); + std::string* _internal_mutable_mapuuid(); + + public: + // bytes map = 4; + void clear_map() ; + const std::string& map() const; + template + void set_map(Arg_&& arg, Args_... args); + std::string* mutable_map(); + PROTOBUF_NODISCARD std::string* release_map(); + void set_allocated_map(std::string* value); + + private: + const std::string& _internal_map() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_map( + const std::string& value); + std::string* _internal_mutable_map(); public: // int32 grpcServerCompressionFormat = 1; @@ -2467,47 +2446,27 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 status = 3; - void clear_status() ; - ::int32_t status() const; - void set_status(::int32_t value); - - private: - ::int32_t _internal_status() const; - void _internal_set_status(::int32_t value); - - public: - // sint32 processingType = 4; - void clear_processingtype() ; - ::int32_t processingtype() const; - void set_processingtype(::int32_t value); - - private: - ::int32_t _internal_processingtype() const; - void _internal_set_processingtype(::int32_t value); - - public: - // float progress = 5; - void clear_progress() ; - float progress() const; - void set_progress(float value); + // sint32 keyframeImagesOption = 3; + void clear_keyframeimagesoption() ; + ::int32_t keyframeimagesoption() const; + void set_keyframeimagesoption(::int32_t value); private: - float _internal_progress() const; - void _internal_set_progress(float value); + ::int32_t _internal_keyframeimagesoption() const; + void _internal_set_keyframeimagesoption(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapProcessingStatusRequest) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapRequestRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 5, 0, - 68, 2> + 2, 4, 0, + 53, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapProcessingStatusRequest_default_instance_; + &_getMapRequestRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -2522,12 +2481,11 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapProcessingStatusRequest& from_msg); - ::google::protobuf::internal::ArenaStringPtr resultmapuuid_; + const getMapRequestRequest& from_msg); + ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr map_; ::int32_t grpcservercompressionformat_; - ::int32_t status_; - ::int32_t processingtype_; - float progress_; + ::int32_t keyframeimagesoption_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -2536,23 +2494,23 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapProcessingDataResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapProcessingDataResponse) */ { +class getMapProcessingStatusResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapProcessingStatusResponse) */ { public: - inline getMapProcessingDataResponse() : getMapProcessingDataResponse(nullptr) {} - ~getMapProcessingDataResponse() override; + inline getMapProcessingStatusResponse() : getMapProcessingStatusResponse(nullptr) {} + ~getMapProcessingStatusResponse() override; template - explicit PROTOBUF_CONSTEXPR getMapProcessingDataResponse( + explicit PROTOBUF_CONSTEXPR getMapProcessingStatusResponse( ::google::protobuf::internal::ConstantInitialized); - inline getMapProcessingDataResponse(const getMapProcessingDataResponse& from) : getMapProcessingDataResponse(nullptr, from) {} - inline getMapProcessingDataResponse(getMapProcessingDataResponse&& from) noexcept - : getMapProcessingDataResponse(nullptr, std::move(from)) {} - inline getMapProcessingDataResponse& operator=(const getMapProcessingDataResponse& from) { + inline getMapProcessingStatusResponse(const getMapProcessingStatusResponse& from) : getMapProcessingStatusResponse(nullptr, from) {} + inline getMapProcessingStatusResponse(getMapProcessingStatusResponse&& from) noexcept + : getMapProcessingStatusResponse(nullptr, std::move(from)) {} + inline getMapProcessingStatusResponse& operator=(const getMapProcessingStatusResponse& from) { CopyFrom(from); return *this; } - inline getMapProcessingDataResponse& operator=(getMapProcessingDataResponse&& from) noexcept { + inline getMapProcessingStatusResponse& operator=(getMapProcessingStatusResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -2584,16 +2542,16 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapProcessingDataResponse& default_instance() { + static const getMapProcessingStatusResponse& default_instance() { return *internal_default_instance(); } - static inline const getMapProcessingDataResponse* internal_default_instance() { - return reinterpret_cast( - &_getMapProcessingDataResponse_default_instance_); + static inline const getMapProcessingStatusResponse* internal_default_instance() { + return reinterpret_cast( + &_getMapProcessingStatusResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 23; - friend void swap(getMapProcessingDataResponse& a, getMapProcessingDataResponse& b) { a.Swap(&b); } - inline void Swap(getMapProcessingDataResponse* other) { + static constexpr int kIndexInFileMessages = 25; + friend void swap(getMapProcessingStatusResponse& a, getMapProcessingStatusResponse& b) { a.Swap(&b); } + inline void Swap(getMapProcessingStatusResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -2605,7 +2563,7 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapProcessingDataResponse* other) { + void UnsafeArenaSwap(getMapProcessingStatusResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -2613,13 +2571,13 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapProcessingDataResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapProcessingStatusResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapProcessingDataResponse& from); + void CopyFrom(const getMapProcessingStatusResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapProcessingDataResponse& from) { getMapProcessingDataResponse::MergeImpl(*this, from); } + void MergeFrom(const getMapProcessingStatusResponse& from) { getMapProcessingStatusResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -2640,16 +2598,16 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapProcessingDataResponse* other); + void InternalSwap(getMapProcessingStatusResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapProcessingDataResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapProcessingStatusResponse"; } protected: - explicit getMapProcessingDataResponse(::google::protobuf::Arena* arena); - getMapProcessingDataResponse(::google::protobuf::Arena* arena, const getMapProcessingDataResponse& from); - getMapProcessingDataResponse(::google::protobuf::Arena* arena, getMapProcessingDataResponse&& from) noexcept - : getMapProcessingDataResponse(arena) { + explicit getMapProcessingStatusResponse(::google::protobuf::Arena* arena); + getMapProcessingStatusResponse(::google::protobuf::Arena* arena, const getMapProcessingStatusResponse& from); + getMapProcessingStatusResponse(::google::protobuf::Arena* arena, getMapProcessingStatusResponse&& from) noexcept + : getMapProcessingStatusResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -2660,63 +2618,62 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kPointCloudFieldNumber = 1, - kKeyframePosesFieldNumber = 2, - kXpcfGrpcReturnValueFieldNumber = 3, + kStatusFieldNumber = 1, + kProcessingTypeFieldNumber = 2, + kProgressFieldNumber = 3, + kXpcfGrpcReturnValueFieldNumber = 4, }; - // bytes pointCloud = 1; - void clear_pointcloud() ; - const std::string& pointcloud() const; - template - void set_pointcloud(Arg_&& arg, Args_... args); - std::string* mutable_pointcloud(); - PROTOBUF_NODISCARD std::string* release_pointcloud(); - void set_allocated_pointcloud(std::string* value); + // sint32 status = 1; + void clear_status() ; + ::int32_t status() const; + void set_status(::int32_t value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( - const std::string& value); - std::string* _internal_mutable_pointcloud(); + ::int32_t _internal_status() const; + void _internal_set_status(::int32_t value); public: - // bytes keyframePoses = 2; - void clear_keyframeposes() ; - const std::string& keyframeposes() const; - template - void set_keyframeposes(Arg_&& arg, Args_... args); - std::string* mutable_keyframeposes(); - PROTOBUF_NODISCARD std::string* release_keyframeposes(); - void set_allocated_keyframeposes(std::string* value); + // sint32 processingType = 2; + void clear_processingtype() ; + ::int32_t processingtype() const; + void set_processingtype(::int32_t value); private: - const std::string& _internal_keyframeposes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( - const std::string& value); - std::string* _internal_mutable_keyframeposes(); + ::int32_t _internal_processingtype() const; + void _internal_set_processingtype(::int32_t value); public: - // sint32 xpcfGrpcReturnValue = 3; - void clear_xpcfgrpcreturnvalue() ; - ::int32_t xpcfgrpcreturnvalue() const; - void set_xpcfgrpcreturnvalue(::int32_t value); + // float progress = 3; + void clear_progress() ; + float progress() const; + void set_progress(float value); private: - ::int32_t _internal_xpcfgrpcreturnvalue() const; - void _internal_set_xpcfgrpcreturnvalue(::int32_t value); - + float _internal_progress() const; + void _internal_set_progress(float value); + public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapProcessingDataResponse) + // sint32 xpcfGrpcReturnValue = 4; + void clear_xpcfgrpcreturnvalue() ; + ::int32_t xpcfgrpcreturnvalue() const; + void set_xpcfgrpcreturnvalue(::int32_t value); + + private: + ::int32_t _internal_xpcfgrpcreturnvalue() const; + void _internal_set_xpcfgrpcreturnvalue(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapProcessingStatusResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 3, 0, + 2, 4, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapProcessingDataResponse_default_instance_; + &_getMapProcessingStatusResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -2731,9 +2688,10 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapProcessingDataResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr pointcloud_; - ::google::protobuf::internal::ArenaStringPtr keyframeposes_; + const getMapProcessingStatusResponse& from_msg); + ::int32_t status_; + ::int32_t processingtype_; + float progress_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -2743,23 +2701,23 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapProcessingDataRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapProcessingDataRequest) */ { +class getMapProcessingStatusRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapProcessingStatusRequest) */ { public: - inline getMapProcessingDataRequest() : getMapProcessingDataRequest(nullptr) {} - ~getMapProcessingDataRequest() override; + inline getMapProcessingStatusRequest() : getMapProcessingStatusRequest(nullptr) {} + ~getMapProcessingStatusRequest() override; template - explicit PROTOBUF_CONSTEXPR getMapProcessingDataRequest( + explicit PROTOBUF_CONSTEXPR getMapProcessingStatusRequest( ::google::protobuf::internal::ConstantInitialized); - inline getMapProcessingDataRequest(const getMapProcessingDataRequest& from) : getMapProcessingDataRequest(nullptr, from) {} - inline getMapProcessingDataRequest(getMapProcessingDataRequest&& from) noexcept - : getMapProcessingDataRequest(nullptr, std::move(from)) {} - inline getMapProcessingDataRequest& operator=(const getMapProcessingDataRequest& from) { + inline getMapProcessingStatusRequest(const getMapProcessingStatusRequest& from) : getMapProcessingStatusRequest(nullptr, from) {} + inline getMapProcessingStatusRequest(getMapProcessingStatusRequest&& from) noexcept + : getMapProcessingStatusRequest(nullptr, std::move(from)) {} + inline getMapProcessingStatusRequest& operator=(const getMapProcessingStatusRequest& from) { CopyFrom(from); return *this; } - inline getMapProcessingDataRequest& operator=(getMapProcessingDataRequest&& from) noexcept { + inline getMapProcessingStatusRequest& operator=(getMapProcessingStatusRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -2791,16 +2749,16 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapProcessingDataRequest& default_instance() { + static const getMapProcessingStatusRequest& default_instance() { return *internal_default_instance(); } - static inline const getMapProcessingDataRequest* internal_default_instance() { - return reinterpret_cast( - &_getMapProcessingDataRequest_default_instance_); + static inline const getMapProcessingStatusRequest* internal_default_instance() { + return reinterpret_cast( + &_getMapProcessingStatusRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 22; - friend void swap(getMapProcessingDataRequest& a, getMapProcessingDataRequest& b) { a.Swap(&b); } - inline void Swap(getMapProcessingDataRequest* other) { + static constexpr int kIndexInFileMessages = 24; + friend void swap(getMapProcessingStatusRequest& a, getMapProcessingStatusRequest& b) { a.Swap(&b); } + inline void Swap(getMapProcessingStatusRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -2812,7 +2770,7 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapProcessingDataRequest* other) { + void UnsafeArenaSwap(getMapProcessingStatusRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -2820,13 +2778,13 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapProcessingDataRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapProcessingStatusRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapProcessingDataRequest& from); + void CopyFrom(const getMapProcessingStatusRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapProcessingDataRequest& from) { getMapProcessingDataRequest::MergeImpl(*this, from); } + void MergeFrom(const getMapProcessingStatusRequest& from) { getMapProcessingStatusRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -2847,16 +2805,16 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapProcessingDataRequest* other); + void InternalSwap(getMapProcessingStatusRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapProcessingDataRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapProcessingStatusRequest"; } protected: - explicit getMapProcessingDataRequest(::google::protobuf::Arena* arena); - getMapProcessingDataRequest(::google::protobuf::Arena* arena, const getMapProcessingDataRequest& from); - getMapProcessingDataRequest(::google::protobuf::Arena* arena, getMapProcessingDataRequest&& from) noexcept - : getMapProcessingDataRequest(arena) { + explicit getMapProcessingStatusRequest(::google::protobuf::Arena* arena); + getMapProcessingStatusRequest(::google::protobuf::Arena* arena, const getMapProcessingStatusRequest& from); + getMapProcessingStatusRequest(::google::protobuf::Arena* arena, getMapProcessingStatusRequest&& from) noexcept + : getMapProcessingStatusRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -2868,9 +2826,10 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kResultMapUUIDFieldNumber = 2, - kPointCloudFieldNumber = 3, - kKeyframePosesFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, + kStatusFieldNumber = 3, + kProcessingTypeFieldNumber = 4, + kProgressFieldNumber = 5, }; // string resultMapUUID = 2; void clear_resultmapuuid() ; @@ -2888,59 +2847,57 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message std::string* _internal_mutable_resultmapuuid(); public: - // bytes pointCloud = 3; - void clear_pointcloud() ; - const std::string& pointcloud() const; - template - void set_pointcloud(Arg_&& arg, Args_... args); - std::string* mutable_pointcloud(); - PROTOBUF_NODISCARD std::string* release_pointcloud(); - void set_allocated_pointcloud(std::string* value); + // int32 grpcServerCompressionFormat = 1; + void clear_grpcservercompressionformat() ; + ::int32_t grpcservercompressionformat() const; + void set_grpcservercompressionformat(::int32_t value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( - const std::string& value); - std::string* _internal_mutable_pointcloud(); + ::int32_t _internal_grpcservercompressionformat() const; + void _internal_set_grpcservercompressionformat(::int32_t value); public: - // bytes keyframePoses = 4; - void clear_keyframeposes() ; - const std::string& keyframeposes() const; - template - void set_keyframeposes(Arg_&& arg, Args_... args); - std::string* mutable_keyframeposes(); - PROTOBUF_NODISCARD std::string* release_keyframeposes(); - void set_allocated_keyframeposes(std::string* value); + // sint32 status = 3; + void clear_status() ; + ::int32_t status() const; + void set_status(::int32_t value); private: - const std::string& _internal_keyframeposes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( - const std::string& value); - std::string* _internal_mutable_keyframeposes(); + ::int32_t _internal_status() const; + void _internal_set_status(::int32_t value); public: - // int32 grpcServerCompressionFormat = 1; - void clear_grpcservercompressionformat() ; - ::int32_t grpcservercompressionformat() const; - void set_grpcservercompressionformat(::int32_t value); + // sint32 processingType = 4; + void clear_processingtype() ; + ::int32_t processingtype() const; + void set_processingtype(::int32_t value); private: - ::int32_t _internal_grpcservercompressionformat() const; - void _internal_set_grpcservercompressionformat(::int32_t value); + ::int32_t _internal_processingtype() const; + void _internal_set_processingtype(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapProcessingDataRequest) + // float progress = 5; + void clear_progress() ; + float progress() const; + void set_progress(float value); + + private: + float _internal_progress() const; + void _internal_set_progress(float value); + + public: + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapProcessingStatusRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 2, 4, 0, - 66, 2> + 3, 5, 0, + 68, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapProcessingDataRequest_default_instance_; + &_getMapProcessingStatusRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -2955,11 +2912,12 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapProcessingDataRequest& from_msg); + const getMapProcessingStatusRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr resultmapuuid_; - ::google::protobuf::internal::ArenaStringPtr pointcloud_; - ::google::protobuf::internal::ArenaStringPtr keyframeposes_; ::int32_t grpcservercompressionformat_; + ::int32_t status_; + ::int32_t processingtype_; + float progress_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -2968,23 +2926,23 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapInfoResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapInfoResponse) */ { +class getMapProcessingDataResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapProcessingDataResponse) */ { public: - inline getMapInfoResponse() : getMapInfoResponse(nullptr) {} - ~getMapInfoResponse() override; + inline getMapProcessingDataResponse() : getMapProcessingDataResponse(nullptr) {} + ~getMapProcessingDataResponse() override; template - explicit PROTOBUF_CONSTEXPR getMapInfoResponse( + explicit PROTOBUF_CONSTEXPR getMapProcessingDataResponse( ::google::protobuf::internal::ConstantInitialized); - inline getMapInfoResponse(const getMapInfoResponse& from) : getMapInfoResponse(nullptr, from) {} - inline getMapInfoResponse(getMapInfoResponse&& from) noexcept - : getMapInfoResponse(nullptr, std::move(from)) {} - inline getMapInfoResponse& operator=(const getMapInfoResponse& from) { + inline getMapProcessingDataResponse(const getMapProcessingDataResponse& from) : getMapProcessingDataResponse(nullptr, from) {} + inline getMapProcessingDataResponse(getMapProcessingDataResponse&& from) noexcept + : getMapProcessingDataResponse(nullptr, std::move(from)) {} + inline getMapProcessingDataResponse& operator=(const getMapProcessingDataResponse& from) { CopyFrom(from); return *this; } - inline getMapInfoResponse& operator=(getMapInfoResponse&& from) noexcept { + inline getMapProcessingDataResponse& operator=(getMapProcessingDataResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3016,16 +2974,16 @@ class getMapInfoResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapInfoResponse& default_instance() { + static const getMapProcessingDataResponse& default_instance() { return *internal_default_instance(); } - static inline const getMapInfoResponse* internal_default_instance() { - return reinterpret_cast( - &_getMapInfoResponse_default_instance_); + static inline const getMapProcessingDataResponse* internal_default_instance() { + return reinterpret_cast( + &_getMapProcessingDataResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 17; - friend void swap(getMapInfoResponse& a, getMapInfoResponse& b) { a.Swap(&b); } - inline void Swap(getMapInfoResponse* other) { + static constexpr int kIndexInFileMessages = 27; + friend void swap(getMapProcessingDataResponse& a, getMapProcessingDataResponse& b) { a.Swap(&b); } + inline void Swap(getMapProcessingDataResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -3037,7 +2995,7 @@ class getMapInfoResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapInfoResponse* other) { + void UnsafeArenaSwap(getMapProcessingDataResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3045,13 +3003,13 @@ class getMapInfoResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapInfoResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapProcessingDataResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapInfoResponse& from); + void CopyFrom(const getMapProcessingDataResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapInfoResponse& from) { getMapInfoResponse::MergeImpl(*this, from); } + void MergeFrom(const getMapProcessingDataResponse& from) { getMapProcessingDataResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3072,16 +3030,16 @@ class getMapInfoResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapInfoResponse* other); + void InternalSwap(getMapProcessingDataResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapInfoResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapProcessingDataResponse"; } protected: - explicit getMapInfoResponse(::google::protobuf::Arena* arena); - getMapInfoResponse(::google::protobuf::Arena* arena, const getMapInfoResponse& from); - getMapInfoResponse(::google::protobuf::Arena* arena, getMapInfoResponse&& from) noexcept - : getMapInfoResponse(arena) { + explicit getMapProcessingDataResponse(::google::protobuf::Arena* arena); + getMapProcessingDataResponse(::google::protobuf::Arena* arena, const getMapProcessingDataResponse& from); + getMapProcessingDataResponse(::google::protobuf::Arena* arena, getMapProcessingDataResponse&& from) noexcept + : getMapProcessingDataResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -3092,70 +3050,43 @@ class getMapInfoResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kVersionFieldNumber = 1, - kGlobalDescriptorTypeFieldNumber = 2, - kDescriptorTypeFieldNumber = 3, - kDataSizeFieldNumber = 4, - kAreImageSavedFieldNumber = 5, - kXpcfGrpcReturnValueFieldNumber = 6, + kPointCloudFieldNumber = 1, + kKeyframePosesFieldNumber = 2, + kXpcfGrpcReturnValueFieldNumber = 3, }; - // string version = 1; - void clear_version() ; - const std::string& version() const; + // bytes pointCloud = 1; + void clear_pointcloud() ; + const std::string& pointcloud() const; template - void set_version(Arg_&& arg, Args_... args); - std::string* mutable_version(); - PROTOBUF_NODISCARD std::string* release_version(); - void set_allocated_version(std::string* value); + void set_pointcloud(Arg_&& arg, Args_... args); + std::string* mutable_pointcloud(); + PROTOBUF_NODISCARD std::string* release_pointcloud(); + void set_allocated_pointcloud(std::string* value); private: - const std::string& _internal_version() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_version( + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( const std::string& value); - std::string* _internal_mutable_version(); + std::string* _internal_mutable_pointcloud(); public: - // sint32 globalDescriptorType = 2; - void clear_globaldescriptortype() ; - ::int32_t globaldescriptortype() const; - void set_globaldescriptortype(::int32_t value); + // bytes keyframePoses = 2; + void clear_keyframeposes() ; + const std::string& keyframeposes() const; + template + void set_keyframeposes(Arg_&& arg, Args_... args); + std::string* mutable_keyframeposes(); + PROTOBUF_NODISCARD std::string* release_keyframeposes(); + void set_allocated_keyframeposes(std::string* value); private: - ::int32_t _internal_globaldescriptortype() const; - void _internal_set_globaldescriptortype(::int32_t value); - - public: - // sint32 descriptorType = 3; - void clear_descriptortype() ; - ::int32_t descriptortype() const; - void set_descriptortype(::int32_t value); - - private: - ::int32_t _internal_descriptortype() const; - void _internal_set_descriptortype(::int32_t value); - - public: - // uint32 dataSize = 4; - void clear_datasize() ; - ::uint32_t datasize() const; - void set_datasize(::uint32_t value); - - private: - ::uint32_t _internal_datasize() const; - void _internal_set_datasize(::uint32_t value); - - public: - // bool areImageSaved = 5; - void clear_areimagesaved() ; - bool areimagesaved() const; - void set_areimagesaved(bool value); - - private: - bool _internal_areimagesaved() const; - void _internal_set_areimagesaved(bool value); + const std::string& _internal_keyframeposes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( + const std::string& value); + std::string* _internal_mutable_keyframeposes(); public: - // sint32 xpcfGrpcReturnValue = 6; + // sint32 xpcfGrpcReturnValue = 3; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -3165,17 +3096,17 @@ class getMapInfoResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapInfoResponse) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapProcessingDataResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 6, 0, - 51, 2> + 2, 3, 0, + 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapInfoResponse_default_instance_; + &_getMapProcessingDataResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3190,12 +3121,9 @@ class getMapInfoResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapInfoResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr version_; - ::int32_t globaldescriptortype_; - ::int32_t descriptortype_; - ::uint32_t datasize_; - bool areimagesaved_; + const getMapProcessingDataResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr keyframeposes_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -3205,23 +3133,23 @@ class getMapInfoResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapInfoRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapInfoRequest) */ { +class getMapProcessingDataRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapProcessingDataRequest) */ { public: - inline getMapInfoRequest() : getMapInfoRequest(nullptr) {} - ~getMapInfoRequest() override; + inline getMapProcessingDataRequest() : getMapProcessingDataRequest(nullptr) {} + ~getMapProcessingDataRequest() override; template - explicit PROTOBUF_CONSTEXPR getMapInfoRequest( + explicit PROTOBUF_CONSTEXPR getMapProcessingDataRequest( ::google::protobuf::internal::ConstantInitialized); - inline getMapInfoRequest(const getMapInfoRequest& from) : getMapInfoRequest(nullptr, from) {} - inline getMapInfoRequest(getMapInfoRequest&& from) noexcept - : getMapInfoRequest(nullptr, std::move(from)) {} - inline getMapInfoRequest& operator=(const getMapInfoRequest& from) { + inline getMapProcessingDataRequest(const getMapProcessingDataRequest& from) : getMapProcessingDataRequest(nullptr, from) {} + inline getMapProcessingDataRequest(getMapProcessingDataRequest&& from) noexcept + : getMapProcessingDataRequest(nullptr, std::move(from)) {} + inline getMapProcessingDataRequest& operator=(const getMapProcessingDataRequest& from) { CopyFrom(from); return *this; } - inline getMapInfoRequest& operator=(getMapInfoRequest&& from) noexcept { + inline getMapProcessingDataRequest& operator=(getMapProcessingDataRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3253,16 +3181,16 @@ class getMapInfoRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getMapInfoRequest& default_instance() { + static const getMapProcessingDataRequest& default_instance() { return *internal_default_instance(); } - static inline const getMapInfoRequest* internal_default_instance() { - return reinterpret_cast( - &_getMapInfoRequest_default_instance_); + static inline const getMapProcessingDataRequest* internal_default_instance() { + return reinterpret_cast( + &_getMapProcessingDataRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 16; - friend void swap(getMapInfoRequest& a, getMapInfoRequest& b) { a.Swap(&b); } - inline void Swap(getMapInfoRequest* other) { + static constexpr int kIndexInFileMessages = 26; + friend void swap(getMapProcessingDataRequest& a, getMapProcessingDataRequest& b) { a.Swap(&b); } + inline void Swap(getMapProcessingDataRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -3274,7 +3202,7 @@ class getMapInfoRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getMapInfoRequest* other) { + void UnsafeArenaSwap(getMapProcessingDataRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3282,13 +3210,13 @@ class getMapInfoRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getMapInfoRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + getMapProcessingDataRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getMapInfoRequest& from); + void CopyFrom(const getMapProcessingDataRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getMapInfoRequest& from) { getMapInfoRequest::MergeImpl(*this, from); } + void MergeFrom(const getMapProcessingDataRequest& from) { getMapProcessingDataRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3309,16 +3237,16 @@ class getMapInfoRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getMapInfoRequest* other); + void InternalSwap(getMapProcessingDataRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapInfoRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapProcessingDataRequest"; } protected: - explicit getMapInfoRequest(::google::protobuf::Arena* arena); - getMapInfoRequest(::google::protobuf::Arena* arena, const getMapInfoRequest& from); - getMapInfoRequest(::google::protobuf::Arena* arena, getMapInfoRequest&& from) noexcept - : getMapInfoRequest(arena) { + explicit getMapProcessingDataRequest(::google::protobuf::Arena* arena); + getMapProcessingDataRequest(::google::protobuf::Arena* arena, const getMapProcessingDataRequest& from); + getMapProcessingDataRequest(::google::protobuf::Arena* arena, getMapProcessingDataRequest&& from) noexcept + : getMapProcessingDataRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -3329,44 +3257,57 @@ class getMapInfoRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapUUIDFieldNumber = 2, - kVersionFieldNumber = 3, + kResultMapUUIDFieldNumber = 2, + kPointCloudFieldNumber = 3, + kKeyframePosesFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, - kGlobalDescriptorTypeFieldNumber = 4, - kDescriptorTypeFieldNumber = 5, - kDataSizeFieldNumber = 6, - kAreImageSavedFieldNumber = 7, }; - // string mapUUID = 2; - void clear_mapuuid() ; - const std::string& mapuuid() const; + // string resultMapUUID = 2; + void clear_resultmapuuid() ; + const std::string& resultmapuuid() const; template - void set_mapuuid(Arg_&& arg, Args_... args); - std::string* mutable_mapuuid(); - PROTOBUF_NODISCARD std::string* release_mapuuid(); - void set_allocated_mapuuid(std::string* value); + void set_resultmapuuid(Arg_&& arg, Args_... args); + std::string* mutable_resultmapuuid(); + PROTOBUF_NODISCARD std::string* release_resultmapuuid(); + void set_allocated_resultmapuuid(std::string* value); private: - const std::string& _internal_mapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( + const std::string& _internal_resultmapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_resultmapuuid( const std::string& value); - std::string* _internal_mutable_mapuuid(); + std::string* _internal_mutable_resultmapuuid(); public: - // string version = 3; - void clear_version() ; - const std::string& version() const; + // bytes pointCloud = 3; + void clear_pointcloud() ; + const std::string& pointcloud() const; template - void set_version(Arg_&& arg, Args_... args); - std::string* mutable_version(); - PROTOBUF_NODISCARD std::string* release_version(); - void set_allocated_version(std::string* value); + void set_pointcloud(Arg_&& arg, Args_... args); + std::string* mutable_pointcloud(); + PROTOBUF_NODISCARD std::string* release_pointcloud(); + void set_allocated_pointcloud(std::string* value); private: - const std::string& _internal_version() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_version( + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( const std::string& value); - std::string* _internal_mutable_version(); + std::string* _internal_mutable_pointcloud(); + + public: + // bytes keyframePoses = 4; + void clear_keyframeposes() ; + const std::string& keyframeposes() const; + template + void set_keyframeposes(Arg_&& arg, Args_... args); + std::string* mutable_keyframeposes(); + PROTOBUF_NODISCARD std::string* release_keyframeposes(); + void set_allocated_keyframeposes(std::string* value); + + private: + const std::string& _internal_keyframeposes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframeposes( + const std::string& value); + std::string* _internal_mutable_keyframeposes(); public: // int32 grpcServerCompressionFormat = 1; @@ -3379,57 +3320,889 @@ class getMapInfoRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // sint32 globalDescriptorType = 4; - void clear_globaldescriptortype() ; - ::int32_t globaldescriptortype() const; - void set_globaldescriptortype(::int32_t value); + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapProcessingDataRequest) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 2, 4, 0, + 66, 2> + _table_; - private: - ::int32_t _internal_globaldescriptortype() const; - void _internal_set_globaldescriptortype(::int32_t value); + static constexpr const void* _raw_default_instance_ = + &_getMapProcessingDataRequest_default_instance_; - public: - // sint32 descriptorType = 5; - void clear_descriptortype() ; - ::int32_t descriptortype() const; - void set_descriptortype(::int32_t value); + 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 getMapProcessingDataRequest& from_msg); + ::google::protobuf::internal::ArenaStringPtr resultmapuuid_; + ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr keyframeposes_; + ::int32_t grpcservercompressionformat_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIMapsManagerService_2eproto; +}; +// ------------------------------------------------------------------- - private: - ::int32_t _internal_descriptortype() const; - void _internal_set_descriptortype(::int32_t value); +class getMapInfoResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapInfoResponse) */ { + public: + inline getMapInfoResponse() : getMapInfoResponse(nullptr) {} + ~getMapInfoResponse() override; + template + explicit PROTOBUF_CONSTEXPR getMapInfoResponse( + ::google::protobuf::internal::ConstantInitialized); - public: - // uint32 dataSize = 6; - void clear_datasize() ; - ::uint32_t datasize() const; - void set_datasize(::uint32_t value); + inline getMapInfoResponse(const getMapInfoResponse& from) : getMapInfoResponse(nullptr, from) {} + inline getMapInfoResponse(getMapInfoResponse&& from) noexcept + : getMapInfoResponse(nullptr, std::move(from)) {} + inline getMapInfoResponse& operator=(const getMapInfoResponse& from) { + CopyFrom(from); + return *this; + } + inline getMapInfoResponse& operator=(getMapInfoResponse&& 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 getMapInfoResponse& default_instance() { + return *internal_default_instance(); + } + static inline const getMapInfoResponse* internal_default_instance() { + return reinterpret_cast( + &_getMapInfoResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = 17; + friend void swap(getMapInfoResponse& a, getMapInfoResponse& b) { a.Swap(&b); } + inline void Swap(getMapInfoResponse* 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(getMapInfoResponse* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + getMapInfoResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); + } + using ::google::protobuf::Message::CopyFrom; + void CopyFrom(const getMapInfoResponse& from); + using ::google::protobuf::Message::MergeFrom; + void MergeFrom(const getMapInfoResponse& from) { getMapInfoResponse::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() final; + ::size_t ByteSizeLong() const final; + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::google::protobuf::Arena* arena); + void SharedDtor(); + void InternalSwap(getMapInfoResponse* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapInfoResponse"; } + + protected: + explicit getMapInfoResponse(::google::protobuf::Arena* arena); + getMapInfoResponse(::google::protobuf::Arena* arena, const getMapInfoResponse& from); + getMapInfoResponse(::google::protobuf::Arena* arena, getMapInfoResponse&& from) noexcept + : getMapInfoResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; + + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + enum : int { + kVersionFieldNumber = 1, + kGlobalDescriptorTypeFieldNumber = 2, + kDescriptorTypeFieldNumber = 3, + kDataSizeFieldNumber = 4, + kAreImageSavedFieldNumber = 5, + kXpcfGrpcReturnValueFieldNumber = 6, + }; + // string version = 1; + void clear_version() ; + const std::string& version() const; + template + void set_version(Arg_&& arg, Args_... args); + std::string* mutable_version(); + PROTOBUF_NODISCARD std::string* release_version(); + void set_allocated_version(std::string* value); + + private: + const std::string& _internal_version() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_version( + const std::string& value); + std::string* _internal_mutable_version(); + + public: + // sint32 globalDescriptorType = 2; + void clear_globaldescriptortype() ; + ::int32_t globaldescriptortype() const; + void set_globaldescriptortype(::int32_t value); + + private: + ::int32_t _internal_globaldescriptortype() const; + void _internal_set_globaldescriptortype(::int32_t value); + + public: + // sint32 descriptorType = 3; + void clear_descriptortype() ; + ::int32_t descriptortype() const; + void set_descriptortype(::int32_t value); + + private: + ::int32_t _internal_descriptortype() const; + void _internal_set_descriptortype(::int32_t value); + + public: + // uint32 dataSize = 4; + void clear_datasize() ; + ::uint32_t datasize() const; + void set_datasize(::uint32_t value); + + private: + ::uint32_t _internal_datasize() const; + void _internal_set_datasize(::uint32_t value); + + public: + // bool areImageSaved = 5; + void clear_areimagesaved() ; + bool areimagesaved() const; + void set_areimagesaved(bool value); + + private: + bool _internal_areimagesaved() const; + void _internal_set_areimagesaved(bool value); + + public: + // sint32 xpcfGrpcReturnValue = 6; + void clear_xpcfgrpcreturnvalue() ; + ::int32_t xpcfgrpcreturnvalue() const; + void set_xpcfgrpcreturnvalue(::int32_t value); + + private: + ::int32_t _internal_xpcfgrpcreturnvalue() const; + void _internal_set_xpcfgrpcreturnvalue(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapInfoResponse) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 3, 6, 0, + 51, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_getMapInfoResponse_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 getMapInfoResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr version_; + ::int32_t globaldescriptortype_; + ::int32_t descriptortype_; + ::uint32_t datasize_; + bool areimagesaved_; + ::int32_t xpcfgrpcreturnvalue_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIMapsManagerService_2eproto; +}; +// ------------------------------------------------------------------- + +class getMapInfoRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapInfoRequest) */ { + public: + inline getMapInfoRequest() : getMapInfoRequest(nullptr) {} + ~getMapInfoRequest() override; + template + explicit PROTOBUF_CONSTEXPR getMapInfoRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline getMapInfoRequest(const getMapInfoRequest& from) : getMapInfoRequest(nullptr, from) {} + inline getMapInfoRequest(getMapInfoRequest&& from) noexcept + : getMapInfoRequest(nullptr, std::move(from)) {} + inline getMapInfoRequest& operator=(const getMapInfoRequest& from) { + CopyFrom(from); + return *this; + } + inline getMapInfoRequest& operator=(getMapInfoRequest&& 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 getMapInfoRequest& default_instance() { + return *internal_default_instance(); + } + static inline const getMapInfoRequest* internal_default_instance() { + return reinterpret_cast( + &_getMapInfoRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = 16; + friend void swap(getMapInfoRequest& a, getMapInfoRequest& b) { a.Swap(&b); } + inline void Swap(getMapInfoRequest* 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(getMapInfoRequest* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + getMapInfoRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); + } + using ::google::protobuf::Message::CopyFrom; + void CopyFrom(const getMapInfoRequest& from); + using ::google::protobuf::Message::MergeFrom; + void MergeFrom(const getMapInfoRequest& from) { getMapInfoRequest::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() final; + ::size_t ByteSizeLong() const final; + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::google::protobuf::Arena* arena); + void SharedDtor(); + void InternalSwap(getMapInfoRequest* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapInfoRequest"; } + + protected: + explicit getMapInfoRequest(::google::protobuf::Arena* arena); + getMapInfoRequest(::google::protobuf::Arena* arena, const getMapInfoRequest& from); + getMapInfoRequest(::google::protobuf::Arena* arena, getMapInfoRequest&& from) noexcept + : getMapInfoRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; + + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + enum : int { + kMapUUIDFieldNumber = 2, + kVersionFieldNumber = 3, + kGrpcServerCompressionFormatFieldNumber = 1, + kGlobalDescriptorTypeFieldNumber = 4, + kDescriptorTypeFieldNumber = 5, + kDataSizeFieldNumber = 6, + kAreImageSavedFieldNumber = 7, + }; + // string mapUUID = 2; + void clear_mapuuid() ; + const std::string& mapuuid() const; + template + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); + + private: + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( + const std::string& value); + std::string* _internal_mutable_mapuuid(); + + public: + // string version = 3; + void clear_version() ; + const std::string& version() const; + template + void set_version(Arg_&& arg, Args_... args); + std::string* mutable_version(); + PROTOBUF_NODISCARD std::string* release_version(); + void set_allocated_version(std::string* value); + + private: + const std::string& _internal_version() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_version( + const std::string& value); + std::string* _internal_mutable_version(); + + public: + // int32 grpcServerCompressionFormat = 1; + void clear_grpcservercompressionformat() ; + ::int32_t grpcservercompressionformat() const; + void set_grpcservercompressionformat(::int32_t value); + + private: + ::int32_t _internal_grpcservercompressionformat() const; + void _internal_set_grpcservercompressionformat(::int32_t value); + + public: + // sint32 globalDescriptorType = 4; + void clear_globaldescriptortype() ; + ::int32_t globaldescriptortype() const; + void set_globaldescriptortype(::int32_t value); + + private: + ::int32_t _internal_globaldescriptortype() const; + void _internal_set_globaldescriptortype(::int32_t value); + + public: + // sint32 descriptorType = 5; + void clear_descriptortype() ; + ::int32_t descriptortype() const; + void set_descriptortype(::int32_t value); + + private: + ::int32_t _internal_descriptortype() const; + void _internal_set_descriptortype(::int32_t value); + + public: + // uint32 dataSize = 6; + void clear_datasize() ; + ::uint32_t datasize() const; + void set_datasize(::uint32_t value); + + private: + ::uint32_t _internal_datasize() const; + void _internal_set_datasize(::uint32_t value); + + public: + // bool areImageSaved = 7; + void clear_areimagesaved() ; + bool areimagesaved() const; + void set_areimagesaved(bool value); + + private: + bool _internal_areimagesaved() const; + void _internal_set_areimagesaved(bool value); + + public: + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapInfoRequest) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 3, 7, 0, + 57, 2> + _table_; + + static constexpr const void* _raw_default_instance_ = + &_getMapInfoRequest_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 getMapInfoRequest& from_msg); + ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr version_; + ::int32_t grpcservercompressionformat_; + ::int32_t globaldescriptortype_; + ::int32_t descriptortype_; + ::uint32_t datasize_; + bool areimagesaved_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIMapsManagerService_2eproto; +}; +// ------------------------------------------------------------------- + +class getAllMapsResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getAllMapsResponse) */ { + public: + inline getAllMapsResponse() : getAllMapsResponse(nullptr) {} + ~getAllMapsResponse() override; + template + explicit PROTOBUF_CONSTEXPR getAllMapsResponse( + ::google::protobuf::internal::ConstantInitialized); + + inline getAllMapsResponse(const getAllMapsResponse& from) : getAllMapsResponse(nullptr, from) {} + inline getAllMapsResponse(getAllMapsResponse&& from) noexcept + : getAllMapsResponse(nullptr, std::move(from)) {} + inline getAllMapsResponse& operator=(const getAllMapsResponse& from) { + CopyFrom(from); + return *this; + } + inline getAllMapsResponse& operator=(getAllMapsResponse&& 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 getAllMapsResponse& default_instance() { + return *internal_default_instance(); + } + static inline const getAllMapsResponse* internal_default_instance() { + return reinterpret_cast( + &_getAllMapsResponse_default_instance_); + } + static constexpr int kIndexInFileMessages = 5; + friend void swap(getAllMapsResponse& a, getAllMapsResponse& b) { a.Swap(&b); } + inline void Swap(getAllMapsResponse* 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(getAllMapsResponse* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + getAllMapsResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); + } + using ::google::protobuf::Message::CopyFrom; + void CopyFrom(const getAllMapsResponse& from); + using ::google::protobuf::Message::MergeFrom; + void MergeFrom(const getAllMapsResponse& from) { getAllMapsResponse::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() final; + ::size_t ByteSizeLong() const final; + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::google::protobuf::Arena* arena); + void SharedDtor(); + void InternalSwap(getAllMapsResponse* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getAllMapsResponse"; } + + protected: + explicit getAllMapsResponse(::google::protobuf::Arena* arena); + getAllMapsResponse(::google::protobuf::Arena* arena, const getAllMapsResponse& from); + getAllMapsResponse(::google::protobuf::Arena* arena, getAllMapsResponse&& from) noexcept + : getAllMapsResponse(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; + + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + enum : int { + kMapUUIDListFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, + }; + // bytes mapUUIDList = 1; + void clear_mapuuidlist() ; + const std::string& mapuuidlist() const; + template + void set_mapuuidlist(Arg_&& arg, Args_... args); + std::string* mutable_mapuuidlist(); + PROTOBUF_NODISCARD std::string* release_mapuuidlist(); + void set_allocated_mapuuidlist(std::string* value); + + private: + const std::string& _internal_mapuuidlist() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuidlist( + const std::string& value); + std::string* _internal_mutable_mapuuidlist(); + + public: + // sint32 xpcfGrpcReturnValue = 2; + void clear_xpcfgrpcreturnvalue() ; + ::int32_t xpcfgrpcreturnvalue() const; + void set_xpcfgrpcreturnvalue(::int32_t value); + + private: + ::int32_t _internal_xpcfgrpcreturnvalue() const; + void _internal_set_xpcfgrpcreturnvalue(::int32_t value); + + public: + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getAllMapsResponse) + 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_ = + &_getAllMapsResponse_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 getAllMapsResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr mapuuidlist_; + ::int32_t xpcfgrpcreturnvalue_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIMapsManagerService_2eproto; +}; +// ------------------------------------------------------------------- + +class getAllMapsRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getAllMapsRequest) */ { + public: + inline getAllMapsRequest() : getAllMapsRequest(nullptr) {} + ~getAllMapsRequest() override; + template + explicit PROTOBUF_CONSTEXPR getAllMapsRequest( + ::google::protobuf::internal::ConstantInitialized); + + inline getAllMapsRequest(const getAllMapsRequest& from) : getAllMapsRequest(nullptr, from) {} + inline getAllMapsRequest(getAllMapsRequest&& from) noexcept + : getAllMapsRequest(nullptr, std::move(from)) {} + inline getAllMapsRequest& operator=(const getAllMapsRequest& from) { + CopyFrom(from); + return *this; + } + inline getAllMapsRequest& operator=(getAllMapsRequest&& 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 getAllMapsRequest& default_instance() { + return *internal_default_instance(); + } + static inline const getAllMapsRequest* internal_default_instance() { + return reinterpret_cast( + &_getAllMapsRequest_default_instance_); + } + static constexpr int kIndexInFileMessages = 4; + friend void swap(getAllMapsRequest& a, getAllMapsRequest& b) { a.Swap(&b); } + inline void Swap(getAllMapsRequest* 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(getAllMapsRequest* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + getAllMapsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); + } + using ::google::protobuf::Message::CopyFrom; + void CopyFrom(const getAllMapsRequest& from); + using ::google::protobuf::Message::MergeFrom; + void MergeFrom(const getAllMapsRequest& from) { getAllMapsRequest::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() final; + ::size_t ByteSizeLong() const final; + ::uint8_t* _InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const final; + int GetCachedSize() const { return _impl_._cached_size_.Get(); } + + private: + void SharedCtor(::google::protobuf::Arena* arena); + void SharedDtor(); + void InternalSwap(getAllMapsRequest* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getAllMapsRequest"; } + + protected: + explicit getAllMapsRequest(::google::protobuf::Arena* arena); + getAllMapsRequest(::google::protobuf::Arena* arena, const getAllMapsRequest& from); + getAllMapsRequest(::google::protobuf::Arena* arena, getAllMapsRequest&& from) noexcept + : getAllMapsRequest(arena) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; + + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + enum : int { + kMapUUIDListFieldNumber = 2, + kGrpcServerCompressionFormatFieldNumber = 1, + }; + // bytes mapUUIDList = 2; + void clear_mapuuidlist() ; + const std::string& mapuuidlist() const; + template + void set_mapuuidlist(Arg_&& arg, Args_... args); + std::string* mutable_mapuuidlist(); + PROTOBUF_NODISCARD std::string* release_mapuuidlist(); + void set_allocated_mapuuidlist(std::string* value); private: - ::uint32_t _internal_datasize() const; - void _internal_set_datasize(::uint32_t value); + const std::string& _internal_mapuuidlist() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuidlist( + const std::string& value); + std::string* _internal_mutable_mapuuidlist(); public: - // bool areImageSaved = 7; - void clear_areimagesaved() ; - bool areimagesaved() const; - void set_areimagesaved(bool value); + // int32 grpcServerCompressionFormat = 1; + void clear_grpcservercompressionformat() ; + ::int32_t grpcservercompressionformat() const; + void set_grpcservercompressionformat(::int32_t value); private: - bool _internal_areimagesaved() const; - void _internal_set_areimagesaved(bool value); + ::int32_t _internal_grpcservercompressionformat() const; + void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapInfoRequest) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getAllMapsRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 7, 0, - 57, 2> + 1, 2, 0, + 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getMapInfoRequest_default_instance_; + &_getAllMapsRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3444,14 +4217,9 @@ class getMapInfoRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getMapInfoRequest& from_msg); - ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr version_; + const getAllMapsRequest& from_msg); + ::google::protobuf::internal::ArenaStringPtr mapuuidlist_; ::int32_t grpcservercompressionformat_; - ::int32_t globaldescriptortype_; - ::int32_t descriptortype_; - ::uint32_t datasize_; - bool areimagesaved_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -3460,23 +4228,23 @@ class getMapInfoRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getAllMapsResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getAllMapsResponse) */ { +class deleteMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.deleteMapResponse) */ { public: - inline getAllMapsResponse() : getAllMapsResponse(nullptr) {} - ~getAllMapsResponse() override; + inline deleteMapResponse() : deleteMapResponse(nullptr) {} + ~deleteMapResponse() override; template - explicit PROTOBUF_CONSTEXPR getAllMapsResponse( + explicit PROTOBUF_CONSTEXPR deleteMapResponse( ::google::protobuf::internal::ConstantInitialized); - inline getAllMapsResponse(const getAllMapsResponse& from) : getAllMapsResponse(nullptr, from) {} - inline getAllMapsResponse(getAllMapsResponse&& from) noexcept - : getAllMapsResponse(nullptr, std::move(from)) {} - inline getAllMapsResponse& operator=(const getAllMapsResponse& from) { + inline deleteMapResponse(const deleteMapResponse& from) : deleteMapResponse(nullptr, from) {} + inline deleteMapResponse(deleteMapResponse&& from) noexcept + : deleteMapResponse(nullptr, std::move(from)) {} + inline deleteMapResponse& operator=(const deleteMapResponse& from) { CopyFrom(from); return *this; } - inline getAllMapsResponse& operator=(getAllMapsResponse&& from) noexcept { + inline deleteMapResponse& operator=(deleteMapResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3508,16 +4276,16 @@ class getAllMapsResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getAllMapsResponse& default_instance() { + static const deleteMapResponse& default_instance() { return *internal_default_instance(); } - static inline const getAllMapsResponse* internal_default_instance() { - return reinterpret_cast( - &_getAllMapsResponse_default_instance_); + static inline const deleteMapResponse* internal_default_instance() { + return reinterpret_cast( + &_deleteMapResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 5; - friend void swap(getAllMapsResponse& a, getAllMapsResponse& b) { a.Swap(&b); } - inline void Swap(getAllMapsResponse* other) { + static constexpr int kIndexInFileMessages = 3; + friend void swap(deleteMapResponse& a, deleteMapResponse& b) { a.Swap(&b); } + inline void Swap(deleteMapResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -3529,7 +4297,7 @@ class getAllMapsResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getAllMapsResponse* other) { + void UnsafeArenaSwap(deleteMapResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3537,13 +4305,13 @@ class getAllMapsResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getAllMapsResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + deleteMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getAllMapsResponse& from); + void CopyFrom(const deleteMapResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getAllMapsResponse& from) { getAllMapsResponse::MergeImpl(*this, from); } + void MergeFrom(const deleteMapResponse& from) { deleteMapResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3564,16 +4332,16 @@ class getAllMapsResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getAllMapsResponse* other); + void InternalSwap(deleteMapResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getAllMapsResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.deleteMapResponse"; } protected: - explicit getAllMapsResponse(::google::protobuf::Arena* arena); - getAllMapsResponse(::google::protobuf::Arena* arena, const getAllMapsResponse& from); - getAllMapsResponse(::google::protobuf::Arena* arena, getAllMapsResponse&& from) noexcept - : getAllMapsResponse(arena) { + explicit deleteMapResponse(::google::protobuf::Arena* arena); + deleteMapResponse(::google::protobuf::Arena* arena, const deleteMapResponse& from); + deleteMapResponse(::google::protobuf::Arena* arena, deleteMapResponse&& from) noexcept + : deleteMapResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -3584,26 +4352,9 @@ class getAllMapsResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapUUIDListFieldNumber = 1, - kXpcfGrpcReturnValueFieldNumber = 2, + kXpcfGrpcReturnValueFieldNumber = 1, }; - // bytes mapUUIDList = 1; - void clear_mapuuidlist() ; - const std::string& mapuuidlist() const; - template - void set_mapuuidlist(Arg_&& arg, Args_... args); - std::string* mutable_mapuuidlist(); - PROTOBUF_NODISCARD std::string* release_mapuuidlist(); - void set_allocated_mapuuidlist(std::string* value); - - private: - const std::string& _internal_mapuuidlist() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuidlist( - const std::string& value); - std::string* _internal_mutable_mapuuidlist(); - - public: - // sint32 xpcfGrpcReturnValue = 2; + // sint32 xpcfGrpcReturnValue = 1; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -3613,17 +4364,17 @@ class getAllMapsResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getAllMapsResponse) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.deleteMapResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 1, 2, 0, + 0, 1, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getAllMapsResponse_default_instance_; + &_deleteMapResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3638,8 +4389,7 @@ class getAllMapsResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getAllMapsResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr mapuuidlist_; + const deleteMapResponse& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -3649,23 +4399,23 @@ class getAllMapsResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getAllMapsRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getAllMapsRequest) */ { +class deleteMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.deleteMapRequest) */ { public: - inline getAllMapsRequest() : getAllMapsRequest(nullptr) {} - ~getAllMapsRequest() override; + inline deleteMapRequest() : deleteMapRequest(nullptr) {} + ~deleteMapRequest() override; template - explicit PROTOBUF_CONSTEXPR getAllMapsRequest( + explicit PROTOBUF_CONSTEXPR deleteMapRequest( ::google::protobuf::internal::ConstantInitialized); - inline getAllMapsRequest(const getAllMapsRequest& from) : getAllMapsRequest(nullptr, from) {} - inline getAllMapsRequest(getAllMapsRequest&& from) noexcept - : getAllMapsRequest(nullptr, std::move(from)) {} - inline getAllMapsRequest& operator=(const getAllMapsRequest& from) { + inline deleteMapRequest(const deleteMapRequest& from) : deleteMapRequest(nullptr, from) {} + inline deleteMapRequest(deleteMapRequest&& from) noexcept + : deleteMapRequest(nullptr, std::move(from)) {} + inline deleteMapRequest& operator=(const deleteMapRequest& from) { CopyFrom(from); return *this; } - inline getAllMapsRequest& operator=(getAllMapsRequest&& from) noexcept { + inline deleteMapRequest& operator=(deleteMapRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3697,16 +4447,16 @@ class getAllMapsRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const getAllMapsRequest& default_instance() { + static const deleteMapRequest& default_instance() { return *internal_default_instance(); } - static inline const getAllMapsRequest* internal_default_instance() { - return reinterpret_cast( - &_getAllMapsRequest_default_instance_); + static inline const deleteMapRequest* internal_default_instance() { + return reinterpret_cast( + &_deleteMapRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 4; - friend void swap(getAllMapsRequest& a, getAllMapsRequest& b) { a.Swap(&b); } - inline void Swap(getAllMapsRequest* other) { + static constexpr int kIndexInFileMessages = 2; + friend void swap(deleteMapRequest& a, deleteMapRequest& b) { a.Swap(&b); } + inline void Swap(deleteMapRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -3718,7 +4468,7 @@ class getAllMapsRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getAllMapsRequest* other) { + void UnsafeArenaSwap(deleteMapRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3726,13 +4476,13 @@ class getAllMapsRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - getAllMapsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + deleteMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const getAllMapsRequest& from); + void CopyFrom(const deleteMapRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getAllMapsRequest& from) { getAllMapsRequest::MergeImpl(*this, from); } + void MergeFrom(const deleteMapRequest& from) { deleteMapRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3753,16 +4503,16 @@ class getAllMapsRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getAllMapsRequest* other); + void InternalSwap(deleteMapRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getAllMapsRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.deleteMapRequest"; } protected: - explicit getAllMapsRequest(::google::protobuf::Arena* arena); - getAllMapsRequest(::google::protobuf::Arena* arena, const getAllMapsRequest& from); - getAllMapsRequest(::google::protobuf::Arena* arena, getAllMapsRequest&& from) noexcept - : getAllMapsRequest(arena) { + explicit deleteMapRequest(::google::protobuf::Arena* arena); + deleteMapRequest(::google::protobuf::Arena* arena, const deleteMapRequest& from); + deleteMapRequest(::google::protobuf::Arena* arena, deleteMapRequest&& from) noexcept + : deleteMapRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -3773,23 +4523,23 @@ class getAllMapsRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapUUIDListFieldNumber = 2, + kMapUUIDFieldNumber = 2, kGrpcServerCompressionFormatFieldNumber = 1, }; - // bytes mapUUIDList = 2; - void clear_mapuuidlist() ; - const std::string& mapuuidlist() const; + // string mapUUID = 2; + void clear_mapuuid() ; + const std::string& mapuuid() const; template - void set_mapuuidlist(Arg_&& arg, Args_... args); - std::string* mutable_mapuuidlist(); - PROTOBUF_NODISCARD std::string* release_mapuuidlist(); - void set_allocated_mapuuidlist(std::string* value); + void set_mapuuid(Arg_&& arg, Args_... args); + std::string* mutable_mapuuid(); + PROTOBUF_NODISCARD std::string* release_mapuuid(); + void set_allocated_mapuuid(std::string* value); private: - const std::string& _internal_mapuuidlist() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuidlist( + const std::string& _internal_mapuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( const std::string& value); - std::string* _internal_mutable_mapuuidlist(); + std::string* _internal_mutable_mapuuid(); public: // int32 grpcServerCompressionFormat = 1; @@ -3802,17 +4552,17 @@ class getAllMapsRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getAllMapsRequest) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.deleteMapRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, - 0, 2> + 49, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getAllMapsRequest_default_instance_; + &_deleteMapRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3827,8 +4577,8 @@ class getAllMapsRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const getAllMapsRequest& from_msg); - ::google::protobuf::internal::ArenaStringPtr mapuuidlist_; + const deleteMapRequest& from_msg); + ::google::protobuf::internal::ArenaStringPtr mapuuid_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -3838,23 +4588,23 @@ class getAllMapsRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class deleteMapResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.deleteMapResponse) */ { +class decreaseMapClientsResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.decreaseMapClientsResponse) */ { public: - inline deleteMapResponse() : deleteMapResponse(nullptr) {} - ~deleteMapResponse() override; + inline decreaseMapClientsResponse() : decreaseMapClientsResponse(nullptr) {} + ~decreaseMapClientsResponse() override; template - explicit PROTOBUF_CONSTEXPR deleteMapResponse( + explicit PROTOBUF_CONSTEXPR decreaseMapClientsResponse( ::google::protobuf::internal::ConstantInitialized); - inline deleteMapResponse(const deleteMapResponse& from) : deleteMapResponse(nullptr, from) {} - inline deleteMapResponse(deleteMapResponse&& from) noexcept - : deleteMapResponse(nullptr, std::move(from)) {} - inline deleteMapResponse& operator=(const deleteMapResponse& from) { + inline decreaseMapClientsResponse(const decreaseMapClientsResponse& from) : decreaseMapClientsResponse(nullptr, from) {} + inline decreaseMapClientsResponse(decreaseMapClientsResponse&& from) noexcept + : decreaseMapClientsResponse(nullptr, std::move(from)) {} + inline decreaseMapClientsResponse& operator=(const decreaseMapClientsResponse& from) { CopyFrom(from); return *this; } - inline deleteMapResponse& operator=(deleteMapResponse&& from) noexcept { + inline decreaseMapClientsResponse& operator=(decreaseMapClientsResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3886,16 +4636,16 @@ class deleteMapResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const deleteMapResponse& default_instance() { + static const decreaseMapClientsResponse& default_instance() { return *internal_default_instance(); } - static inline const deleteMapResponse* internal_default_instance() { - return reinterpret_cast( - &_deleteMapResponse_default_instance_); + static inline const decreaseMapClientsResponse* internal_default_instance() { + return reinterpret_cast( + &_decreaseMapClientsResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 3; - friend void swap(deleteMapResponse& a, deleteMapResponse& b) { a.Swap(&b); } - inline void Swap(deleteMapResponse* other) { + static constexpr int kIndexInFileMessages = 9; + friend void swap(decreaseMapClientsResponse& a, decreaseMapClientsResponse& b) { a.Swap(&b); } + inline void Swap(decreaseMapClientsResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -3907,7 +4657,7 @@ class deleteMapResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(deleteMapResponse* other) { + void UnsafeArenaSwap(decreaseMapClientsResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3915,13 +4665,13 @@ class deleteMapResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - deleteMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + decreaseMapClientsResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const deleteMapResponse& from); + void CopyFrom(const decreaseMapClientsResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const deleteMapResponse& from) { deleteMapResponse::MergeImpl(*this, from); } + void MergeFrom(const decreaseMapClientsResponse& from) { decreaseMapClientsResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3942,16 +4692,16 @@ class deleteMapResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(deleteMapResponse* other); + void InternalSwap(decreaseMapClientsResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.deleteMapResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.decreaseMapClientsResponse"; } protected: - explicit deleteMapResponse(::google::protobuf::Arena* arena); - deleteMapResponse(::google::protobuf::Arena* arena, const deleteMapResponse& from); - deleteMapResponse(::google::protobuf::Arena* arena, deleteMapResponse&& from) noexcept - : deleteMapResponse(arena) { + explicit decreaseMapClientsResponse(::google::protobuf::Arena* arena); + decreaseMapClientsResponse(::google::protobuf::Arena* arena, const decreaseMapClientsResponse& from); + decreaseMapClientsResponse(::google::protobuf::Arena* arena, decreaseMapClientsResponse&& from) noexcept + : decreaseMapClientsResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -3974,7 +4724,7 @@ class deleteMapResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.deleteMapResponse) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.decreaseMapClientsResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -3984,7 +4734,7 @@ class deleteMapResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_deleteMapResponse_default_instance_; + &_decreaseMapClientsResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3999,7 +4749,7 @@ class deleteMapResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const deleteMapResponse& from_msg); + const decreaseMapClientsResponse& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -4009,23 +4759,23 @@ class deleteMapResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class deleteMapRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.deleteMapRequest) */ { +class decreaseMapClientsRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.decreaseMapClientsRequest) */ { public: - inline deleteMapRequest() : deleteMapRequest(nullptr) {} - ~deleteMapRequest() override; + inline decreaseMapClientsRequest() : decreaseMapClientsRequest(nullptr) {} + ~decreaseMapClientsRequest() override; template - explicit PROTOBUF_CONSTEXPR deleteMapRequest( + explicit PROTOBUF_CONSTEXPR decreaseMapClientsRequest( ::google::protobuf::internal::ConstantInitialized); - inline deleteMapRequest(const deleteMapRequest& from) : deleteMapRequest(nullptr, from) {} - inline deleteMapRequest(deleteMapRequest&& from) noexcept - : deleteMapRequest(nullptr, std::move(from)) {} - inline deleteMapRequest& operator=(const deleteMapRequest& from) { + inline decreaseMapClientsRequest(const decreaseMapClientsRequest& from) : decreaseMapClientsRequest(nullptr, from) {} + inline decreaseMapClientsRequest(decreaseMapClientsRequest&& from) noexcept + : decreaseMapClientsRequest(nullptr, std::move(from)) {} + inline decreaseMapClientsRequest& operator=(const decreaseMapClientsRequest& from) { CopyFrom(from); return *this; } - inline deleteMapRequest& operator=(deleteMapRequest&& from) noexcept { + inline decreaseMapClientsRequest& operator=(decreaseMapClientsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4057,16 +4807,16 @@ class deleteMapRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const deleteMapRequest& default_instance() { + static const decreaseMapClientsRequest& default_instance() { return *internal_default_instance(); } - static inline const deleteMapRequest* internal_default_instance() { - return reinterpret_cast( - &_deleteMapRequest_default_instance_); + static inline const decreaseMapClientsRequest* internal_default_instance() { + return reinterpret_cast( + &_decreaseMapClientsRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 2; - friend void swap(deleteMapRequest& a, deleteMapRequest& b) { a.Swap(&b); } - inline void Swap(deleteMapRequest* other) { + static constexpr int kIndexInFileMessages = 8; + friend void swap(decreaseMapClientsRequest& a, decreaseMapClientsRequest& b) { a.Swap(&b); } + inline void Swap(decreaseMapClientsRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -4078,7 +4828,7 @@ class deleteMapRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(deleteMapRequest* other) { + void UnsafeArenaSwap(decreaseMapClientsRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4086,13 +4836,13 @@ class deleteMapRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - deleteMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + decreaseMapClientsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const deleteMapRequest& from); + void CopyFrom(const decreaseMapClientsRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const deleteMapRequest& from) { deleteMapRequest::MergeImpl(*this, from); } + void MergeFrom(const decreaseMapClientsRequest& from) { decreaseMapClientsRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4113,16 +4863,16 @@ class deleteMapRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(deleteMapRequest* other); + void InternalSwap(decreaseMapClientsRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.deleteMapRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.decreaseMapClientsRequest"; } protected: - explicit deleteMapRequest(::google::protobuf::Arena* arena); - deleteMapRequest(::google::protobuf::Arena* arena, const deleteMapRequest& from); - deleteMapRequest(::google::protobuf::Arena* arena, deleteMapRequest&& from) noexcept - : deleteMapRequest(arena) { + explicit decreaseMapClientsRequest(::google::protobuf::Arena* arena); + decreaseMapClientsRequest(::google::protobuf::Arena* arena, const decreaseMapClientsRequest& from); + decreaseMapClientsRequest(::google::protobuf::Arena* arena, decreaseMapClientsRequest&& from) noexcept + : decreaseMapClientsRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -4162,17 +4912,17 @@ class deleteMapRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.deleteMapRequest) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.decreaseMapClientsRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, - 49, 2> + 58, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_deleteMapRequest_default_instance_; + &_decreaseMapClientsRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4187,7 +4937,7 @@ class deleteMapRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const deleteMapRequest& from_msg); + const decreaseMapClientsRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -4198,23 +4948,23 @@ class deleteMapRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class decreaseMapClientsResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.decreaseMapClientsResponse) */ { +class createMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.createMapResponse) */ { public: - inline decreaseMapClientsResponse() : decreaseMapClientsResponse(nullptr) {} - ~decreaseMapClientsResponse() override; + inline createMapResponse() : createMapResponse(nullptr) {} + ~createMapResponse() override; template - explicit PROTOBUF_CONSTEXPR decreaseMapClientsResponse( + explicit PROTOBUF_CONSTEXPR createMapResponse( ::google::protobuf::internal::ConstantInitialized); - inline decreaseMapClientsResponse(const decreaseMapClientsResponse& from) : decreaseMapClientsResponse(nullptr, from) {} - inline decreaseMapClientsResponse(decreaseMapClientsResponse&& from) noexcept - : decreaseMapClientsResponse(nullptr, std::move(from)) {} - inline decreaseMapClientsResponse& operator=(const decreaseMapClientsResponse& from) { + inline createMapResponse(const createMapResponse& from) : createMapResponse(nullptr, from) {} + inline createMapResponse(createMapResponse&& from) noexcept + : createMapResponse(nullptr, std::move(from)) {} + inline createMapResponse& operator=(const createMapResponse& from) { CopyFrom(from); return *this; } - inline decreaseMapClientsResponse& operator=(decreaseMapClientsResponse&& from) noexcept { + inline createMapResponse& operator=(createMapResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4246,16 +4996,16 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const decreaseMapClientsResponse& default_instance() { + static const createMapResponse& default_instance() { return *internal_default_instance(); } - static inline const decreaseMapClientsResponse* internal_default_instance() { - return reinterpret_cast( - &_decreaseMapClientsResponse_default_instance_); + static inline const createMapResponse* internal_default_instance() { + return reinterpret_cast( + &_createMapResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 9; - friend void swap(decreaseMapClientsResponse& a, decreaseMapClientsResponse& b) { a.Swap(&b); } - inline void Swap(decreaseMapClientsResponse* other) { + static constexpr int kIndexInFileMessages = 1; + friend void swap(createMapResponse& a, createMapResponse& b) { a.Swap(&b); } + inline void Swap(createMapResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -4267,7 +5017,7 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(decreaseMapClientsResponse* other) { + void UnsafeArenaSwap(createMapResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4275,13 +5025,13 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - decreaseMapClientsResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + createMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const decreaseMapClientsResponse& from); + void CopyFrom(const createMapResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const decreaseMapClientsResponse& from) { decreaseMapClientsResponse::MergeImpl(*this, from); } + void MergeFrom(const createMapResponse& from) { createMapResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4302,16 +5052,16 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(decreaseMapClientsResponse* other); + void InternalSwap(createMapResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.decreaseMapClientsResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.createMapResponse"; } protected: - explicit decreaseMapClientsResponse(::google::protobuf::Arena* arena); - decreaseMapClientsResponse(::google::protobuf::Arena* arena, const decreaseMapClientsResponse& from); - decreaseMapClientsResponse(::google::protobuf::Arena* arena, decreaseMapClientsResponse&& from) noexcept - : decreaseMapClientsResponse(arena) { + explicit createMapResponse(::google::protobuf::Arena* arena); + createMapResponse(::google::protobuf::Arena* arena, const createMapResponse& from); + createMapResponse(::google::protobuf::Arena* arena, createMapResponse&& from) noexcept + : createMapResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -4334,7 +5084,7 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.decreaseMapClientsResponse) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.createMapResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -4344,7 +5094,7 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_decreaseMapClientsResponse_default_instance_; + &_createMapResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4359,7 +5109,7 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const decreaseMapClientsResponse& from_msg); + const createMapResponse& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -4369,23 +5119,23 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class decreaseMapClientsRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.decreaseMapClientsRequest) */ { +class createMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.createMapRequest) */ { public: - inline decreaseMapClientsRequest() : decreaseMapClientsRequest(nullptr) {} - ~decreaseMapClientsRequest() override; + inline createMapRequest() : createMapRequest(nullptr) {} + ~createMapRequest() override; template - explicit PROTOBUF_CONSTEXPR decreaseMapClientsRequest( + explicit PROTOBUF_CONSTEXPR createMapRequest( ::google::protobuf::internal::ConstantInitialized); - inline decreaseMapClientsRequest(const decreaseMapClientsRequest& from) : decreaseMapClientsRequest(nullptr, from) {} - inline decreaseMapClientsRequest(decreaseMapClientsRequest&& from) noexcept - : decreaseMapClientsRequest(nullptr, std::move(from)) {} - inline decreaseMapClientsRequest& operator=(const decreaseMapClientsRequest& from) { + inline createMapRequest(const createMapRequest& from) : createMapRequest(nullptr, from) {} + inline createMapRequest(createMapRequest&& from) noexcept + : createMapRequest(nullptr, std::move(from)) {} + inline createMapRequest& operator=(const createMapRequest& from) { CopyFrom(from); return *this; } - inline decreaseMapClientsRequest& operator=(decreaseMapClientsRequest&& from) noexcept { + inline createMapRequest& operator=(createMapRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4417,16 +5167,16 @@ class decreaseMapClientsRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const decreaseMapClientsRequest& default_instance() { + static const createMapRequest& default_instance() { return *internal_default_instance(); } - static inline const decreaseMapClientsRequest* internal_default_instance() { - return reinterpret_cast( - &_decreaseMapClientsRequest_default_instance_); + static inline const createMapRequest* internal_default_instance() { + return reinterpret_cast( + &_createMapRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 8; - friend void swap(decreaseMapClientsRequest& a, decreaseMapClientsRequest& b) { a.Swap(&b); } - inline void Swap(decreaseMapClientsRequest* other) { + static constexpr int kIndexInFileMessages = 0; + friend void swap(createMapRequest& a, createMapRequest& b) { a.Swap(&b); } + inline void Swap(createMapRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -4438,7 +5188,7 @@ class decreaseMapClientsRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(decreaseMapClientsRequest* other) { + void UnsafeArenaSwap(createMapRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4446,13 +5196,13 @@ class decreaseMapClientsRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - decreaseMapClientsRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + createMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const decreaseMapClientsRequest& from); + void CopyFrom(const createMapRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const decreaseMapClientsRequest& from) { decreaseMapClientsRequest::MergeImpl(*this, from); } + void MergeFrom(const createMapRequest& from) { createMapRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4473,16 +5223,16 @@ class decreaseMapClientsRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(decreaseMapClientsRequest* other); + void InternalSwap(createMapRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.decreaseMapClientsRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.createMapRequest"; } protected: - explicit decreaseMapClientsRequest(::google::protobuf::Arena* arena); - decreaseMapClientsRequest(::google::protobuf::Arena* arena, const decreaseMapClientsRequest& from); - decreaseMapClientsRequest(::google::protobuf::Arena* arena, decreaseMapClientsRequest&& from) noexcept - : decreaseMapClientsRequest(arena) { + explicit createMapRequest(::google::protobuf::Arena* arena); + createMapRequest(::google::protobuf::Arena* arena, const createMapRequest& from); + createMapRequest(::google::protobuf::Arena* arena, createMapRequest&& from) noexcept + : createMapRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -4522,17 +5272,17 @@ class decreaseMapClientsRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.decreaseMapClientsRequest) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.createMapRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, - 58, 2> + 49, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_decreaseMapClientsRequest_default_instance_; + &_createMapRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4547,7 +5297,7 @@ class decreaseMapClientsRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const decreaseMapClientsRequest& from_msg); + const createMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -4558,23 +5308,23 @@ class decreaseMapClientsRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class createMapResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.createMapResponse) */ { +class backupMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.backupMapResponse) */ { public: - inline createMapResponse() : createMapResponse(nullptr) {} - ~createMapResponse() override; + inline backupMapResponse() : backupMapResponse(nullptr) {} + ~backupMapResponse() override; template - explicit PROTOBUF_CONSTEXPR createMapResponse( + explicit PROTOBUF_CONSTEXPR backupMapResponse( ::google::protobuf::internal::ConstantInitialized); - inline createMapResponse(const createMapResponse& from) : createMapResponse(nullptr, from) {} - inline createMapResponse(createMapResponse&& from) noexcept - : createMapResponse(nullptr, std::move(from)) {} - inline createMapResponse& operator=(const createMapResponse& from) { + inline backupMapResponse(const backupMapResponse& from) : backupMapResponse(nullptr, from) {} + inline backupMapResponse(backupMapResponse&& from) noexcept + : backupMapResponse(nullptr, std::move(from)) {} + inline backupMapResponse& operator=(const backupMapResponse& from) { CopyFrom(from); return *this; } - inline createMapResponse& operator=(createMapResponse&& from) noexcept { + inline backupMapResponse& operator=(backupMapResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4606,16 +5356,16 @@ class createMapResponse final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const createMapResponse& default_instance() { + static const backupMapResponse& default_instance() { return *internal_default_instance(); } - static inline const createMapResponse* internal_default_instance() { - return reinterpret_cast( - &_createMapResponse_default_instance_); + static inline const backupMapResponse* internal_default_instance() { + return reinterpret_cast( + &_backupMapResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 1; - friend void swap(createMapResponse& a, createMapResponse& b) { a.Swap(&b); } - inline void Swap(createMapResponse* other) { + static constexpr int kIndexInFileMessages = 19; + friend void swap(backupMapResponse& a, backupMapResponse& b) { a.Swap(&b); } + inline void Swap(backupMapResponse* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -4627,7 +5377,7 @@ class createMapResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(createMapResponse* other) { + void UnsafeArenaSwap(backupMapResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4635,13 +5385,13 @@ class createMapResponse final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - createMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + backupMapResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const createMapResponse& from); + void CopyFrom(const backupMapResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const createMapResponse& from) { createMapResponse::MergeImpl(*this, from); } + void MergeFrom(const backupMapResponse& from) { backupMapResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4662,16 +5412,16 @@ class createMapResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(createMapResponse* other); + void InternalSwap(backupMapResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.createMapResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.backupMapResponse"; } protected: - explicit createMapResponse(::google::protobuf::Arena* arena); - createMapResponse(::google::protobuf::Arena* arena, const createMapResponse& from); - createMapResponse(::google::protobuf::Arena* arena, createMapResponse&& from) noexcept - : createMapResponse(arena) { + explicit backupMapResponse(::google::protobuf::Arena* arena); + backupMapResponse(::google::protobuf::Arena* arena, const backupMapResponse& from); + backupMapResponse(::google::protobuf::Arena* arena, backupMapResponse&& from) noexcept + : backupMapResponse(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -4682,9 +5432,26 @@ class createMapResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kXpcfGrpcReturnValueFieldNumber = 1, + kCompressedZipDataFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, }; - // sint32 xpcfGrpcReturnValue = 1; + // bytes compressedZipData = 1; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; + template + void set_compressedzipdata(Arg_&& arg, Args_... args); + std::string* mutable_compressedzipdata(); + PROTOBUF_NODISCARD std::string* release_compressedzipdata(); + void set_allocated_compressedzipdata(std::string* value); + + private: + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( + const std::string& value); + std::string* _internal_mutable_compressedzipdata(); + + public: + // sint32 xpcfGrpcReturnValue = 2; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -4694,17 +5461,17 @@ class createMapResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.createMapResponse) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.backupMapResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 0, 1, 0, + 1, 2, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_createMapResponse_default_instance_; + &_backupMapResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4719,7 +5486,8 @@ class createMapResponse final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const createMapResponse& from_msg); + const backupMapResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -4729,23 +5497,23 @@ class createMapResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class createMapRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.createMapRequest) */ { +class backupMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.backupMapRequest) */ { public: - inline createMapRequest() : createMapRequest(nullptr) {} - ~createMapRequest() override; + inline backupMapRequest() : backupMapRequest(nullptr) {} + ~backupMapRequest() override; template - explicit PROTOBUF_CONSTEXPR createMapRequest( + explicit PROTOBUF_CONSTEXPR backupMapRequest( ::google::protobuf::internal::ConstantInitialized); - inline createMapRequest(const createMapRequest& from) : createMapRequest(nullptr, from) {} - inline createMapRequest(createMapRequest&& from) noexcept - : createMapRequest(nullptr, std::move(from)) {} - inline createMapRequest& operator=(const createMapRequest& from) { + inline backupMapRequest(const backupMapRequest& from) : backupMapRequest(nullptr, from) {} + inline backupMapRequest(backupMapRequest&& from) noexcept + : backupMapRequest(nullptr, std::move(from)) {} + inline backupMapRequest& operator=(const backupMapRequest& from) { CopyFrom(from); return *this; } - inline createMapRequest& operator=(createMapRequest&& from) noexcept { + inline backupMapRequest& operator=(backupMapRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4777,16 +5545,16 @@ class createMapRequest final : public ::google::protobuf::Message static const ::google::protobuf::Reflection* GetReflection() { return default_instance().GetMetadata().reflection; } - static const createMapRequest& default_instance() { + static const backupMapRequest& default_instance() { return *internal_default_instance(); } - static inline const createMapRequest* internal_default_instance() { - return reinterpret_cast( - &_createMapRequest_default_instance_); + static inline const backupMapRequest* internal_default_instance() { + return reinterpret_cast( + &_backupMapRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 0; - friend void swap(createMapRequest& a, createMapRequest& b) { a.Swap(&b); } - inline void Swap(createMapRequest* other) { + static constexpr int kIndexInFileMessages = 18; + friend void swap(backupMapRequest& a, backupMapRequest& b) { a.Swap(&b); } + inline void Swap(backupMapRequest* other) { if (other == this) return; #ifdef PROTOBUF_FORCE_COPY_IN_SWAP if (GetArena() != nullptr && GetArena() == other->GetArena()) { @@ -4798,7 +5566,7 @@ class createMapRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(createMapRequest* other) { + void UnsafeArenaSwap(backupMapRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4806,13 +5574,13 @@ class createMapRequest final : public ::google::protobuf::Message // implements Message ---------------------------------------------- - createMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { - return ::google::protobuf::Message::DefaultConstruct(arena); + backupMapRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); } using ::google::protobuf::Message::CopyFrom; - void CopyFrom(const createMapRequest& from); + void CopyFrom(const backupMapRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const createMapRequest& from) { createMapRequest::MergeImpl(*this, from); } + void MergeFrom(const backupMapRequest& from) { backupMapRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4833,16 +5601,16 @@ class createMapRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(createMapRequest* other); + void InternalSwap(backupMapRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.createMapRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.backupMapRequest"; } protected: - explicit createMapRequest(::google::protobuf::Arena* arena); - createMapRequest(::google::protobuf::Arena* arena, const createMapRequest& from); - createMapRequest(::google::protobuf::Arena* arena, createMapRequest&& from) noexcept - : createMapRequest(arena) { + explicit backupMapRequest(::google::protobuf::Arena* arena); + backupMapRequest(::google::protobuf::Arena* arena, const backupMapRequest& from); + backupMapRequest(::google::protobuf::Arena* arena, backupMapRequest&& from) noexcept + : backupMapRequest(arena) { *this = ::std::move(from); } const ::google::protobuf::Message::ClassData* GetClassData() const final; @@ -4854,6 +5622,7 @@ class createMapRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kMapUUIDFieldNumber = 2, + kCompressedZipDataFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, }; // string mapUUID = 2; @@ -4871,6 +5640,22 @@ class createMapRequest final : public ::google::protobuf::Message const std::string& value); std::string* _internal_mutable_mapuuid(); + public: + // bytes compressedZipData = 3; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; + template + void set_compressedzipdata(Arg_&& arg, Args_... args); + std::string* mutable_compressedzipdata(); + PROTOBUF_NODISCARD std::string* release_compressedzipdata(); + void set_allocated_compressedzipdata(std::string* value); + + private: + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( + const std::string& value); + std::string* _internal_mutable_compressedzipdata(); + public: // int32 grpcServerCompressionFormat = 1; void clear_grpcservercompressionformat() ; @@ -4882,17 +5667,17 @@ class createMapRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.createMapRequest) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.backupMapRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 1, 2, 0, + 2, 3, 0, 49, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_createMapRequest_default_instance_; + &_backupMapRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4907,8 +5692,9 @@ class createMapRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena); inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, - const createMapRequest& from_msg); + const backupMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -6547,6 +7333,360 @@ inline void getMapInfoResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t valu // ------------------------------------------------------------------- +// backupMapRequest + +// int32 grpcServerCompressionFormat = 1; +inline void backupMapRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t backupMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void backupMapRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.grpcServerCompressionFormat) +} +inline ::int32_t backupMapRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void backupMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string mapUUID = 2; +inline void backupMapRequest::clear_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.ClearToEmpty(); +} +inline const std::string& backupMapRequest::mapuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.mapUUID) + return _internal_mapuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_mapuuid(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.mapUUID) +} +inline std::string* backupMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.mapUUID) + return _s; +} +inline const std::string& backupMapRequest::_internal_mapuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuid_.Get(); +} +inline void backupMapRequest::_internal_set_mapuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(value, GetArena()); +} +inline std::string* backupMapRequest::_internal_mutable_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuid_.Mutable( GetArena()); +} +inline std::string* backupMapRequest::release_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); +} +inline void backupMapRequest::set_allocated_mapuuid(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.mapUUID) +} + +// bytes compressedZipData = 3; +inline void backupMapRequest::clear_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.ClearToEmpty(); +} +inline const std::string& backupMapRequest::compressedzipdata() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.compressedZipData) + return _internal_compressedzipdata(); +} +template +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_compressedzipdata(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.compressedZipData) +} +inline std::string* backupMapRequest::mutable_compressedzipdata() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressedzipdata(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.compressedZipData) + return _s; +} +inline const std::string& backupMapRequest::_internal_compressedzipdata() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.compressedzipdata_.Get(); +} +inline void backupMapRequest::_internal_set_compressedzipdata(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.Set(value, GetArena()); +} +inline std::string* backupMapRequest::_internal_mutable_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.compressedzipdata_.Mutable( GetArena()); +} +inline std::string* backupMapRequest::release_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.compressedZipData) + return _impl_.compressedzipdata_.Release(); +} +inline void backupMapRequest::set_allocated_compressedzipdata(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.compressedZipData) +} + +// ------------------------------------------------------------------- + +// backupMapResponse + +// bytes compressedZipData = 1; +inline void backupMapResponse::clear_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.ClearToEmpty(); +} +inline const std::string& backupMapResponse::compressedzipdata() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.compressedZipData) + return _internal_compressedzipdata(); +} +template +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_compressedzipdata(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.compressedZipData) +} +inline std::string* backupMapResponse::mutable_compressedzipdata() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressedzipdata(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.compressedZipData) + return _s; +} +inline const std::string& backupMapResponse::_internal_compressedzipdata() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.compressedzipdata_.Get(); +} +inline void backupMapResponse::_internal_set_compressedzipdata(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.Set(value, GetArena()); +} +inline std::string* backupMapResponse::_internal_mutable_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.compressedzipdata_.Mutable( GetArena()); +} +inline std::string* backupMapResponse::release_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.compressedZipData) + return _impl_.compressedzipdata_.Release(); +} +inline void backupMapResponse::set_allocated_compressedzipdata(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.compressedZipData) +} + +// sint32 xpcfGrpcReturnValue = 2; +inline void backupMapResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t backupMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void backupMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.xpcfGrpcReturnValue) +} +inline ::int32_t backupMapResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void backupMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// restoreMapRequest + +// int32 grpcServerCompressionFormat = 1; +inline void restoreMapRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t restoreMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void restoreMapRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.grpcServerCompressionFormat) +} +inline ::int32_t restoreMapRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void restoreMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string mapUUID = 2; +inline void restoreMapRequest::clear_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.ClearToEmpty(); +} +inline const std::string& restoreMapRequest::mapuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.mapUUID) + return _internal_mapuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_mapuuid(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.mapUUID) +} +inline std::string* restoreMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.mapUUID) + return _s; +} +inline const std::string& restoreMapRequest::_internal_mapuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuid_.Get(); +} +inline void restoreMapRequest::_internal_set_mapuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(value, GetArena()); +} +inline std::string* restoreMapRequest::_internal_mutable_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuid_.Mutable( GetArena()); +} +inline std::string* restoreMapRequest::release_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); +} +inline void restoreMapRequest::set_allocated_mapuuid(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.mapUUID) +} + +// bytes compressedZipData = 3; +inline void restoreMapRequest::clear_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.ClearToEmpty(); +} +inline const std::string& restoreMapRequest::compressedzipdata() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.compressedZipData) + return _internal_compressedzipdata(); +} +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_compressedzipdata(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.compressedZipData) +} +inline std::string* restoreMapRequest::mutable_compressedzipdata() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressedzipdata(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.compressedZipData) + return _s; +} +inline const std::string& restoreMapRequest::_internal_compressedzipdata() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.compressedzipdata_.Get(); +} +inline void restoreMapRequest::_internal_set_compressedzipdata(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.Set(value, GetArena()); +} +inline std::string* restoreMapRequest::_internal_mutable_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.compressedzipdata_.Mutable( GetArena()); +} +inline std::string* restoreMapRequest::release_compressedzipdata() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.compressedZipData) + return _impl_.compressedzipdata_.Release(); +} +inline void restoreMapRequest::set_allocated_compressedzipdata(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.compressedZipData) +} + +// ------------------------------------------------------------------- + +// restoreMapResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void restoreMapResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t restoreMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void restoreMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapResponse.xpcfGrpcReturnValue) +} +inline ::int32_t restoreMapResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void restoreMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + // requestMapProcessingRequest // int32 grpcServerCompressionFormat = 1; diff --git a/gen/proto/grpcIFrontEndService.proto b/gen/proto/grpcIFrontEndService.proto index 5cc4784..f5b08c5 100644 --- a/gen/proto/grpcIFrontEndService.proto +++ b/gen/proto/grpcIFrontEndService.proto @@ -369,6 +369,33 @@ bool areImageSaved = 5; sint32 xpcfGrpcReturnValue = 6; } +message backupMapRequest +{ +int32 grpcServerCompressionFormat = 1; +string accessToken = 2; +string mapUUID = 3; +bytes compressedZipData = 4; +} + +message backupMapResponse +{ +bytes compressedZipData = 1; +sint32 xpcfGrpcReturnValue = 2; +} + +message restoreMapRequest +{ +int32 grpcServerCompressionFormat = 1; +string accessToken = 2; +string mapUUID = 3; +bytes compressedZipData = 4; +} + +message restoreMapResponse +{ +sint32 xpcfGrpcReturnValue = 1; +} + message requestMapProcessingRequest { int32 grpcServerCompressionFormat = 1; @@ -443,6 +470,8 @@ rpc getMapRequest(getMapRequestRequest) returns(getMapRequestResponse) {} rpc setMapRequest(setMapRequestRequest) returns(setMapRequestResponse) {} rpc getPointCloudRequest(getPointCloudRequestRequest) returns(getPointCloudRequestResponse) {} rpc getMapInfo(getMapInfoRequest) returns(getMapInfoResponse) {} +rpc backupMap(backupMapRequest) returns(backupMapResponse) {} +rpc restoreMap(restoreMapRequest) returns(restoreMapResponse) {} rpc requestMapProcessing(requestMapProcessingRequest) returns(requestMapProcessingResponse) {} rpc getMapProcessingStatus(getMapProcessingStatusRequest) returns(getMapProcessingStatusResponse) {} rpc getMapProcessingData(getMapProcessingDataRequest) returns(getMapProcessingDataResponse) {} diff --git a/gen/proto/grpcIMapsManagerService.proto b/gen/proto/grpcIMapsManagerService.proto index f1a4a68..e3a365b 100644 --- a/gen/proto/grpcIMapsManagerService.proto +++ b/gen/proto/grpcIMapsManagerService.proto @@ -122,6 +122,31 @@ bool areImageSaved = 5; sint32 xpcfGrpcReturnValue = 6; } +message backupMapRequest +{ +int32 grpcServerCompressionFormat = 1; +string mapUUID = 2; +bytes compressedZipData = 3; +} + +message backupMapResponse +{ +bytes compressedZipData = 1; +sint32 xpcfGrpcReturnValue = 2; +} + +message restoreMapRequest +{ +int32 grpcServerCompressionFormat = 1; +string mapUUID = 2; +bytes compressedZipData = 3; +} + +message restoreMapResponse +{ +sint32 xpcfGrpcReturnValue = 1; +} + message requestMapProcessingRequest { int32 grpcServerCompressionFormat = 1; @@ -177,6 +202,8 @@ rpc getMapRequest(getMapRequestRequest) returns(getMapRequestResponse) {} rpc setMapRequest(setMapRequestRequest) returns(setMapRequestResponse) {} rpc getPointCloudRequest(getPointCloudRequestRequest) returns(getPointCloudRequestResponse) {} rpc getMapInfo(getMapInfoRequest) returns(getMapInfoResponse) {} +rpc backupMap(backupMapRequest) returns(backupMapResponse) {} +rpc restoreMap(restoreMapRequest) returns(restoreMapResponse) {} rpc requestMapProcessing(requestMapProcessingRequest) returns(requestMapProcessingResponse) {} rpc getMapProcessingStatus(getMapProcessingStatusRequest) returns(getMapProcessingStatusResponse) {} rpc getMapProcessingData(getMapProcessingDataRequest) returns(getMapProcessingDataResponse) {} diff --git a/gen/src/IFrontEnd_grpcProxy.cpp b/gen/src/IFrontEnd_grpcProxy.cpp index 206e250..a091b7e 100644 --- a/gen/src/IFrontEnd_grpcProxy.cpp +++ b/gen/src/IFrontEnd_grpcProxy.cpp @@ -19,7 +19,7 @@ IFrontEnd_grpcProxy::IFrontEnd_grpcProxy():xpcf::ConfigurableBase(xpcf::toMap(this); declareProperty("channelUrl",m_channelUrl); declareProperty("channelCredentials",m_channelCredentials); - m_grpcProxyCompressionConfig.resize(29); + m_grpcProxyCompressionConfig.resize(31); declarePropertySequence("grpc_compress_proxy", m_grpcProxyCompressionConfig); } @@ -887,6 +887,71 @@ SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::getMapInfo(std::string const& a } +SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::backupMap(std::string const& accessToken, std::string const& mapUUID, std::vector& compressedZipData) const +{ + ::grpc::ClientContext context; + ::grpcIFrontEnd::backupMapRequest reqIn; + ::grpcIFrontEnd::backupMapResponse respOut; + #ifndef DISABLE_GRPC_COMPRESSION + xpcf::grpcCompressionInfos proxyCompressionInfo = xpcf::deduceClientCompressionInfo(m_serviceCompressionInfos, "backupMap", m_methodCompressionInfosMap); + xpcf::grpcCompressType serverCompressionType = xpcf::prepareClientCompressionContext(context, proxyCompressionInfo); + reqIn.set_grpcservercompressionformat (static_cast(serverCompressionType)); + #endif + reqIn.set_accesstoken(accessToken); + reqIn.set_mapuuid(mapUUID); + reqIn.set_compressedzipdata(xpcf::serialize>(compressedZipData)); + #ifdef ENABLE_PROXY_TIMERS + boost::posix_time::ptime start = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IFrontEnd_grpcProxy::backupMap request sent at " << to_simple_string(start) << std::endl; + #endif + ::grpc::Status grpcRemoteStatus = m_grpcStub->backupMap(&context, reqIn, &respOut); + #ifdef ENABLE_PROXY_TIMERS + boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IFrontEnd_grpcProxy::backupMap response received at " << to_simple_string(end) << std::endl; + std::cout << " => elapsed time = " << ((end - start).total_microseconds() / 1000.00) << " ms" << std::endl; + #endif + if (!grpcRemoteStatus.ok()) { + std::cout << "backupMap rpc failed." << std::endl; + throw xpcf::RemotingException("grpcIFrontEndService","backupMap",static_cast(grpcRemoteStatus.error_code())); + } + + compressedZipData = xpcf::deserialize>(respOut.compressedzipdata()); + return static_cast(respOut.xpcfgrpcreturnvalue()); +} + + +SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::restoreMap(std::string const& accessToken, std::string const& mapUUID, std::vector const& compressedZipData) +{ + ::grpc::ClientContext context; + ::grpcIFrontEnd::restoreMapRequest reqIn; + ::grpcIFrontEnd::restoreMapResponse respOut; + #ifndef DISABLE_GRPC_COMPRESSION + xpcf::grpcCompressionInfos proxyCompressionInfo = xpcf::deduceClientCompressionInfo(m_serviceCompressionInfos, "restoreMap", m_methodCompressionInfosMap); + xpcf::grpcCompressType serverCompressionType = xpcf::prepareClientCompressionContext(context, proxyCompressionInfo); + reqIn.set_grpcservercompressionformat (static_cast(serverCompressionType)); + #endif + reqIn.set_accesstoken(accessToken); + reqIn.set_mapuuid(mapUUID); + reqIn.set_compressedzipdata(xpcf::serialize>(compressedZipData)); + #ifdef ENABLE_PROXY_TIMERS + boost::posix_time::ptime start = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IFrontEnd_grpcProxy::restoreMap request sent at " << to_simple_string(start) << std::endl; + #endif + ::grpc::Status grpcRemoteStatus = m_grpcStub->restoreMap(&context, reqIn, &respOut); + #ifdef ENABLE_PROXY_TIMERS + boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IFrontEnd_grpcProxy::restoreMap response received at " << to_simple_string(end) << std::endl; + std::cout << " => elapsed time = " << ((end - start).total_microseconds() / 1000.00) << " ms" << std::endl; + #endif + if (!grpcRemoteStatus.ok()) { + std::cout << "restoreMap rpc failed." << std::endl; + throw xpcf::RemotingException("grpcIFrontEndService","restoreMap",static_cast(grpcRemoteStatus.error_code())); + } + + return static_cast(respOut.xpcfgrpcreturnvalue()); +} + + SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::requestMapProcessing(std::string const& accessToken, std::string const& mapUUID, std::string const& resultMapUUID, SolAR::api::service::MapProcessingType const processingType) { ::grpc::ClientContext context; diff --git a/gen/src/IFrontEnd_grpcServer.cpp b/gen/src/IFrontEnd_grpcServer.cpp index d03f65d..33e8fd7 100644 --- a/gen/src/IFrontEnd_grpcServer.cpp +++ b/gen/src/IFrontEnd_grpcServer.cpp @@ -14,7 +14,7 @@ IFrontEnd_grpcServer::IFrontEnd_grpcServer():xpcf::ConfigurableBase(xpcf::toMap< { declareInterface(this); declareInjectable(m_grpcService.m_xpcfComponent); - m_grpcServerCompressionConfig.resize(29); + m_grpcServerCompressionConfig.resize(31); declarePropertySequence("grpc_compress_server", m_grpcServerCompressionConfig); } @@ -705,6 +705,57 @@ ::grpc::Status IFrontEnd_grpcServer::grpcIFrontEndServiceImpl::getMapInfo(::grpc } +::grpc::Status IFrontEnd_grpcServer::grpcIFrontEndServiceImpl::backupMap(::grpc::ServerContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response) +{ + #ifndef DISABLE_GRPC_COMPRESSION + xpcf::grpcCompressType askedCompressionType = static_cast(request->grpcservercompressionformat()); + xpcf::grpcServerCompressionInfos serverCompressInfo = xpcf::deduceServerCompressionType(askedCompressionType, m_serviceCompressionInfos, "backupMap", m_methodCompressionInfosMap); + xpcf::prepareServerCompressionContext(context, serverCompressInfo); + #endif + #ifdef ENABLE_SERVER_TIMERS + boost::posix_time::ptime start = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IFrontEnd_grpcServer::backupMap request received at " << to_simple_string(start) << std::endl; + #endif + std::string accessToken = request->accesstoken(); + std::string mapUUID = request->mapuuid(); + std::vector compressedZipData = xpcf::deserialize>(request->compressedzipdata()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->backupMap(accessToken, mapUUID, compressedZipData); + response->set_compressedzipdata(xpcf::serialize>(compressedZipData)); + response->set_xpcfgrpcreturnvalue(static_cast(returnValue)); + #ifdef ENABLE_SERVER_TIMERS + boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IFrontEnd_grpcServer::backupMap response sent at " << to_simple_string(end) << std::endl; + std::cout << " => elapsed time = " << ((end - start).total_microseconds() / 1000.00) << " ms" << std::endl; + #endif + return ::grpc::Status::OK; +} + + +::grpc::Status IFrontEnd_grpcServer::grpcIFrontEndServiceImpl::restoreMap(::grpc::ServerContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response) +{ + #ifndef DISABLE_GRPC_COMPRESSION + xpcf::grpcCompressType askedCompressionType = static_cast(request->grpcservercompressionformat()); + xpcf::grpcServerCompressionInfos serverCompressInfo = xpcf::deduceServerCompressionType(askedCompressionType, m_serviceCompressionInfos, "restoreMap", m_methodCompressionInfosMap); + xpcf::prepareServerCompressionContext(context, serverCompressInfo); + #endif + #ifdef ENABLE_SERVER_TIMERS + boost::posix_time::ptime start = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IFrontEnd_grpcServer::restoreMap request received at " << to_simple_string(start) << std::endl; + #endif + std::string accessToken = request->accesstoken(); + std::string mapUUID = request->mapuuid(); + std::vector compressedZipData = xpcf::deserialize>(request->compressedzipdata()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->restoreMap(accessToken, mapUUID, compressedZipData); + response->set_xpcfgrpcreturnvalue(static_cast(returnValue)); + #ifdef ENABLE_SERVER_TIMERS + boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IFrontEnd_grpcServer::restoreMap response sent at " << to_simple_string(end) << std::endl; + std::cout << " => elapsed time = " << ((end - start).total_microseconds() / 1000.00) << " ms" << std::endl; + #endif + return ::grpc::Status::OK; +} + + ::grpc::Status IFrontEnd_grpcServer::grpcIFrontEndServiceImpl::requestMapProcessing(::grpc::ServerContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest* request, ::grpcIFrontEnd::requestMapProcessingResponse* response) { #ifndef DISABLE_GRPC_COMPRESSION diff --git a/gen/src/IMapsManager_grpcProxy.cpp b/gen/src/IMapsManager_grpcProxy.cpp index e0bea6f..2ec240e 100644 --- a/gen/src/IMapsManager_grpcProxy.cpp +++ b/gen/src/IMapsManager_grpcProxy.cpp @@ -19,7 +19,7 @@ IMapsManager_grpcProxy::IMapsManager_grpcProxy():xpcf::ConfigurableBase(xpcf::to declareInterface(this); declareProperty("channelUrl",m_channelUrl); declareProperty("channelCredentials",m_channelCredentials); - m_grpcProxyCompressionConfig.resize(13); + m_grpcProxyCompressionConfig.resize(15); declarePropertySequence("grpc_compress_proxy", m_grpcProxyCompressionConfig); } @@ -336,6 +336,69 @@ SolAR::FrameworkReturnCode IMapsManager_grpcProxy::getMapInfo(std::string const } +SolAR::FrameworkReturnCode IMapsManager_grpcProxy::backupMap(std::string const& mapUUID, std::vector& compressedZipData) const +{ + ::grpc::ClientContext context; + ::grpcIMapsManager::backupMapRequest reqIn; + ::grpcIMapsManager::backupMapResponse respOut; + #ifndef DISABLE_GRPC_COMPRESSION + xpcf::grpcCompressionInfos proxyCompressionInfo = xpcf::deduceClientCompressionInfo(m_serviceCompressionInfos, "backupMap", m_methodCompressionInfosMap); + xpcf::grpcCompressType serverCompressionType = xpcf::prepareClientCompressionContext(context, proxyCompressionInfo); + reqIn.set_grpcservercompressionformat (static_cast(serverCompressionType)); + #endif + reqIn.set_mapuuid(mapUUID); + reqIn.set_compressedzipdata(xpcf::serialize>(compressedZipData)); + #ifdef ENABLE_PROXY_TIMERS + boost::posix_time::ptime start = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IMapsManager_grpcProxy::backupMap request sent at " << to_simple_string(start) << std::endl; + #endif + ::grpc::Status grpcRemoteStatus = m_grpcStub->backupMap(&context, reqIn, &respOut); + #ifdef ENABLE_PROXY_TIMERS + boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IMapsManager_grpcProxy::backupMap response received at " << to_simple_string(end) << std::endl; + std::cout << " => elapsed time = " << ((end - start).total_microseconds() / 1000.00) << " ms" << std::endl; + #endif + if (!grpcRemoteStatus.ok()) { + std::cout << "backupMap rpc failed." << std::endl; + throw xpcf::RemotingException("grpcIMapsManagerService","backupMap",static_cast(grpcRemoteStatus.error_code())); + } + + compressedZipData = xpcf::deserialize>(respOut.compressedzipdata()); + return static_cast(respOut.xpcfgrpcreturnvalue()); +} + + +SolAR::FrameworkReturnCode IMapsManager_grpcProxy::restoreMap(std::string const& mapUUID, std::vector const& compressedZipData) +{ + ::grpc::ClientContext context; + ::grpcIMapsManager::restoreMapRequest reqIn; + ::grpcIMapsManager::restoreMapResponse respOut; + #ifndef DISABLE_GRPC_COMPRESSION + xpcf::grpcCompressionInfos proxyCompressionInfo = xpcf::deduceClientCompressionInfo(m_serviceCompressionInfos, "restoreMap", m_methodCompressionInfosMap); + xpcf::grpcCompressType serverCompressionType = xpcf::prepareClientCompressionContext(context, proxyCompressionInfo); + reqIn.set_grpcservercompressionformat (static_cast(serverCompressionType)); + #endif + reqIn.set_mapuuid(mapUUID); + reqIn.set_compressedzipdata(xpcf::serialize>(compressedZipData)); + #ifdef ENABLE_PROXY_TIMERS + boost::posix_time::ptime start = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IMapsManager_grpcProxy::restoreMap request sent at " << to_simple_string(start) << std::endl; + #endif + ::grpc::Status grpcRemoteStatus = m_grpcStub->restoreMap(&context, reqIn, &respOut); + #ifdef ENABLE_PROXY_TIMERS + boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IMapsManager_grpcProxy::restoreMap response received at " << to_simple_string(end) << std::endl; + std::cout << " => elapsed time = " << ((end - start).total_microseconds() / 1000.00) << " ms" << std::endl; + #endif + if (!grpcRemoteStatus.ok()) { + std::cout << "restoreMap rpc failed." << std::endl; + throw xpcf::RemotingException("grpcIMapsManagerService","restoreMap",static_cast(grpcRemoteStatus.error_code())); + } + + return static_cast(respOut.xpcfgrpcreturnvalue()); +} + + SolAR::FrameworkReturnCode IMapsManager_grpcProxy::requestMapProcessing(std::string const& mapUUID, std::string const& resultMapUUID, SolAR::api::service::MapProcessingType const processingType) { ::grpc::ClientContext context; diff --git a/gen/src/IMapsManager_grpcServer.cpp b/gen/src/IMapsManager_grpcServer.cpp index f2b03c6..9c70f99 100644 --- a/gen/src/IMapsManager_grpcServer.cpp +++ b/gen/src/IMapsManager_grpcServer.cpp @@ -14,7 +14,7 @@ IMapsManager_grpcServer::IMapsManager_grpcServer():xpcf::ConfigurableBase(xpcf:: { declareInterface(this); declareInjectable(m_grpcService.m_xpcfComponent); - m_grpcServerCompressionConfig.resize(13); + m_grpcServerCompressionConfig.resize(15); declarePropertySequence("grpc_compress_server", m_grpcServerCompressionConfig); } @@ -266,6 +266,55 @@ ::grpc::Status IMapsManager_grpcServer::grpcIMapsManagerServiceImpl::getMapInfo( } +::grpc::Status IMapsManager_grpcServer::grpcIMapsManagerServiceImpl::backupMap(::grpc::ServerContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response) +{ + #ifndef DISABLE_GRPC_COMPRESSION + xpcf::grpcCompressType askedCompressionType = static_cast(request->grpcservercompressionformat()); + xpcf::grpcServerCompressionInfos serverCompressInfo = xpcf::deduceServerCompressionType(askedCompressionType, m_serviceCompressionInfos, "backupMap", m_methodCompressionInfosMap); + xpcf::prepareServerCompressionContext(context, serverCompressInfo); + #endif + #ifdef ENABLE_SERVER_TIMERS + boost::posix_time::ptime start = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IMapsManager_grpcServer::backupMap request received at " << to_simple_string(start) << std::endl; + #endif + std::string mapUUID = request->mapuuid(); + std::vector compressedZipData = xpcf::deserialize>(request->compressedzipdata()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->backupMap(mapUUID, compressedZipData); + response->set_compressedzipdata(xpcf::serialize>(compressedZipData)); + response->set_xpcfgrpcreturnvalue(static_cast(returnValue)); + #ifdef ENABLE_SERVER_TIMERS + boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IMapsManager_grpcServer::backupMap response sent at " << to_simple_string(end) << std::endl; + std::cout << " => elapsed time = " << ((end - start).total_microseconds() / 1000.00) << " ms" << std::endl; + #endif + return ::grpc::Status::OK; +} + + +::grpc::Status IMapsManager_grpcServer::grpcIMapsManagerServiceImpl::restoreMap(::grpc::ServerContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response) +{ + #ifndef DISABLE_GRPC_COMPRESSION + xpcf::grpcCompressType askedCompressionType = static_cast(request->grpcservercompressionformat()); + xpcf::grpcServerCompressionInfos serverCompressInfo = xpcf::deduceServerCompressionType(askedCompressionType, m_serviceCompressionInfos, "restoreMap", m_methodCompressionInfosMap); + xpcf::prepareServerCompressionContext(context, serverCompressInfo); + #endif + #ifdef ENABLE_SERVER_TIMERS + boost::posix_time::ptime start = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IMapsManager_grpcServer::restoreMap request received at " << to_simple_string(start) << std::endl; + #endif + std::string mapUUID = request->mapuuid(); + std::vector compressedZipData = xpcf::deserialize>(request->compressedzipdata()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->restoreMap(mapUUID, compressedZipData); + response->set_xpcfgrpcreturnvalue(static_cast(returnValue)); + #ifdef ENABLE_SERVER_TIMERS + boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); + std::cout << "====> IMapsManager_grpcServer::restoreMap response sent at " << to_simple_string(end) << std::endl; + std::cout << " => elapsed time = " << ((end - start).total_microseconds() / 1000.00) << " ms" << std::endl; + #endif + return ::grpc::Status::OK; +} + + ::grpc::Status IMapsManager_grpcServer::grpcIMapsManagerServiceImpl::requestMapProcessing(::grpc::ServerContext* context, const ::grpcIMapsManager::requestMapProcessingRequest* request, ::grpcIMapsManager::requestMapProcessingResponse* response) { #ifndef DISABLE_GRPC_COMPRESSION diff --git a/gen/src/grpcIFrontEndService.grpc.pb.cc b/gen/src/grpcIFrontEndService.grpc.pb.cc index 128cd3e..8c4095e 100644 --- a/gen/src/grpcIFrontEndService.grpc.pb.cc +++ b/gen/src/grpcIFrontEndService.grpc.pb.cc @@ -47,6 +47,8 @@ static const char* grpcIFrontEndService_method_names[] = { "/grpcIFrontEnd.grpcIFrontEndService/setMapRequest", "/grpcIFrontEnd.grpcIFrontEndService/getPointCloudRequest", "/grpcIFrontEnd.grpcIFrontEndService/getMapInfo", + "/grpcIFrontEnd.grpcIFrontEndService/backupMap", + "/grpcIFrontEnd.grpcIFrontEndService/restoreMap", "/grpcIFrontEnd.grpcIFrontEndService/requestMapProcessing", "/grpcIFrontEnd.grpcIFrontEndService/getMapProcessingStatus", "/grpcIFrontEnd.grpcIFrontEndService/getMapProcessingData", @@ -84,9 +86,11 @@ grpcIFrontEndService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterface , rpcmethod_setMapRequest_(grpcIFrontEndService_method_names[22], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) , rpcmethod_getPointCloudRequest_(grpcIFrontEndService_method_names[23], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) , rpcmethod_getMapInfo_(grpcIFrontEndService_method_names[24], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_requestMapProcessing_(grpcIFrontEndService_method_names[25], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_getMapProcessingStatus_(grpcIFrontEndService_method_names[26], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_getMapProcessingData_(grpcIFrontEndService_method_names[27], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_backupMap_(grpcIFrontEndService_method_names[25], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_restoreMap_(grpcIFrontEndService_method_names[26], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_requestMapProcessing_(grpcIFrontEndService_method_names[27], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_getMapProcessingStatus_(grpcIFrontEndService_method_names[28], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_getMapProcessingData_(grpcIFrontEndService_method_names[29], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) {} ::grpc::Status grpcIFrontEndService::Stub::registerClient(::grpc::ClientContext* context, const ::grpcIFrontEnd::registerClientRequest& request, ::grpcIFrontEnd::registerClientResponse* response) { @@ -664,6 +668,52 @@ ::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::getMapInfoResponse>* grpcIFr return result; } +::grpc::Status grpcIFrontEndService::Stub::backupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpcIFrontEnd::backupMapResponse* response) { + return ::grpc::internal::BlockingUnaryCall< ::grpcIFrontEnd::backupMapRequest, ::grpcIFrontEnd::backupMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_backupMap_, context, request, response); +} + +void grpcIFrontEndService::Stub::async::backupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response, std::function f) { + ::grpc::internal::CallbackUnaryCall< ::grpcIFrontEnd::backupMapRequest, ::grpcIFrontEnd::backupMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_backupMap_, context, request, response, std::move(f)); +} + +void grpcIFrontEndService::Stub::async::backupMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response, ::grpc::ClientUnaryReactor* reactor) { + ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_backupMap_, context, request, response, reactor); +} + +::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::backupMapResponse>* grpcIFrontEndService::Stub::PrepareAsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::grpcIFrontEnd::backupMapResponse, ::grpcIFrontEnd::backupMapRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_backupMap_, context, request); +} + +::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::backupMapResponse>* grpcIFrontEndService::Stub::AsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + auto* result = + this->PrepareAsyncbackupMapRaw(context, request, cq); + result->StartCall(); + return result; +} + +::grpc::Status grpcIFrontEndService::Stub::restoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpcIFrontEnd::restoreMapResponse* response) { + return ::grpc::internal::BlockingUnaryCall< ::grpcIFrontEnd::restoreMapRequest, ::grpcIFrontEnd::restoreMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_restoreMap_, context, request, response); +} + +void grpcIFrontEndService::Stub::async::restoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response, std::function f) { + ::grpc::internal::CallbackUnaryCall< ::grpcIFrontEnd::restoreMapRequest, ::grpcIFrontEnd::restoreMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_restoreMap_, context, request, response, std::move(f)); +} + +void grpcIFrontEndService::Stub::async::restoreMap(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response, ::grpc::ClientUnaryReactor* reactor) { + ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_restoreMap_, context, request, response, reactor); +} + +::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::restoreMapResponse>* grpcIFrontEndService::Stub::PrepareAsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::grpcIFrontEnd::restoreMapResponse, ::grpcIFrontEnd::restoreMapRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_restoreMap_, context, request); +} + +::grpc::ClientAsyncResponseReader< ::grpcIFrontEnd::restoreMapResponse>* grpcIFrontEndService::Stub::AsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIFrontEnd::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + auto* result = + this->PrepareAsyncrestoreMapRaw(context, request, cq); + result->StartCall(); + return result; +} + ::grpc::Status grpcIFrontEndService::Stub::requestMapProcessing(::grpc::ClientContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest& request, ::grpcIFrontEnd::requestMapProcessingResponse* response) { return ::grpc::internal::BlockingUnaryCall< ::grpcIFrontEnd::requestMapProcessingRequest, ::grpcIFrontEnd::requestMapProcessingResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_requestMapProcessing_, context, request, response); } @@ -987,6 +1037,26 @@ grpcIFrontEndService::Service::Service() { AddMethod(new ::grpc::internal::RpcServiceMethod( grpcIFrontEndService_method_names[25], ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< grpcIFrontEndService::Service, ::grpcIFrontEnd::backupMapRequest, ::grpcIFrontEnd::backupMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( + [](grpcIFrontEndService::Service* service, + ::grpc::ServerContext* ctx, + const ::grpcIFrontEnd::backupMapRequest* req, + ::grpcIFrontEnd::backupMapResponse* resp) { + return service->backupMap(ctx, req, resp); + }, this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + grpcIFrontEndService_method_names[26], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< grpcIFrontEndService::Service, ::grpcIFrontEnd::restoreMapRequest, ::grpcIFrontEnd::restoreMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( + [](grpcIFrontEndService::Service* service, + ::grpc::ServerContext* ctx, + const ::grpcIFrontEnd::restoreMapRequest* req, + ::grpcIFrontEnd::restoreMapResponse* resp) { + return service->restoreMap(ctx, req, resp); + }, this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + grpcIFrontEndService_method_names[27], + ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< grpcIFrontEndService::Service, ::grpcIFrontEnd::requestMapProcessingRequest, ::grpcIFrontEnd::requestMapProcessingResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( [](grpcIFrontEndService::Service* service, ::grpc::ServerContext* ctx, @@ -995,7 +1065,7 @@ grpcIFrontEndService::Service::Service() { return service->requestMapProcessing(ctx, req, resp); }, this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - grpcIFrontEndService_method_names[26], + grpcIFrontEndService_method_names[28], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< grpcIFrontEndService::Service, ::grpcIFrontEnd::getMapProcessingStatusRequest, ::grpcIFrontEnd::getMapProcessingStatusResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( [](grpcIFrontEndService::Service* service, @@ -1005,7 +1075,7 @@ grpcIFrontEndService::Service::Service() { return service->getMapProcessingStatus(ctx, req, resp); }, this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - grpcIFrontEndService_method_names[27], + grpcIFrontEndService_method_names[29], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< grpcIFrontEndService::Service, ::grpcIFrontEnd::getMapProcessingDataRequest, ::grpcIFrontEnd::getMapProcessingDataResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( [](grpcIFrontEndService::Service* service, @@ -1194,6 +1264,20 @@ ::grpc::Status grpcIFrontEndService::Service::getMapInfo(::grpc::ServerContext* return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } +::grpc::Status grpcIFrontEndService::Service::backupMap(::grpc::ServerContext* context, const ::grpcIFrontEnd::backupMapRequest* request, ::grpcIFrontEnd::backupMapResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status grpcIFrontEndService::Service::restoreMap(::grpc::ServerContext* context, const ::grpcIFrontEnd::restoreMapRequest* request, ::grpcIFrontEnd::restoreMapResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + ::grpc::Status grpcIFrontEndService::Service::requestMapProcessing(::grpc::ServerContext* context, const ::grpcIFrontEnd::requestMapProcessingRequest* request, ::grpcIFrontEnd::requestMapProcessingResponse* response) { (void) context; (void) request; diff --git a/gen/src/grpcIFrontEndService.pb.cc b/gen/src/grpcIFrontEndService.pb.cc index 3136ae6..17bcce7 100644 --- a/gen/src/grpcIFrontEndService.pb.cc +++ b/gen/src/grpcIFrontEndService.pb.cc @@ -351,6 +351,53 @@ struct setCameraParameters_grpc0RequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 setCameraParameters_grpc0RequestDefaultTypeInternal _setCameraParameters_grpc0Request_default_instance_; +inline constexpr restoreMapResponse::Impl_::Impl_( + ::_pbi::ConstantInitialized) noexcept + : xpcfgrpcreturnvalue_{0}, + _cached_size_{0} {} + +template +PROTOBUF_CONSTEXPR restoreMapResponse::restoreMapResponse(::_pbi::ConstantInitialized) + : _impl_(::_pbi::ConstantInitialized()) {} +struct restoreMapResponseDefaultTypeInternal { + PROTOBUF_CONSTEXPR restoreMapResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} + ~restoreMapResponseDefaultTypeInternal() {} + union { + restoreMapResponse _instance; + }; +}; + +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT + PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 restoreMapResponseDefaultTypeInternal _restoreMapResponse_default_instance_; + +inline constexpr restoreMapRequest::Impl_::Impl_( + ::_pbi::ConstantInitialized) noexcept + : accesstoken_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + mapuuid_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + compressedzipdata_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + grpcservercompressionformat_{0}, + _cached_size_{0} {} + +template +PROTOBUF_CONSTEXPR restoreMapRequest::restoreMapRequest(::_pbi::ConstantInitialized) + : _impl_(::_pbi::ConstantInitialized()) {} +struct restoreMapRequestDefaultTypeInternal { + PROTOBUF_CONSTEXPR restoreMapRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} + ~restoreMapRequestDefaultTypeInternal() {} + union { + restoreMapRequest _instance; + }; +}; + +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT + PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 restoreMapRequestDefaultTypeInternal _restoreMapRequest_default_instance_; + inline constexpr requestMapProcessingResponse::Impl_::Impl_( ::_pbi::ConstantInitialized) noexcept : xpcfgrpcreturnvalue_{0}, @@ -1433,6 +1480,56 @@ struct createMapRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 createMapRequestDefaultTypeInternal _createMapRequest_default_instance_; + +inline constexpr backupMapResponse::Impl_::Impl_( + ::_pbi::ConstantInitialized) noexcept + : compressedzipdata_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + xpcfgrpcreturnvalue_{0}, + _cached_size_{0} {} + +template +PROTOBUF_CONSTEXPR backupMapResponse::backupMapResponse(::_pbi::ConstantInitialized) + : _impl_(::_pbi::ConstantInitialized()) {} +struct backupMapResponseDefaultTypeInternal { + PROTOBUF_CONSTEXPR backupMapResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} + ~backupMapResponseDefaultTypeInternal() {} + union { + backupMapResponse _instance; + }; +}; + +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT + PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 backupMapResponseDefaultTypeInternal _backupMapResponse_default_instance_; + +inline constexpr backupMapRequest::Impl_::Impl_( + ::_pbi::ConstantInitialized) noexcept + : accesstoken_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + mapuuid_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + compressedzipdata_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + grpcservercompressionformat_{0}, + _cached_size_{0} {} + +template +PROTOBUF_CONSTEXPR backupMapRequest::backupMapRequest(::_pbi::ConstantInitialized) + : _impl_(::_pbi::ConstantInitialized()) {} +struct backupMapRequestDefaultTypeInternal { + PROTOBUF_CONSTEXPR backupMapRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} + ~backupMapRequestDefaultTypeInternal() {} + union { + backupMapRequest _instance; + }; +}; + +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT + PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 backupMapRequestDefaultTypeInternal _backupMapRequest_default_instance_; } // namespace grpcIFrontEnd static constexpr const ::_pb::EnumDescriptor** file_level_enum_descriptors_grpcIFrontEndService_2eproto = nullptr; @@ -2007,6 +2104,49 @@ const ::uint32_t PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::getMapInfoResponse, _impl_.areimagesaved_), PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::getMapInfoResponse, _impl_.xpcfgrpcreturnvalue_), ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.grpcservercompressionformat_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.accesstoken_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.mapuuid_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.compressedzipdata_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.compressedzipdata_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.xpcfgrpcreturnvalue_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.grpcservercompressionformat_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.accesstoken_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.mapuuid_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.compressedzipdata_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapResponse, _impl_.xpcfgrpcreturnvalue_), + ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::requestMapProcessingRequest, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ @@ -2132,12 +2272,16 @@ static const ::_pbi::MigrationSchema {525, -1, -1, sizeof(::grpcIFrontEnd::getPointCloudRequestResponse)}, {535, -1, -1, sizeof(::grpcIFrontEnd::getMapInfoRequest)}, {551, -1, -1, sizeof(::grpcIFrontEnd::getMapInfoResponse)}, - {565, -1, -1, sizeof(::grpcIFrontEnd::requestMapProcessingRequest)}, - {578, -1, -1, sizeof(::grpcIFrontEnd::requestMapProcessingResponse)}, - {587, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingStatusRequest)}, - {601, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingStatusResponse)}, - {613, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingDataRequest)}, - {626, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingDataResponse)}, + {565, -1, -1, sizeof(::grpcIFrontEnd::backupMapRequest)}, + {577, -1, -1, sizeof(::grpcIFrontEnd::backupMapResponse)}, + {587, -1, -1, sizeof(::grpcIFrontEnd::restoreMapRequest)}, + {599, -1, -1, sizeof(::grpcIFrontEnd::restoreMapResponse)}, + {608, -1, -1, sizeof(::grpcIFrontEnd::requestMapProcessingRequest)}, + {621, -1, -1, sizeof(::grpcIFrontEnd::requestMapProcessingResponse)}, + {630, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingStatusRequest)}, + {644, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingStatusResponse)}, + {656, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingDataRequest)}, + {669, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingDataResponse)}, }; static const ::_pb::Message* const file_default_instances[] = { &::grpcIFrontEnd::_registerClientRequest_default_instance_._instance, @@ -2190,6 +2334,10 @@ static const ::_pb::Message* const file_default_instances[] = { &::grpcIFrontEnd::_getPointCloudRequestResponse_default_instance_._instance, &::grpcIFrontEnd::_getMapInfoRequest_default_instance_._instance, &::grpcIFrontEnd::_getMapInfoResponse_default_instance_._instance, + &::grpcIFrontEnd::_backupMapRequest_default_instance_._instance, + &::grpcIFrontEnd::_backupMapResponse_default_instance_._instance, + &::grpcIFrontEnd::_restoreMapRequest_default_instance_._instance, + &::grpcIFrontEnd::_restoreMapResponse_default_instance_._instance, &::grpcIFrontEnd::_requestMapProcessingRequest_default_instance_._instance, &::grpcIFrontEnd::_requestMapProcessingResponse_default_instance_._instance, &::grpcIFrontEnd::_getMapProcessingStatusRequest_default_instance_._instance, @@ -2336,99 +2484,112 @@ const char descriptor_table_protodef_grpcIFrontEndService_2eproto[] ABSL_ATTRIBU "\n\007version\030\001 \001(\t\022\034\n\024globalDescriptorType\030" "\002 \001(\021\022\026\n\016descriptorType\030\003 \001(\021\022\020\n\010dataSiz" "e\030\004 \001(\r\022\025\n\rareImageSaved\030\005 \001(\010\022\033\n\023xpcfGr" - "pcReturnValue\030\006 \001(\021\"\227\001\n\033requestMapProces" - "singRequest\022#\n\033grpcServerCompressionForm" - "at\030\001 \001(\005\022\023\n\013accessToken\030\002 \001(\t\022\017\n\007mapUUID" - "\030\003 \001(\t\022\025\n\rresultMapUUID\030\004 \001(\t\022\026\n\016process" - "ingType\030\005 \001(\021\";\n\034requestMapProcessingRes" - "ponse\022\033\n\023xpcfGrpcReturnValue\030\001 \001(\021\"\252\001\n\035g" - "etMapProcessingStatusRequest\022#\n\033grpcServ" - "erCompressionFormat\030\001 \001(\005\022\023\n\013accessToken" - "\030\002 \001(\t\022\025\n\rresultMapUUID\030\003 \001(\t\022\016\n\006status\030" - "\004 \001(\021\022\026\n\016processingType\030\005 \001(\021\022\020\n\010progres" - "s\030\006 \001(\002\"w\n\036getMapProcessingStatusRespons" - "e\022\016\n\006status\030\001 \001(\021\022\026\n\016processingType\030\002 \001(" - "\021\022\020\n\010progress\030\003 \001(\002\022\033\n\023xpcfGrpcReturnVal" - "ue\030\004 \001(\021\"\231\001\n\033getMapProcessingDataRequest" - "\022#\n\033grpcServerCompressionFormat\030\001 \001(\005\022\023\n" - "\013accessToken\030\002 \001(\t\022\025\n\rresultMapUUID\030\003 \001(" - "\t\022\022\n\npointCloud\030\004 \001(\014\022\025\n\rkeyframePoses\030\005" - " \001(\014\"f\n\034getMapProcessingDataResponse\022\022\n\n" - "pointCloud\030\001 \001(\014\022\025\n\rkeyframePoses\030\002 \001(\014\022" - "\033\n\023xpcfGrpcReturnValue\030\003 \001(\0212\302\026\n\024grpcIFr" - "ontEndService\022_\n\016registerClient\022$.grpcIF" - "rontEnd.registerClientRequest\032%.grpcIFro" - "ntEnd.registerClientResponse\"\000\022e\n\020unregi" - "sterClient\022&.grpcIFrontEnd.unregisterCli" - "entRequest\032\'.grpcIFrontEnd.unregisterCli" - "entResponse\"\000\022h\n\021getAllClientsUUID\022\'.grp" - "cIFrontEnd.getAllClientsUUIDRequest\032(.gr" - "pcIFrontEnd.getAllClientsUUIDResponse\"\000\022" - "\\\n\rgetDeviceInfo\022#.grpcIFrontEnd.getDevi" - "ceInfoRequest\032$.grpcIFrontEnd.getDeviceI" - "nfoResponse\"\000\022S\n\ninit_grpc0\022 .grpcIFront" - "End.init_grpc0Request\032!.grpcIFrontEnd.in" - "it_grpc0Response\"\000\022S\n\ninit_grpc1\022 .grpcI" - "FrontEnd.init_grpc1Request\032!.grpcIFrontE" - "nd.init_grpc1Response\"\000\022D\n\005start\022\033.grpcI" - "FrontEnd.startRequest\032\034.grpcIFrontEnd.st" - "artResponse\"\000\022A\n\004stop\022\032.grpcIFrontEnd.st" - "opRequest\032\033.grpcIFrontEnd.stopResponse\"\000" - "\022h\n\021getProcessingMode\022\'.grpcIFrontEnd.ge" - "tProcessingModeRequest\032(.grpcIFrontEnd.g" - "etProcessingModeResponse\"\000\022\200\001\n\031setCamera" - "Parameters_grpc0\022/.grpcIFrontEnd.setCame" - "raParameters_grpc0Request\0320.grpcIFrontEn" - "d.setCameraParameters_grpc0Response\"\000\022\200\001" - "\n\031setCameraParameters_grpc1\022/.grpcIFront" - "End.setCameraParameters_grpc1Request\0320.g" - "rpcIFrontEnd.setCameraParameters_grpc1Re" - "sponse\"\000\022\203\001\n\032setRectificationParameters\022" - "0.grpcIFrontEnd.setRectificationParamete" - "rsRequest\0321.grpcIFrontEnd.setRectificati" - "onParametersResponse\"\000\022n\n\023getCameraParam" - "eters\022).grpcIFrontEnd.getCameraParameter" - "sRequest\032*.grpcIFrontEnd.getCameraParame" - "tersResponse\"\000\022n\n\023imageProcessRequest\022)." - "grpcIFrontEnd.imageProcessRequestRequest" - "\032*.grpcIFrontEnd.imageProcessRequestResp" - "onse\"\000\022t\n\025getMappingDataRequest\022+.grpcIF" - "rontEnd.getMappingDataRequestRequest\032,.g" - "rpcIFrontEnd.getMappingDataRequestRespon" - "se\"\000\022\\\n\rgetClientPose\022#.grpcIFrontEnd.ge" - "tClientPoseRequest\032$.grpcIFrontEnd.getCl" - "ientPoseResponse\"\000\022P\n\tcreateMap\022\037.grpcIF" - "rontEnd.createMapRequest\032 .grpcIFrontEnd" - ".createMapResponse\"\000\022P\n\tdeleteMap\022\037.grpc" - "IFrontEnd.deleteMapRequest\032 .grpcIFrontE" - "nd.deleteMapResponse\"\000\022_\n\016getAllMapsUUID" - "\022$.grpcIFrontEnd.getAllMapsUUIDRequest\032%" - ".grpcIFrontEnd.getAllMapsUUIDResponse\"\000\022" - "e\n\020getClientMapUUID\022&.grpcIFrontEnd.getC" - "lientMapUUIDRequest\032\'.grpcIFrontEnd.getC" - "lientMapUUIDResponse\"\000\022n\n\023getClientInfoF" - "orMap\022).grpcIFrontEnd.getClientInfoForMa" - "pRequest\032*.grpcIFrontEnd.getClientInfoFo" - "rMapResponse\"\000\022\\\n\rgetMapRequest\022#.grpcIF" - "rontEnd.getMapRequestRequest\032$.grpcIFron" - "tEnd.getMapRequestResponse\"\000\022\\\n\rsetMapRe" - "quest\022#.grpcIFrontEnd.setMapRequestReque" - "st\032$.grpcIFrontEnd.setMapRequestResponse" - "\"\000\022q\n\024getPointCloudRequest\022*.grpcIFrontE" - "nd.getPointCloudRequestRequest\032+.grpcIFr" - "ontEnd.getPointCloudRequestResponse\"\000\022S\n" - "\ngetMapInfo\022 .grpcIFrontEnd.getMapInfoRe" - "quest\032!.grpcIFrontEnd.getMapInfoResponse" - "\"\000\022q\n\024requestMapProcessing\022*.grpcIFrontE" - "nd.requestMapProcessingRequest\032+.grpcIFr" - "ontEnd.requestMapProcessingResponse\"\000\022w\n" - "\026getMapProcessingStatus\022,.grpcIFrontEnd." - "getMapProcessingStatusRequest\032-.grpcIFro" - "ntEnd.getMapProcessingStatusResponse\"\000\022q" - "\n\024getMapProcessingData\022*.grpcIFrontEnd.g" - "etMapProcessingDataRequest\032+.grpcIFrontE" - "nd.getMapProcessingDataResponse\"\000b\006proto" - "3" + "pcReturnValue\030\006 \001(\021\"x\n\020backupMapRequest\022" + "#\n\033grpcServerCompressionFormat\030\001 \001(\005\022\023\n\013" + "accessToken\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\031\n\021co" + "mpressedZipData\030\004 \001(\014\"K\n\021backupMapRespon" + "se\022\031\n\021compressedZipData\030\001 \001(\014\022\033\n\023xpcfGrp" + "cReturnValue\030\002 \001(\021\"y\n\021restoreMapRequest\022" + "#\n\033grpcServerCompressionFormat\030\001 \001(\005\022\023\n\013" + "accessToken\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\031\n\021co" + "mpressedZipData\030\004 \001(\014\"1\n\022restoreMapRespo" + "nse\022\033\n\023xpcfGrpcReturnValue\030\001 \001(\021\"\227\001\n\033req" + "uestMapProcessingRequest\022#\n\033grpcServerCo" + "mpressionFormat\030\001 \001(\005\022\023\n\013accessToken\030\002 \001" + "(\t\022\017\n\007mapUUID\030\003 \001(\t\022\025\n\rresultMapUUID\030\004 \001" + "(\t\022\026\n\016processingType\030\005 \001(\021\";\n\034requestMap" + "ProcessingResponse\022\033\n\023xpcfGrpcReturnValu" + "e\030\001 \001(\021\"\252\001\n\035getMapProcessingStatusReques" + "t\022#\n\033grpcServerCompressionFormat\030\001 \001(\005\022\023" + "\n\013accessToken\030\002 \001(\t\022\025\n\rresultMapUUID\030\003 \001" + "(\t\022\016\n\006status\030\004 \001(\021\022\026\n\016processingType\030\005 \001" + "(\021\022\020\n\010progress\030\006 \001(\002\"w\n\036getMapProcessing" + "StatusResponse\022\016\n\006status\030\001 \001(\021\022\026\n\016proces" + "singType\030\002 \001(\021\022\020\n\010progress\030\003 \001(\002\022\033\n\023xpcf" + "GrpcReturnValue\030\004 \001(\021\"\231\001\n\033getMapProcessi" + "ngDataRequest\022#\n\033grpcServerCompressionFo" + "rmat\030\001 \001(\005\022\023\n\013accessToken\030\002 \001(\t\022\025\n\rresul" + "tMapUUID\030\003 \001(\t\022\022\n\npointCloud\030\004 \001(\014\022\025\n\rke" + "yframePoses\030\005 \001(\014\"f\n\034getMapProcessingDat" + "aResponse\022\022\n\npointCloud\030\001 \001(\014\022\025\n\rkeyfram" + "ePoses\030\002 \001(\014\022\033\n\023xpcfGrpcReturnValue\030\003 \001(" + "\0212\351\027\n\024grpcIFrontEndService\022_\n\016registerCl" + "ient\022$.grpcIFrontEnd.registerClientReque" + "st\032%.grpcIFrontEnd.registerClientRespons" + "e\"\000\022e\n\020unregisterClient\022&.grpcIFrontEnd." + "unregisterClientRequest\032\'.grpcIFrontEnd." + "unregisterClientResponse\"\000\022h\n\021getAllClie" + "ntsUUID\022\'.grpcIFrontEnd.getAllClientsUUI" + "DRequest\032(.grpcIFrontEnd.getAllClientsUU" + "IDResponse\"\000\022\\\n\rgetDeviceInfo\022#.grpcIFro" + "ntEnd.getDeviceInfoRequest\032$.grpcIFrontE" + "nd.getDeviceInfoResponse\"\000\022S\n\ninit_grpc0" + "\022 .grpcIFrontEnd.init_grpc0Request\032!.grp" + "cIFrontEnd.init_grpc0Response\"\000\022S\n\ninit_" + "grpc1\022 .grpcIFrontEnd.init_grpc1Request\032" + "!.grpcIFrontEnd.init_grpc1Response\"\000\022D\n\005" + "start\022\033.grpcIFrontEnd.startRequest\032\034.grp" + "cIFrontEnd.startResponse\"\000\022A\n\004stop\022\032.grp" + "cIFrontEnd.stopRequest\032\033.grpcIFrontEnd.s" + "topResponse\"\000\022h\n\021getProcessingMode\022\'.grp" + "cIFrontEnd.getProcessingModeRequest\032(.gr" + "pcIFrontEnd.getProcessingModeResponse\"\000\022" + "\200\001\n\031setCameraParameters_grpc0\022/.grpcIFro" + "ntEnd.setCameraParameters_grpc0Request\0320" + ".grpcIFrontEnd.setCameraParameters_grpc0" + "Response\"\000\022\200\001\n\031setCameraParameters_grpc1" + "\022/.grpcIFrontEnd.setCameraParameters_grp" + "c1Request\0320.grpcIFrontEnd.setCameraParam" + "eters_grpc1Response\"\000\022\203\001\n\032setRectificati" + "onParameters\0220.grpcIFrontEnd.setRectific" + "ationParametersRequest\0321.grpcIFrontEnd.s" + "etRectificationParametersResponse\"\000\022n\n\023g" + "etCameraParameters\022).grpcIFrontEnd.getCa" + "meraParametersRequest\032*.grpcIFrontEnd.ge" + "tCameraParametersResponse\"\000\022n\n\023imageProc" + "essRequest\022).grpcIFrontEnd.imageProcessR" + "equestRequest\032*.grpcIFrontEnd.imageProce" + "ssRequestResponse\"\000\022t\n\025getMappingDataReq" + "uest\022+.grpcIFrontEnd.getMappingDataReque" + "stRequest\032,.grpcIFrontEnd.getMappingData" + "RequestResponse\"\000\022\\\n\rgetClientPose\022#.grp" + "cIFrontEnd.getClientPoseRequest\032$.grpcIF" + "rontEnd.getClientPoseResponse\"\000\022P\n\tcreat" + "eMap\022\037.grpcIFrontEnd.createMapRequest\032 ." + "grpcIFrontEnd.createMapResponse\"\000\022P\n\tdel" + "eteMap\022\037.grpcIFrontEnd.deleteMapRequest\032" + " .grpcIFrontEnd.deleteMapResponse\"\000\022_\n\016g" + "etAllMapsUUID\022$.grpcIFrontEnd.getAllMaps" + "UUIDRequest\032%.grpcIFrontEnd.getAllMapsUU" + "IDResponse\"\000\022e\n\020getClientMapUUID\022&.grpcI" + "FrontEnd.getClientMapUUIDRequest\032\'.grpcI" + "FrontEnd.getClientMapUUIDResponse\"\000\022n\n\023g" + "etClientInfoForMap\022).grpcIFrontEnd.getCl" + "ientInfoForMapRequest\032*.grpcIFrontEnd.ge" + "tClientInfoForMapResponse\"\000\022\\\n\rgetMapReq" + "uest\022#.grpcIFrontEnd.getMapRequestReques" + "t\032$.grpcIFrontEnd.getMapRequestResponse\"" + "\000\022\\\n\rsetMapRequest\022#.grpcIFrontEnd.setMa" + "pRequestRequest\032$.grpcIFrontEnd.setMapRe" + "questResponse\"\000\022q\n\024getPointCloudRequest\022" + "*.grpcIFrontEnd.getPointCloudRequestRequ" + "est\032+.grpcIFrontEnd.getPointCloudRequest" + "Response\"\000\022S\n\ngetMapInfo\022 .grpcIFrontEnd" + ".getMapInfoRequest\032!.grpcIFrontEnd.getMa" + "pInfoResponse\"\000\022P\n\tbackupMap\022\037.grpcIFron" + "tEnd.backupMapRequest\032 .grpcIFrontEnd.ba" + "ckupMapResponse\"\000\022S\n\nrestoreMap\022 .grpcIF" + "rontEnd.restoreMapRequest\032!.grpcIFrontEn" + "d.restoreMapResponse\"\000\022q\n\024requestMapProc" + "essing\022*.grpcIFrontEnd.requestMapProcess" + "ingRequest\032+.grpcIFrontEnd.requestMapPro" + "cessingResponse\"\000\022w\n\026getMapProcessingSta" + "tus\022,.grpcIFrontEnd.getMapProcessingStat" + "usRequest\032-.grpcIFrontEnd.getMapProcessi" + "ngStatusResponse\"\000\022q\n\024getMapProcessingDa" + "ta\022*.grpcIFrontEnd.getMapProcessingDataR" + "equest\032+.grpcIFrontEnd.getMapProcessingD" + "ataResponse\"\000b\006proto3" }; static const ::_pbi::DescriptorTable* const descriptor_table_grpcIFrontEndService_2eproto_deps[1] = { @@ -2438,13 +2599,13 @@ static ::absl::once_flag descriptor_table_grpcIFrontEndService_2eproto_once; PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_grpcIFrontEndService_2eproto = { false, false, - 9161, + 9701, descriptor_table_protodef_grpcIFrontEndService_2eproto, "grpcIFrontEndService.proto", &descriptor_table_grpcIFrontEndService_2eproto_once, descriptor_table_grpcIFrontEndService_2eproto_deps, 1, - 56, + 60, schemas, file_default_instances, TableStruct_grpcIFrontEndService_2eproto::offsets, @@ -14996,6 +15157,940 @@ ::google::protobuf::Metadata getMapInfoResponse::GetMetadata() const { } // =================================================================== +class backupMapRequest::_Internal { + public: +}; + +backupMapRequest::backupMapRequest(::google::protobuf::Arena* arena) + : ::google::protobuf::Message(arena) { + SharedCtor(arena); + // @@protoc_insertion_point(arena_constructor:grpcIFrontEnd.backupMapRequest) +} +inline PROTOBUF_NDEBUG_INLINE backupMapRequest::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, + const Impl_& from, const ::grpcIFrontEnd::backupMapRequest& from_msg) + : accesstoken_(arena, from.accesstoken_), + mapuuid_(arena, from.mapuuid_), + compressedzipdata_(arena, from.compressedzipdata_), + _cached_size_{0} {} + +backupMapRequest::backupMapRequest( + ::google::protobuf::Arena* arena, + const backupMapRequest& from) + : ::google::protobuf::Message(arena) { + backupMapRequest* const _this = this; + (void)_this; + _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( + from._internal_metadata_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); + _impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; + + // @@protoc_insertion_point(copy_constructor:grpcIFrontEnd.backupMapRequest) +} +inline PROTOBUF_NDEBUG_INLINE backupMapRequest::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena) + : accesstoken_(arena), + mapuuid_(arena), + compressedzipdata_(arena), + _cached_size_{0} {} + +inline void backupMapRequest::SharedCtor(::_pb::Arena* arena) { + new (&_impl_) Impl_(internal_visibility(), arena); + _impl_.grpcservercompressionformat_ = {}; +} +backupMapRequest::~backupMapRequest() { + // @@protoc_insertion_point(destructor:grpcIFrontEnd.backupMapRequest) + _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); + SharedDtor(); +} +inline void backupMapRequest::SharedDtor() { + ABSL_DCHECK(GetArena() == nullptr); + _impl_.accesstoken_.Destroy(); + _impl_.mapuuid_.Destroy(); + _impl_.compressedzipdata_.Destroy(); + _impl_.~Impl_(); +} + +const ::google::protobuf::MessageLite::ClassData* +backupMapRequest::GetClassData() const { + PROTOBUF_CONSTINIT static const ::google::protobuf::MessageLite:: + ClassDataFull _data_ = { + { + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_._cached_size_), + false, + }, + &backupMapRequest::MergeImpl, + &backupMapRequest::kDescriptorMethods, + &descriptor_table_grpcIFrontEndService_2eproto, + nullptr, // tracker + }; + ::google::protobuf::internal::PrefetchToLocalCache(&_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_data_.tc_table); + return _data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<2, 4, 0, 57, 2> backupMapRequest::_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 + &_backupMapRequest_default_instance_._instance, + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::grpcIFrontEnd::backupMapRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + // bytes compressedZipData = 4; + {::_pbi::TcParser::FastBS1, + {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressedzipdata_)}}, + // int32 grpcServerCompressionFormat = 1; + {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(backupMapRequest, _impl_.grpcservercompressionformat_), 63>(), + {8, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.grpcservercompressionformat_)}}, + // string accessToken = 2; + {::_pbi::TcParser::FastUS1, + {18, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.accesstoken_)}}, + // string mapUUID = 3; + {::_pbi::TcParser::FastUS1, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // int32 grpcServerCompressionFormat = 1; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.grpcservercompressionformat_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, + // string accessToken = 2; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.accesstoken_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, + // string mapUUID = 3; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, + // bytes compressedZipData = 4; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressedzipdata_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + }}, + // no aux_entries + {{ + "\36\0\13\7\0\0\0\0" + "grpcIFrontEnd.backupMapRequest" + "accessToken" + "mapUUID" + }}, +}; + +PROTOBUF_NOINLINE void backupMapRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:grpcIFrontEnd.backupMapRequest) + ::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_.accesstoken_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); + _impl_.grpcservercompressionformat_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} + +::uint8_t* backupMapRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:grpcIFrontEnd.backupMapRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int32 grpcServerCompressionFormat = 1; + if (this->_internal_grpcservercompressionformat() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<1>( + stream, this->_internal_grpcservercompressionformat(), target); + } + + // string accessToken = 2; + if (!this->_internal_accesstoken().empty()) { + const std::string& _s = this->_internal_accesstoken(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "grpcIFrontEnd.backupMapRequest.accessToken"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // string mapUUID = 3; + if (!this->_internal_mapuuid().empty()) { + const std::string& _s = this->_internal_mapuuid(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "grpcIFrontEnd.backupMapRequest.mapUUID"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // bytes compressedZipData = 4; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); + target = stream->WriteBytesMaybeAliased(4, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:grpcIFrontEnd.backupMapRequest) + return target; +} + +::size_t backupMapRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:grpcIFrontEnd.backupMapRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(reinterpret_cast(this)); + // string accessToken = 2; + if (!this->_internal_accesstoken().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this->_internal_accesstoken()); + } + + // string mapUUID = 3; + if (!this->_internal_mapuuid().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this->_internal_mapuuid()); + } + + // bytes compressedZipData = 4; + if (!this->_internal_compressedzipdata().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_compressedzipdata()); + } + + // int32 grpcServerCompressionFormat = 1; + if (this->_internal_grpcservercompressionformat() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this->_internal_grpcservercompressionformat()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + + +void backupMapRequest::MergeImpl(::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:grpcIFrontEnd.backupMapRequest) + ABSL_DCHECK_NE(&from, _this); + ::uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + if (!from._internal_accesstoken().empty()) { + _this->_internal_set_accesstoken(from._internal_accesstoken()); + } + if (!from._internal_mapuuid().empty()) { + _this->_internal_set_mapuuid(from._internal_mapuuid()); + } + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); + } + if (from._internal_grpcservercompressionformat() != 0) { + _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; + } + _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +} + +void backupMapRequest::CopyFrom(const backupMapRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:grpcIFrontEnd.backupMapRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + + +void backupMapRequest::InternalSwap(backupMapRequest* 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_.accesstoken_, &other->_impl_.accesstoken_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.mapuuid_, &other->_impl_.mapuuid_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); + swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); +} + +::google::protobuf::Metadata backupMapRequest::GetMetadata() const { + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); +} +// =================================================================== + +class backupMapResponse::_Internal { + public: +}; + +backupMapResponse::backupMapResponse(::google::protobuf::Arena* arena) + : ::google::protobuf::Message(arena) { + SharedCtor(arena); + // @@protoc_insertion_point(arena_constructor:grpcIFrontEnd.backupMapResponse) +} +inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, + const Impl_& from, const ::grpcIFrontEnd::backupMapResponse& from_msg) + : compressedzipdata_(arena, from.compressedzipdata_), + _cached_size_{0} {} + +backupMapResponse::backupMapResponse( + ::google::protobuf::Arena* arena, + const backupMapResponse& from) + : ::google::protobuf::Message(arena) { + backupMapResponse* const _this = this; + (void)_this; + _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( + from._internal_metadata_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); + _impl_.xpcfgrpcreturnvalue_ = from._impl_.xpcfgrpcreturnvalue_; + + // @@protoc_insertion_point(copy_constructor:grpcIFrontEnd.backupMapResponse) +} +inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena) + : compressedzipdata_(arena), + _cached_size_{0} {} + +inline void backupMapResponse::SharedCtor(::_pb::Arena* arena) { + new (&_impl_) Impl_(internal_visibility(), arena); + _impl_.xpcfgrpcreturnvalue_ = {}; +} +backupMapResponse::~backupMapResponse() { + // @@protoc_insertion_point(destructor:grpcIFrontEnd.backupMapResponse) + _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); + SharedDtor(); +} +inline void backupMapResponse::SharedDtor() { + ABSL_DCHECK(GetArena() == nullptr); + _impl_.compressedzipdata_.Destroy(); + _impl_.~Impl_(); +} + +const ::google::protobuf::MessageLite::ClassData* +backupMapResponse::GetClassData() const { + PROTOBUF_CONSTINIT static const ::google::protobuf::MessageLite:: + ClassDataFull _data_ = { + { + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_._cached_size_), + false, + }, + &backupMapResponse::MergeImpl, + &backupMapResponse::kDescriptorMethods, + &descriptor_table_grpcIFrontEndService_2eproto, + nullptr, // tracker + }; + ::google::protobuf::internal::PrefetchToLocalCache(&_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_data_.tc_table); + return _data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<1, 2, 0, 0, 2> backupMapResponse::_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 + &_backupMapResponse_default_instance_._instance, + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::grpcIFrontEnd::backupMapResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + // sint32 xpcfGrpcReturnValue = 2; + {::_pbi::TcParser::FastZ32S1, + {16, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, + // bytes compressedZipData = 1; + {::_pbi::TcParser::FastBS1, + {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressedzipdata_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // bytes compressedZipData = 1; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressedzipdata_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // sint32 xpcfGrpcReturnValue = 2; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kSInt32)}, + }}, + // no aux_entries + {{ + }}, +}; + +PROTOBUF_NOINLINE void backupMapResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:grpcIFrontEnd.backupMapResponse) + ::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_.compressedzipdata_.ClearToEmpty(); + _impl_.xpcfgrpcreturnvalue_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} + +::uint8_t* backupMapResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:grpcIFrontEnd.backupMapResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bytes compressedZipData = 1; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); + target = stream->WriteBytesMaybeAliased(1, _s, target); + } + + // sint32 xpcfGrpcReturnValue = 2; + if (this->_internal_xpcfgrpcreturnvalue() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 2, this->_internal_xpcfgrpcreturnvalue(), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:grpcIFrontEnd.backupMapResponse) + return target; +} + +::size_t backupMapResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:grpcIFrontEnd.backupMapResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(reinterpret_cast(this)); + // bytes compressedZipData = 1; + if (!this->_internal_compressedzipdata().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_compressedzipdata()); + } + + // sint32 xpcfGrpcReturnValue = 2; + if (this->_internal_xpcfgrpcreturnvalue() != 0) { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this->_internal_xpcfgrpcreturnvalue()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + + +void backupMapResponse::MergeImpl(::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:grpcIFrontEnd.backupMapResponse) + ABSL_DCHECK_NE(&from, _this); + ::uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); + } + if (from._internal_xpcfgrpcreturnvalue() != 0) { + _this->_impl_.xpcfgrpcreturnvalue_ = from._impl_.xpcfgrpcreturnvalue_; + } + _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +} + +void backupMapResponse::CopyFrom(const backupMapResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:grpcIFrontEnd.backupMapResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + + +void backupMapResponse::InternalSwap(backupMapResponse* 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_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); + swap(_impl_.xpcfgrpcreturnvalue_, other->_impl_.xpcfgrpcreturnvalue_); +} + +::google::protobuf::Metadata backupMapResponse::GetMetadata() const { + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); +} +// =================================================================== + +class restoreMapRequest::_Internal { + public: +}; + +restoreMapRequest::restoreMapRequest(::google::protobuf::Arena* arena) + : ::google::protobuf::Message(arena) { + SharedCtor(arena); + // @@protoc_insertion_point(arena_constructor:grpcIFrontEnd.restoreMapRequest) +} +inline PROTOBUF_NDEBUG_INLINE restoreMapRequest::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, + const Impl_& from, const ::grpcIFrontEnd::restoreMapRequest& from_msg) + : accesstoken_(arena, from.accesstoken_), + mapuuid_(arena, from.mapuuid_), + compressedzipdata_(arena, from.compressedzipdata_), + _cached_size_{0} {} + +restoreMapRequest::restoreMapRequest( + ::google::protobuf::Arena* arena, + const restoreMapRequest& from) + : ::google::protobuf::Message(arena) { + restoreMapRequest* const _this = this; + (void)_this; + _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( + from._internal_metadata_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); + _impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; + + // @@protoc_insertion_point(copy_constructor:grpcIFrontEnd.restoreMapRequest) +} +inline PROTOBUF_NDEBUG_INLINE restoreMapRequest::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena) + : accesstoken_(arena), + mapuuid_(arena), + compressedzipdata_(arena), + _cached_size_{0} {} + +inline void restoreMapRequest::SharedCtor(::_pb::Arena* arena) { + new (&_impl_) Impl_(internal_visibility(), arena); + _impl_.grpcservercompressionformat_ = {}; +} +restoreMapRequest::~restoreMapRequest() { + // @@protoc_insertion_point(destructor:grpcIFrontEnd.restoreMapRequest) + _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); + SharedDtor(); +} +inline void restoreMapRequest::SharedDtor() { + ABSL_DCHECK(GetArena() == nullptr); + _impl_.accesstoken_.Destroy(); + _impl_.mapuuid_.Destroy(); + _impl_.compressedzipdata_.Destroy(); + _impl_.~Impl_(); +} + +const ::google::protobuf::MessageLite::ClassData* +restoreMapRequest::GetClassData() const { + PROTOBUF_CONSTINIT static const ::google::protobuf::MessageLite:: + ClassDataFull _data_ = { + { + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_._cached_size_), + false, + }, + &restoreMapRequest::MergeImpl, + &restoreMapRequest::kDescriptorMethods, + &descriptor_table_grpcIFrontEndService_2eproto, + nullptr, // tracker + }; + ::google::protobuf::internal::PrefetchToLocalCache(&_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_data_.tc_table); + return _data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<2, 4, 0, 58, 2> restoreMapRequest::_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 + &_restoreMapRequest_default_instance_._instance, + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::grpcIFrontEnd::restoreMapRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + // bytes compressedZipData = 4; + {::_pbi::TcParser::FastBS1, + {34, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressedzipdata_)}}, + // int32 grpcServerCompressionFormat = 1; + {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(restoreMapRequest, _impl_.grpcservercompressionformat_), 63>(), + {8, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.grpcservercompressionformat_)}}, + // string accessToken = 2; + {::_pbi::TcParser::FastUS1, + {18, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.accesstoken_)}}, + // string mapUUID = 3; + {::_pbi::TcParser::FastUS1, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // int32 grpcServerCompressionFormat = 1; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.grpcservercompressionformat_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, + // string accessToken = 2; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.accesstoken_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, + // string mapUUID = 3; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, + // bytes compressedZipData = 4; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressedzipdata_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + }}, + // no aux_entries + {{ + "\37\0\13\7\0\0\0\0" + "grpcIFrontEnd.restoreMapRequest" + "accessToken" + "mapUUID" + }}, +}; + +PROTOBUF_NOINLINE void restoreMapRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:grpcIFrontEnd.restoreMapRequest) + ::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_.accesstoken_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); + _impl_.grpcservercompressionformat_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} + +::uint8_t* restoreMapRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:grpcIFrontEnd.restoreMapRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int32 grpcServerCompressionFormat = 1; + if (this->_internal_grpcservercompressionformat() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<1>( + stream, this->_internal_grpcservercompressionformat(), target); + } + + // string accessToken = 2; + if (!this->_internal_accesstoken().empty()) { + const std::string& _s = this->_internal_accesstoken(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "grpcIFrontEnd.restoreMapRequest.accessToken"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // string mapUUID = 3; + if (!this->_internal_mapuuid().empty()) { + const std::string& _s = this->_internal_mapuuid(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "grpcIFrontEnd.restoreMapRequest.mapUUID"); + target = stream->WriteStringMaybeAliased(3, _s, target); + } + + // bytes compressedZipData = 4; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); + target = stream->WriteBytesMaybeAliased(4, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:grpcIFrontEnd.restoreMapRequest) + return target; +} + +::size_t restoreMapRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:grpcIFrontEnd.restoreMapRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(reinterpret_cast(this)); + // string accessToken = 2; + if (!this->_internal_accesstoken().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this->_internal_accesstoken()); + } + + // string mapUUID = 3; + if (!this->_internal_mapuuid().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this->_internal_mapuuid()); + } + + // bytes compressedZipData = 4; + if (!this->_internal_compressedzipdata().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_compressedzipdata()); + } + + // int32 grpcServerCompressionFormat = 1; + if (this->_internal_grpcservercompressionformat() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this->_internal_grpcservercompressionformat()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + + +void restoreMapRequest::MergeImpl(::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:grpcIFrontEnd.restoreMapRequest) + ABSL_DCHECK_NE(&from, _this); + ::uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + if (!from._internal_accesstoken().empty()) { + _this->_internal_set_accesstoken(from._internal_accesstoken()); + } + if (!from._internal_mapuuid().empty()) { + _this->_internal_set_mapuuid(from._internal_mapuuid()); + } + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); + } + if (from._internal_grpcservercompressionformat() != 0) { + _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; + } + _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +} + +void restoreMapRequest::CopyFrom(const restoreMapRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:grpcIFrontEnd.restoreMapRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + + +void restoreMapRequest::InternalSwap(restoreMapRequest* 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_.accesstoken_, &other->_impl_.accesstoken_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.mapuuid_, &other->_impl_.mapuuid_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); + swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); +} + +::google::protobuf::Metadata restoreMapRequest::GetMetadata() const { + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); +} +// =================================================================== + +class restoreMapResponse::_Internal { + public: +}; + +restoreMapResponse::restoreMapResponse(::google::protobuf::Arena* arena) + : ::google::protobuf::Message(arena) { + SharedCtor(arena); + // @@protoc_insertion_point(arena_constructor:grpcIFrontEnd.restoreMapResponse) +} +restoreMapResponse::restoreMapResponse( + ::google::protobuf::Arena* arena, const restoreMapResponse& from) + : restoreMapResponse(arena) { + MergeFrom(from); +} +inline PROTOBUF_NDEBUG_INLINE restoreMapResponse::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena) + : _cached_size_{0} {} + +inline void restoreMapResponse::SharedCtor(::_pb::Arena* arena) { + new (&_impl_) Impl_(internal_visibility(), arena); + _impl_.xpcfgrpcreturnvalue_ = {}; +} +restoreMapResponse::~restoreMapResponse() { + // @@protoc_insertion_point(destructor:grpcIFrontEnd.restoreMapResponse) + _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); + SharedDtor(); +} +inline void restoreMapResponse::SharedDtor() { + ABSL_DCHECK(GetArena() == nullptr); + _impl_.~Impl_(); +} + +const ::google::protobuf::MessageLite::ClassData* +restoreMapResponse::GetClassData() const { + PROTOBUF_CONSTINIT static const ::google::protobuf::MessageLite:: + ClassDataFull _data_ = { + { + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + PROTOBUF_FIELD_OFFSET(restoreMapResponse, _impl_._cached_size_), + false, + }, + &restoreMapResponse::MergeImpl, + &restoreMapResponse::kDescriptorMethods, + &descriptor_table_grpcIFrontEndService_2eproto, + nullptr, // tracker + }; + ::google::protobuf::internal::PrefetchToLocalCache(&_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_data_.tc_table); + return _data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 1, 0, 0, 2> restoreMapResponse::_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 + &_restoreMapResponse_default_instance_._instance, + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::grpcIFrontEnd::restoreMapResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + // sint32 xpcfGrpcReturnValue = 1; + {::_pbi::TcParser::FastZ32S1, + {8, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // sint32 xpcfGrpcReturnValue = 1; + {PROTOBUF_FIELD_OFFSET(restoreMapResponse, _impl_.xpcfgrpcreturnvalue_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kSInt32)}, + }}, + // no aux_entries + {{ + }}, +}; + +PROTOBUF_NOINLINE void restoreMapResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:grpcIFrontEnd.restoreMapResponse) + ::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_.xpcfgrpcreturnvalue_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} + +::uint8_t* restoreMapResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:grpcIFrontEnd.restoreMapResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // sint32 xpcfGrpcReturnValue = 1; + if (this->_internal_xpcfgrpcreturnvalue() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 1, this->_internal_xpcfgrpcreturnvalue(), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:grpcIFrontEnd.restoreMapResponse) + return target; +} + +::size_t restoreMapResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:grpcIFrontEnd.restoreMapResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // sint32 xpcfGrpcReturnValue = 1; + if (this->_internal_xpcfgrpcreturnvalue() != 0) { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this->_internal_xpcfgrpcreturnvalue()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + + +void restoreMapResponse::MergeImpl(::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:grpcIFrontEnd.restoreMapResponse) + ABSL_DCHECK_NE(&from, _this); + ::uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + if (from._internal_xpcfgrpcreturnvalue() != 0) { + _this->_impl_.xpcfgrpcreturnvalue_ = from._impl_.xpcfgrpcreturnvalue_; + } + _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +} + +void restoreMapResponse::CopyFrom(const restoreMapResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:grpcIFrontEnd.restoreMapResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + + +void restoreMapResponse::InternalSwap(restoreMapResponse* PROTOBUF_RESTRICT other) { + using std::swap; + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_.xpcfgrpcreturnvalue_, other->_impl_.xpcfgrpcreturnvalue_); +} + +::google::protobuf::Metadata restoreMapResponse::GetMetadata() const { + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); +} +// =================================================================== + class requestMapProcessingRequest::_Internal { public: }; diff --git a/gen/src/grpcIMapsManagerService.grpc.pb.cc b/gen/src/grpcIMapsManagerService.grpc.pb.cc index bad79c8..72d5bc1 100644 --- a/gen/src/grpcIMapsManagerService.grpc.pb.cc +++ b/gen/src/grpcIMapsManagerService.grpc.pb.cc @@ -31,6 +31,8 @@ static const char* grpcIMapsManagerService_method_names[] = { "/grpcIMapsManager.grpcIMapsManagerService/setMapRequest", "/grpcIMapsManager.grpcIMapsManagerService/getPointCloudRequest", "/grpcIMapsManager.grpcIMapsManagerService/getMapInfo", + "/grpcIMapsManager.grpcIMapsManagerService/backupMap", + "/grpcIMapsManager.grpcIMapsManagerService/restoreMap", "/grpcIMapsManager.grpcIMapsManagerService/requestMapProcessing", "/grpcIMapsManager.grpcIMapsManagerService/getMapProcessingStatus", "/grpcIMapsManager.grpcIMapsManagerService/getMapProcessingData", @@ -52,9 +54,11 @@ grpcIMapsManagerService::Stub::Stub(const std::shared_ptr< ::grpc::ChannelInterf , rpcmethod_setMapRequest_(grpcIMapsManagerService_method_names[6], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) , rpcmethod_getPointCloudRequest_(grpcIMapsManagerService_method_names[7], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) , rpcmethod_getMapInfo_(grpcIMapsManagerService_method_names[8], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_requestMapProcessing_(grpcIMapsManagerService_method_names[9], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_getMapProcessingStatus_(grpcIMapsManagerService_method_names[10], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) - , rpcmethod_getMapProcessingData_(grpcIMapsManagerService_method_names[11], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_backupMap_(grpcIMapsManagerService_method_names[9], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_restoreMap_(grpcIMapsManagerService_method_names[10], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_requestMapProcessing_(grpcIMapsManagerService_method_names[11], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_getMapProcessingStatus_(grpcIMapsManagerService_method_names[12], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) + , rpcmethod_getMapProcessingData_(grpcIMapsManagerService_method_names[13], options.suffix_for_stats(),::grpc::internal::RpcMethod::NORMAL_RPC, channel) {} ::grpc::Status grpcIMapsManagerService::Stub::createMap(::grpc::ClientContext* context, const ::grpcIMapsManager::createMapRequest& request, ::grpcIMapsManager::createMapResponse* response) { @@ -264,6 +268,52 @@ ::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::getMapInfoResponse>* grpc return result; } +::grpc::Status grpcIMapsManagerService::Stub::backupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpcIMapsManager::backupMapResponse* response) { + return ::grpc::internal::BlockingUnaryCall< ::grpcIMapsManager::backupMapRequest, ::grpcIMapsManager::backupMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_backupMap_, context, request, response); +} + +void grpcIMapsManagerService::Stub::async::backupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response, std::function f) { + ::grpc::internal::CallbackUnaryCall< ::grpcIMapsManager::backupMapRequest, ::grpcIMapsManager::backupMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_backupMap_, context, request, response, std::move(f)); +} + +void grpcIMapsManagerService::Stub::async::backupMap(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response, ::grpc::ClientUnaryReactor* reactor) { + ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_backupMap_, context, request, response, reactor); +} + +::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::backupMapResponse>* grpcIMapsManagerService::Stub::PrepareAsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::grpcIMapsManager::backupMapResponse, ::grpcIMapsManager::backupMapRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_backupMap_, context, request); +} + +::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::backupMapResponse>* grpcIMapsManagerService::Stub::AsyncbackupMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::backupMapRequest& request, ::grpc::CompletionQueue* cq) { + auto* result = + this->PrepareAsyncbackupMapRaw(context, request, cq); + result->StartCall(); + return result; +} + +::grpc::Status grpcIMapsManagerService::Stub::restoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpcIMapsManager::restoreMapResponse* response) { + return ::grpc::internal::BlockingUnaryCall< ::grpcIMapsManager::restoreMapRequest, ::grpcIMapsManager::restoreMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_restoreMap_, context, request, response); +} + +void grpcIMapsManagerService::Stub::async::restoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response, std::function f) { + ::grpc::internal::CallbackUnaryCall< ::grpcIMapsManager::restoreMapRequest, ::grpcIMapsManager::restoreMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_restoreMap_, context, request, response, std::move(f)); +} + +void grpcIMapsManagerService::Stub::async::restoreMap(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response, ::grpc::ClientUnaryReactor* reactor) { + ::grpc::internal::ClientCallbackUnaryFactory::Create< ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(stub_->channel_.get(), stub_->rpcmethod_restoreMap_, context, request, response, reactor); +} + +::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::restoreMapResponse>* grpcIMapsManagerService::Stub::PrepareAsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + return ::grpc::internal::ClientAsyncResponseReaderHelper::Create< ::grpcIMapsManager::restoreMapResponse, ::grpcIMapsManager::restoreMapRequest, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), cq, rpcmethod_restoreMap_, context, request); +} + +::grpc::ClientAsyncResponseReader< ::grpcIMapsManager::restoreMapResponse>* grpcIMapsManagerService::Stub::AsyncrestoreMapRaw(::grpc::ClientContext* context, const ::grpcIMapsManager::restoreMapRequest& request, ::grpc::CompletionQueue* cq) { + auto* result = + this->PrepareAsyncrestoreMapRaw(context, request, cq); + result->StartCall(); + return result; +} + ::grpc::Status grpcIMapsManagerService::Stub::requestMapProcessing(::grpc::ClientContext* context, const ::grpcIMapsManager::requestMapProcessingRequest& request, ::grpcIMapsManager::requestMapProcessingResponse* response) { return ::grpc::internal::BlockingUnaryCall< ::grpcIMapsManager::requestMapProcessingRequest, ::grpcIMapsManager::requestMapProcessingResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>(channel_.get(), rpcmethod_requestMapProcessing_, context, request, response); } @@ -427,6 +477,26 @@ grpcIMapsManagerService::Service::Service() { AddMethod(new ::grpc::internal::RpcServiceMethod( grpcIMapsManagerService_method_names[9], ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< grpcIMapsManagerService::Service, ::grpcIMapsManager::backupMapRequest, ::grpcIMapsManager::backupMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( + [](grpcIMapsManagerService::Service* service, + ::grpc::ServerContext* ctx, + const ::grpcIMapsManager::backupMapRequest* req, + ::grpcIMapsManager::backupMapResponse* resp) { + return service->backupMap(ctx, req, resp); + }, this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + grpcIMapsManagerService_method_names[10], + ::grpc::internal::RpcMethod::NORMAL_RPC, + new ::grpc::internal::RpcMethodHandler< grpcIMapsManagerService::Service, ::grpcIMapsManager::restoreMapRequest, ::grpcIMapsManager::restoreMapResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( + [](grpcIMapsManagerService::Service* service, + ::grpc::ServerContext* ctx, + const ::grpcIMapsManager::restoreMapRequest* req, + ::grpcIMapsManager::restoreMapResponse* resp) { + return service->restoreMap(ctx, req, resp); + }, this))); + AddMethod(new ::grpc::internal::RpcServiceMethod( + grpcIMapsManagerService_method_names[11], + ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< grpcIMapsManagerService::Service, ::grpcIMapsManager::requestMapProcessingRequest, ::grpcIMapsManager::requestMapProcessingResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( [](grpcIMapsManagerService::Service* service, ::grpc::ServerContext* ctx, @@ -435,7 +505,7 @@ grpcIMapsManagerService::Service::Service() { return service->requestMapProcessing(ctx, req, resp); }, this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - grpcIMapsManagerService_method_names[10], + grpcIMapsManagerService_method_names[12], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< grpcIMapsManagerService::Service, ::grpcIMapsManager::getMapProcessingStatusRequest, ::grpcIMapsManager::getMapProcessingStatusResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( [](grpcIMapsManagerService::Service* service, @@ -445,7 +515,7 @@ grpcIMapsManagerService::Service::Service() { return service->getMapProcessingStatus(ctx, req, resp); }, this))); AddMethod(new ::grpc::internal::RpcServiceMethod( - grpcIMapsManagerService_method_names[11], + grpcIMapsManagerService_method_names[13], ::grpc::internal::RpcMethod::NORMAL_RPC, new ::grpc::internal::RpcMethodHandler< grpcIMapsManagerService::Service, ::grpcIMapsManager::getMapProcessingDataRequest, ::grpcIMapsManager::getMapProcessingDataResponse, ::grpc::protobuf::MessageLite, ::grpc::protobuf::MessageLite>( [](grpcIMapsManagerService::Service* service, @@ -522,6 +592,20 @@ ::grpc::Status grpcIMapsManagerService::Service::getMapInfo(::grpc::ServerContex return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); } +::grpc::Status grpcIMapsManagerService::Service::backupMap(::grpc::ServerContext* context, const ::grpcIMapsManager::backupMapRequest* request, ::grpcIMapsManager::backupMapResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + +::grpc::Status grpcIMapsManagerService::Service::restoreMap(::grpc::ServerContext* context, const ::grpcIMapsManager::restoreMapRequest* request, ::grpcIMapsManager::restoreMapResponse* response) { + (void) context; + (void) request; + (void) response; + return ::grpc::Status(::grpc::StatusCode::UNIMPLEMENTED, ""); +} + ::grpc::Status grpcIMapsManagerService::Service::requestMapProcessing(::grpc::ServerContext* context, const ::grpcIMapsManager::requestMapProcessingRequest* request, ::grpcIMapsManager::requestMapProcessingResponse* response) { (void) context; (void) request; diff --git a/gen/src/grpcIMapsManagerService.pb.cc b/gen/src/grpcIMapsManagerService.pb.cc index 3e615b7..121c2e8 100644 --- a/gen/src/grpcIMapsManagerService.pb.cc +++ b/gen/src/grpcIMapsManagerService.pb.cc @@ -69,6 +69,50 @@ struct setMapRequestRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 setMapRequestRequestDefaultTypeInternal _setMapRequestRequest_default_instance_; +inline constexpr restoreMapResponse::Impl_::Impl_( + ::_pbi::ConstantInitialized) noexcept + : xpcfgrpcreturnvalue_{0}, + _cached_size_{0} {} + +template +PROTOBUF_CONSTEXPR restoreMapResponse::restoreMapResponse(::_pbi::ConstantInitialized) + : _impl_(::_pbi::ConstantInitialized()) {} +struct restoreMapResponseDefaultTypeInternal { + PROTOBUF_CONSTEXPR restoreMapResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} + ~restoreMapResponseDefaultTypeInternal() {} + union { + restoreMapResponse _instance; + }; +}; + +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT + PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 restoreMapResponseDefaultTypeInternal _restoreMapResponse_default_instance_; + +inline constexpr restoreMapRequest::Impl_::Impl_( + ::_pbi::ConstantInitialized) noexcept + : mapuuid_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + compressedzipdata_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + grpcservercompressionformat_{0}, + _cached_size_{0} {} + +template +PROTOBUF_CONSTEXPR restoreMapRequest::restoreMapRequest(::_pbi::ConstantInitialized) + : _impl_(::_pbi::ConstantInitialized()) {} +struct restoreMapRequestDefaultTypeInternal { + PROTOBUF_CONSTEXPR restoreMapRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} + ~restoreMapRequestDefaultTypeInternal() {} + union { + restoreMapRequest _instance; + }; +}; + +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT + PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 restoreMapRequestDefaultTypeInternal _restoreMapRequest_default_instance_; + inline constexpr requestMapProcessingResponse::Impl_::Impl_( ::_pbi::ConstantInitialized) noexcept : xpcfgrpcreturnvalue_{0}, @@ -577,6 +621,53 @@ struct createMapRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 createMapRequestDefaultTypeInternal _createMapRequest_default_instance_; + +inline constexpr backupMapResponse::Impl_::Impl_( + ::_pbi::ConstantInitialized) noexcept + : compressedzipdata_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + xpcfgrpcreturnvalue_{0}, + _cached_size_{0} {} + +template +PROTOBUF_CONSTEXPR backupMapResponse::backupMapResponse(::_pbi::ConstantInitialized) + : _impl_(::_pbi::ConstantInitialized()) {} +struct backupMapResponseDefaultTypeInternal { + PROTOBUF_CONSTEXPR backupMapResponseDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} + ~backupMapResponseDefaultTypeInternal() {} + union { + backupMapResponse _instance; + }; +}; + +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT + PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 backupMapResponseDefaultTypeInternal _backupMapResponse_default_instance_; + +inline constexpr backupMapRequest::Impl_::Impl_( + ::_pbi::ConstantInitialized) noexcept + : mapuuid_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + compressedzipdata_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + grpcservercompressionformat_{0}, + _cached_size_{0} {} + +template +PROTOBUF_CONSTEXPR backupMapRequest::backupMapRequest(::_pbi::ConstantInitialized) + : _impl_(::_pbi::ConstantInitialized()) {} +struct backupMapRequestDefaultTypeInternal { + PROTOBUF_CONSTEXPR backupMapRequestDefaultTypeInternal() : _instance(::_pbi::ConstantInitialized{}) {} + ~backupMapRequestDefaultTypeInternal() {} + union { + backupMapRequest _instance; + }; +}; + +PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT + PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 backupMapRequestDefaultTypeInternal _backupMapRequest_default_instance_; } // namespace grpcIMapsManager static constexpr const ::_pb::EnumDescriptor** file_level_enum_descriptors_grpcIMapsManagerService_2eproto = nullptr; @@ -776,6 +867,47 @@ const ::uint32_t PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::getMapInfoResponse, _impl_.areimagesaved_), PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::getMapInfoResponse, _impl_.xpcfgrpcreturnvalue_), ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.grpcservercompressionformat_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.mapuuid_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.compressedzipdata_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.compressedzipdata_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.xpcfgrpcreturnvalue_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.grpcservercompressionformat_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.mapuuid_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.compressedzipdata_), + ~0u, // no _has_bits_ + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapResponse, _internal_metadata_), + ~0u, // no _extensions_ + ~0u, // no _oneof_case_ + ~0u, // no _weak_field_map_ + ~0u, // no _inlined_string_donated_ + ~0u, // no _split_ + ~0u, // no sizeof(Split) + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapResponse, _impl_.xpcfgrpcreturnvalue_), + ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::requestMapProcessingRequest, _internal_metadata_), ~0u, // no _extensions_ ~0u, // no _oneof_case_ @@ -866,12 +998,16 @@ static const ::_pbi::MigrationSchema {151, -1, -1, sizeof(::grpcIMapsManager::getPointCloudRequestResponse)}, {161, -1, -1, sizeof(::grpcIMapsManager::getMapInfoRequest)}, {176, -1, -1, sizeof(::grpcIMapsManager::getMapInfoResponse)}, - {190, -1, -1, sizeof(::grpcIMapsManager::requestMapProcessingRequest)}, - {202, -1, -1, sizeof(::grpcIMapsManager::requestMapProcessingResponse)}, - {211, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingStatusRequest)}, - {224, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingStatusResponse)}, - {236, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingDataRequest)}, - {248, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingDataResponse)}, + {190, -1, -1, sizeof(::grpcIMapsManager::backupMapRequest)}, + {201, -1, -1, sizeof(::grpcIMapsManager::backupMapResponse)}, + {211, -1, -1, sizeof(::grpcIMapsManager::restoreMapRequest)}, + {222, -1, -1, sizeof(::grpcIMapsManager::restoreMapResponse)}, + {231, -1, -1, sizeof(::grpcIMapsManager::requestMapProcessingRequest)}, + {243, -1, -1, sizeof(::grpcIMapsManager::requestMapProcessingResponse)}, + {252, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingStatusRequest)}, + {265, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingStatusResponse)}, + {277, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingDataRequest)}, + {289, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingDataResponse)}, }; static const ::_pb::Message* const file_default_instances[] = { &::grpcIMapsManager::_createMapRequest_default_instance_._instance, @@ -892,6 +1028,10 @@ static const ::_pb::Message* const file_default_instances[] = { &::grpcIMapsManager::_getPointCloudRequestResponse_default_instance_._instance, &::grpcIMapsManager::_getMapInfoRequest_default_instance_._instance, &::grpcIMapsManager::_getMapInfoResponse_default_instance_._instance, + &::grpcIMapsManager::_backupMapRequest_default_instance_._instance, + &::grpcIMapsManager::_backupMapResponse_default_instance_._instance, + &::grpcIMapsManager::_restoreMapRequest_default_instance_._instance, + &::grpcIMapsManager::_restoreMapResponse_default_instance_._instance, &::grpcIMapsManager::_requestMapProcessingRequest_default_instance_._instance, &::grpcIMapsManager::_requestMapProcessingResponse_default_instance_._instance, &::grpcIMapsManager::_getMapProcessingStatusRequest_default_instance_._instance, @@ -943,57 +1083,70 @@ const char descriptor_table_protodef_grpcIMapsManagerService_2eproto[] ABSL_ATTR "\t\022\034\n\024globalDescriptorType\030\002 \001(\021\022\026\n\016descr" "iptorType\030\003 \001(\021\022\020\n\010dataSize\030\004 \001(\r\022\025\n\rare" "ImageSaved\030\005 \001(\010\022\033\n\023xpcfGrpcReturnValue\030" - "\006 \001(\021\"\202\001\n\033requestMapProcessingRequest\022#\n" - "\033grpcServerCompressionFormat\030\001 \001(\005\022\017\n\007ma" - "pUUID\030\002 \001(\t\022\025\n\rresultMapUUID\030\003 \001(\t\022\026\n\016pr" - "ocessingType\030\004 \001(\021\";\n\034requestMapProcessi" - "ngResponse\022\033\n\023xpcfGrpcReturnValue\030\001 \001(\021\"" - "\225\001\n\035getMapProcessingStatusRequest\022#\n\033grp" - "cServerCompressionFormat\030\001 \001(\005\022\025\n\rresult" - "MapUUID\030\002 \001(\t\022\016\n\006status\030\003 \001(\021\022\026\n\016process" - "ingType\030\004 \001(\021\022\020\n\010progress\030\005 \001(\002\"w\n\036getMa" - "pProcessingStatusResponse\022\016\n\006status\030\001 \001(" - "\021\022\026\n\016processingType\030\002 \001(\021\022\020\n\010progress\030\003 " - "\001(\002\022\033\n\023xpcfGrpcReturnValue\030\004 \001(\021\"\204\001\n\033get" - "MapProcessingDataRequest\022#\n\033grpcServerCo" - "mpressionFormat\030\001 \001(\005\022\025\n\rresultMapUUID\030\002" - " \001(\t\022\022\n\npointCloud\030\003 \001(\014\022\025\n\rkeyframePose" - "s\030\004 \001(\014\"f\n\034getMapProcessingDataResponse\022" - "\022\n\npointCloud\030\001 \001(\014\022\025\n\rkeyframePoses\030\002 \001" - "(\014\022\033\n\023xpcfGrpcReturnValue\030\003 \001(\0212\227\n\n\027grpc" - "IMapsManagerService\022V\n\tcreateMap\022\".grpcI" - "MapsManager.createMapRequest\032#.grpcIMaps" - "Manager.createMapResponse\"\000\022V\n\tdeleteMap" - "\022\".grpcIMapsManager.deleteMapRequest\032#.g" - "rpcIMapsManager.deleteMapResponse\"\000\022Y\n\ng" - "etAllMaps\022#.grpcIMapsManager.getAllMapsR" - "equest\032$.grpcIMapsManager.getAllMapsResp" - "onse\"\000\022q\n\022increaseMapClients\022+.grpcIMaps" - "Manager.increaseMapClientsRequest\032,.grpc" - "IMapsManager.increaseMapClientsResponse\"" - "\000\022q\n\022decreaseMapClients\022+.grpcIMapsManag" - "er.decreaseMapClientsRequest\032,.grpcIMaps" - "Manager.decreaseMapClientsResponse\"\000\022b\n\r" - "getMapRequest\022&.grpcIMapsManager.getMapR" - "equestRequest\032\'.grpcIMapsManager.getMapR" - "equestResponse\"\000\022b\n\rsetMapRequest\022&.grpc" - "IMapsManager.setMapRequestRequest\032\'.grpc" - "IMapsManager.setMapRequestResponse\"\000\022w\n\024" - "getPointCloudRequest\022-.grpcIMapsManager." - "getPointCloudRequestRequest\032..grpcIMapsM" - "anager.getPointCloudRequestResponse\"\000\022Y\n" - "\ngetMapInfo\022#.grpcIMapsManager.getMapInf" - "oRequest\032$.grpcIMapsManager.getMapInfoRe" - "sponse\"\000\022w\n\024requestMapProcessing\022-.grpcI" - "MapsManager.requestMapProcessingRequest\032" - "..grpcIMapsManager.requestMapProcessingR" - "esponse\"\000\022}\n\026getMapProcessingStatus\022/.gr" - "pcIMapsManager.getMapProcessingStatusReq" - "uest\0320.grpcIMapsManager.getMapProcessing" - "StatusResponse\"\000\022w\n\024getMapProcessingData" - "\022-.grpcIMapsManager.getMapProcessingData" - "Request\032..grpcIMapsManager.getMapProcess" - "ingDataResponse\"\000b\006proto3" + "\006 \001(\021\"c\n\020backupMapRequest\022#\n\033grpcServerC" + "ompressionFormat\030\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t\022" + "\031\n\021compressedZipData\030\003 \001(\014\"K\n\021backupMapR" + "esponse\022\031\n\021compressedZipData\030\001 \001(\014\022\033\n\023xp" + "cfGrpcReturnValue\030\002 \001(\021\"d\n\021restoreMapReq" + "uest\022#\n\033grpcServerCompressionFormat\030\001 \001(" + "\005\022\017\n\007mapUUID\030\002 \001(\t\022\031\n\021compressedZipData\030" + "\003 \001(\014\"1\n\022restoreMapResponse\022\033\n\023xpcfGrpcR" + "eturnValue\030\001 \001(\021\"\202\001\n\033requestMapProcessin" + "gRequest\022#\n\033grpcServerCompressionFormat\030" + "\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t\022\025\n\rresultMapUUID\030" + "\003 \001(\t\022\026\n\016processingType\030\004 \001(\021\";\n\034request" + "MapProcessingResponse\022\033\n\023xpcfGrpcReturnV" + "alue\030\001 \001(\021\"\225\001\n\035getMapProcessingStatusReq" + "uest\022#\n\033grpcServerCompressionFormat\030\001 \001(" + "\005\022\025\n\rresultMapUUID\030\002 \001(\t\022\016\n\006status\030\003 \001(\021" + "\022\026\n\016processingType\030\004 \001(\021\022\020\n\010progress\030\005 \001" + "(\002\"w\n\036getMapProcessingStatusResponse\022\016\n\006" + "status\030\001 \001(\021\022\026\n\016processingType\030\002 \001(\021\022\020\n\010" + "progress\030\003 \001(\002\022\033\n\023xpcfGrpcReturnValue\030\004 " + "\001(\021\"\204\001\n\033getMapProcessingDataRequest\022#\n\033g" + "rpcServerCompressionFormat\030\001 \001(\005\022\025\n\rresu" + "ltMapUUID\030\002 \001(\t\022\022\n\npointCloud\030\003 \001(\014\022\025\n\rk" + "eyframePoses\030\004 \001(\014\"f\n\034getMapProcessingDa" + "taResponse\022\022\n\npointCloud\030\001 \001(\014\022\025\n\rkeyfra" + "mePoses\030\002 \001(\014\022\033\n\023xpcfGrpcReturnValue\030\003 \001" + "(\0212\312\013\n\027grpcIMapsManagerService\022V\n\tcreate" + "Map\022\".grpcIMapsManager.createMapRequest\032" + "#.grpcIMapsManager.createMapResponse\"\000\022V" + "\n\tdeleteMap\022\".grpcIMapsManager.deleteMap" + "Request\032#.grpcIMapsManager.deleteMapResp" + "onse\"\000\022Y\n\ngetAllMaps\022#.grpcIMapsManager." + "getAllMapsRequest\032$.grpcIMapsManager.get" + "AllMapsResponse\"\000\022q\n\022increaseMapClients\022" + "+.grpcIMapsManager.increaseMapClientsReq" + "uest\032,.grpcIMapsManager.increaseMapClien" + "tsResponse\"\000\022q\n\022decreaseMapClients\022+.grp" + "cIMapsManager.decreaseMapClientsRequest\032" + ",.grpcIMapsManager.decreaseMapClientsRes" + "ponse\"\000\022b\n\rgetMapRequest\022&.grpcIMapsMana" + "ger.getMapRequestRequest\032\'.grpcIMapsMana" + "ger.getMapRequestResponse\"\000\022b\n\rsetMapReq" + "uest\022&.grpcIMapsManager.setMapRequestReq" + "uest\032\'.grpcIMapsManager.setMapRequestRes" + "ponse\"\000\022w\n\024getPointCloudRequest\022-.grpcIM" + "apsManager.getPointCloudRequestRequest\032." + ".grpcIMapsManager.getPointCloudRequestRe" + "sponse\"\000\022Y\n\ngetMapInfo\022#.grpcIMapsManage" + "r.getMapInfoRequest\032$.grpcIMapsManager.g" + "etMapInfoResponse\"\000\022V\n\tbackupMap\022\".grpcI" + "MapsManager.backupMapRequest\032#.grpcIMaps" + "Manager.backupMapResponse\"\000\022Y\n\nrestoreMa" + "p\022#.grpcIMapsManager.restoreMapRequest\032$" + ".grpcIMapsManager.restoreMapResponse\"\000\022w" + "\n\024requestMapProcessing\022-.grpcIMapsManage" + "r.requestMapProcessingRequest\032..grpcIMap" + "sManager.requestMapProcessingResponse\"\000\022" + "}\n\026getMapProcessingStatus\022/.grpcIMapsMan" + "ager.getMapProcessingStatusRequest\0320.grp" + "cIMapsManager.getMapProcessingStatusResp" + "onse\"\000\022w\n\024getMapProcessingData\022-.grpcIMa" + "psManager.getMapProcessingDataRequest\032.." + "grpcIMapsManager.getMapProcessingDataRes" + "ponse\"\000b\006proto3" }; static const ::_pbi::DescriptorTable* const descriptor_table_grpcIMapsManagerService_2eproto_deps[1] = { @@ -1003,13 +1156,13 @@ static ::absl::once_flag descriptor_table_grpcIMapsManagerService_2eproto_once; PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_grpcIMapsManagerService_2eproto = { false, false, - 3705, + 4215, descriptor_table_protodef_grpcIMapsManagerService_2eproto, "grpcIMapsManagerService.proto", &descriptor_table_grpcIMapsManagerService_2eproto_once, descriptor_table_grpcIMapsManagerService_2eproto_deps, 1, - 24, + 28, schemas, file_default_instances, TableStruct_grpcIMapsManagerService_2eproto::offsets, @@ -5145,6 +5298,884 @@ ::google::protobuf::Metadata getMapInfoResponse::GetMetadata() const { } // =================================================================== +class backupMapRequest::_Internal { + public: +}; + +backupMapRequest::backupMapRequest(::google::protobuf::Arena* arena) + : ::google::protobuf::Message(arena) { + SharedCtor(arena); + // @@protoc_insertion_point(arena_constructor:grpcIMapsManager.backupMapRequest) +} +inline PROTOBUF_NDEBUG_INLINE backupMapRequest::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, + const Impl_& from, const ::grpcIMapsManager::backupMapRequest& from_msg) + : mapuuid_(arena, from.mapuuid_), + compressedzipdata_(arena, from.compressedzipdata_), + _cached_size_{0} {} + +backupMapRequest::backupMapRequest( + ::google::protobuf::Arena* arena, + const backupMapRequest& from) + : ::google::protobuf::Message(arena) { + backupMapRequest* const _this = this; + (void)_this; + _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( + from._internal_metadata_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); + _impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; + + // @@protoc_insertion_point(copy_constructor:grpcIMapsManager.backupMapRequest) +} +inline PROTOBUF_NDEBUG_INLINE backupMapRequest::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena) + : mapuuid_(arena), + compressedzipdata_(arena), + _cached_size_{0} {} + +inline void backupMapRequest::SharedCtor(::_pb::Arena* arena) { + new (&_impl_) Impl_(internal_visibility(), arena); + _impl_.grpcservercompressionformat_ = {}; +} +backupMapRequest::~backupMapRequest() { + // @@protoc_insertion_point(destructor:grpcIMapsManager.backupMapRequest) + _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); + SharedDtor(); +} +inline void backupMapRequest::SharedDtor() { + ABSL_DCHECK(GetArena() == nullptr); + _impl_.mapuuid_.Destroy(); + _impl_.compressedzipdata_.Destroy(); + _impl_.~Impl_(); +} + +const ::google::protobuf::MessageLite::ClassData* +backupMapRequest::GetClassData() const { + PROTOBUF_CONSTINIT static const ::google::protobuf::MessageLite:: + ClassDataFull _data_ = { + { + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_._cached_size_), + false, + }, + &backupMapRequest::MergeImpl, + &backupMapRequest::kDescriptorMethods, + &descriptor_table_grpcIMapsManagerService_2eproto, + nullptr, // tracker + }; + ::google::protobuf::internal::PrefetchToLocalCache(&_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_data_.tc_table); + return _data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<2, 3, 0, 49, 2> backupMapRequest::_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 + &_backupMapRequest_default_instance_._instance, + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::grpcIMapsManager::backupMapRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + // int32 grpcServerCompressionFormat = 1; + {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(backupMapRequest, _impl_.grpcservercompressionformat_), 63>(), + {8, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.grpcservercompressionformat_)}}, + // string mapUUID = 2; + {::_pbi::TcParser::FastUS1, + {18, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_)}}, + // bytes compressedZipData = 3; + {::_pbi::TcParser::FastBS1, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressedzipdata_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // int32 grpcServerCompressionFormat = 1; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.grpcservercompressionformat_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, + // string mapUUID = 2; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, + // bytes compressedZipData = 3; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressedzipdata_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + }}, + // no aux_entries + {{ + "\41\0\7\0\0\0\0\0" + "grpcIMapsManager.backupMapRequest" + "mapUUID" + }}, +}; + +PROTOBUF_NOINLINE void backupMapRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:grpcIMapsManager.backupMapRequest) + ::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_.mapuuid_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); + _impl_.grpcservercompressionformat_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} + +::uint8_t* backupMapRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:grpcIMapsManager.backupMapRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int32 grpcServerCompressionFormat = 1; + if (this->_internal_grpcservercompressionformat() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<1>( + stream, this->_internal_grpcservercompressionformat(), target); + } + + // string mapUUID = 2; + if (!this->_internal_mapuuid().empty()) { + const std::string& _s = this->_internal_mapuuid(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "grpcIMapsManager.backupMapRequest.mapUUID"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // bytes compressedZipData = 3; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); + target = stream->WriteBytesMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:grpcIMapsManager.backupMapRequest) + return target; +} + +::size_t backupMapRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:grpcIMapsManager.backupMapRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(reinterpret_cast(this)); + // string mapUUID = 2; + if (!this->_internal_mapuuid().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this->_internal_mapuuid()); + } + + // bytes compressedZipData = 3; + if (!this->_internal_compressedzipdata().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_compressedzipdata()); + } + + // int32 grpcServerCompressionFormat = 1; + if (this->_internal_grpcservercompressionformat() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this->_internal_grpcservercompressionformat()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + + +void backupMapRequest::MergeImpl(::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:grpcIMapsManager.backupMapRequest) + ABSL_DCHECK_NE(&from, _this); + ::uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + if (!from._internal_mapuuid().empty()) { + _this->_internal_set_mapuuid(from._internal_mapuuid()); + } + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); + } + if (from._internal_grpcservercompressionformat() != 0) { + _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; + } + _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +} + +void backupMapRequest::CopyFrom(const backupMapRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:grpcIMapsManager.backupMapRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + + +void backupMapRequest::InternalSwap(backupMapRequest* 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_.mapuuid_, &other->_impl_.mapuuid_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); + swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); +} + +::google::protobuf::Metadata backupMapRequest::GetMetadata() const { + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); +} +// =================================================================== + +class backupMapResponse::_Internal { + public: +}; + +backupMapResponse::backupMapResponse(::google::protobuf::Arena* arena) + : ::google::protobuf::Message(arena) { + SharedCtor(arena); + // @@protoc_insertion_point(arena_constructor:grpcIMapsManager.backupMapResponse) +} +inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, + const Impl_& from, const ::grpcIMapsManager::backupMapResponse& from_msg) + : compressedzipdata_(arena, from.compressedzipdata_), + _cached_size_{0} {} + +backupMapResponse::backupMapResponse( + ::google::protobuf::Arena* arena, + const backupMapResponse& from) + : ::google::protobuf::Message(arena) { + backupMapResponse* const _this = this; + (void)_this; + _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( + from._internal_metadata_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); + _impl_.xpcfgrpcreturnvalue_ = from._impl_.xpcfgrpcreturnvalue_; + + // @@protoc_insertion_point(copy_constructor:grpcIMapsManager.backupMapResponse) +} +inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena) + : compressedzipdata_(arena), + _cached_size_{0} {} + +inline void backupMapResponse::SharedCtor(::_pb::Arena* arena) { + new (&_impl_) Impl_(internal_visibility(), arena); + _impl_.xpcfgrpcreturnvalue_ = {}; +} +backupMapResponse::~backupMapResponse() { + // @@protoc_insertion_point(destructor:grpcIMapsManager.backupMapResponse) + _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); + SharedDtor(); +} +inline void backupMapResponse::SharedDtor() { + ABSL_DCHECK(GetArena() == nullptr); + _impl_.compressedzipdata_.Destroy(); + _impl_.~Impl_(); +} + +const ::google::protobuf::MessageLite::ClassData* +backupMapResponse::GetClassData() const { + PROTOBUF_CONSTINIT static const ::google::protobuf::MessageLite:: + ClassDataFull _data_ = { + { + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_._cached_size_), + false, + }, + &backupMapResponse::MergeImpl, + &backupMapResponse::kDescriptorMethods, + &descriptor_table_grpcIMapsManagerService_2eproto, + nullptr, // tracker + }; + ::google::protobuf::internal::PrefetchToLocalCache(&_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_data_.tc_table); + return _data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<1, 2, 0, 0, 2> backupMapResponse::_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 + &_backupMapResponse_default_instance_._instance, + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::grpcIMapsManager::backupMapResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + // sint32 xpcfGrpcReturnValue = 2; + {::_pbi::TcParser::FastZ32S1, + {16, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, + // bytes compressedZipData = 1; + {::_pbi::TcParser::FastBS1, + {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressedzipdata_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // bytes compressedZipData = 1; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressedzipdata_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // sint32 xpcfGrpcReturnValue = 2; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kSInt32)}, + }}, + // no aux_entries + {{ + }}, +}; + +PROTOBUF_NOINLINE void backupMapResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:grpcIMapsManager.backupMapResponse) + ::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_.compressedzipdata_.ClearToEmpty(); + _impl_.xpcfgrpcreturnvalue_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} + +::uint8_t* backupMapResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:grpcIMapsManager.backupMapResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // bytes compressedZipData = 1; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); + target = stream->WriteBytesMaybeAliased(1, _s, target); + } + + // sint32 xpcfGrpcReturnValue = 2; + if (this->_internal_xpcfgrpcreturnvalue() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 2, this->_internal_xpcfgrpcreturnvalue(), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:grpcIMapsManager.backupMapResponse) + return target; +} + +::size_t backupMapResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:grpcIMapsManager.backupMapResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(reinterpret_cast(this)); + // bytes compressedZipData = 1; + if (!this->_internal_compressedzipdata().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_compressedzipdata()); + } + + // sint32 xpcfGrpcReturnValue = 2; + if (this->_internal_xpcfgrpcreturnvalue() != 0) { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this->_internal_xpcfgrpcreturnvalue()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + + +void backupMapResponse::MergeImpl(::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:grpcIMapsManager.backupMapResponse) + ABSL_DCHECK_NE(&from, _this); + ::uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); + } + if (from._internal_xpcfgrpcreturnvalue() != 0) { + _this->_impl_.xpcfgrpcreturnvalue_ = from._impl_.xpcfgrpcreturnvalue_; + } + _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +} + +void backupMapResponse::CopyFrom(const backupMapResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:grpcIMapsManager.backupMapResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + + +void backupMapResponse::InternalSwap(backupMapResponse* 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_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); + swap(_impl_.xpcfgrpcreturnvalue_, other->_impl_.xpcfgrpcreturnvalue_); +} + +::google::protobuf::Metadata backupMapResponse::GetMetadata() const { + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); +} +// =================================================================== + +class restoreMapRequest::_Internal { + public: +}; + +restoreMapRequest::restoreMapRequest(::google::protobuf::Arena* arena) + : ::google::protobuf::Message(arena) { + SharedCtor(arena); + // @@protoc_insertion_point(arena_constructor:grpcIMapsManager.restoreMapRequest) +} +inline PROTOBUF_NDEBUG_INLINE restoreMapRequest::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, + const Impl_& from, const ::grpcIMapsManager::restoreMapRequest& from_msg) + : mapuuid_(arena, from.mapuuid_), + compressedzipdata_(arena, from.compressedzipdata_), + _cached_size_{0} {} + +restoreMapRequest::restoreMapRequest( + ::google::protobuf::Arena* arena, + const restoreMapRequest& from) + : ::google::protobuf::Message(arena) { + restoreMapRequest* const _this = this; + (void)_this; + _internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>( + from._internal_metadata_); + new (&_impl_) Impl_(internal_visibility(), arena, from._impl_, from); + _impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; + + // @@protoc_insertion_point(copy_constructor:grpcIMapsManager.restoreMapRequest) +} +inline PROTOBUF_NDEBUG_INLINE restoreMapRequest::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena) + : mapuuid_(arena), + compressedzipdata_(arena), + _cached_size_{0} {} + +inline void restoreMapRequest::SharedCtor(::_pb::Arena* arena) { + new (&_impl_) Impl_(internal_visibility(), arena); + _impl_.grpcservercompressionformat_ = {}; +} +restoreMapRequest::~restoreMapRequest() { + // @@protoc_insertion_point(destructor:grpcIMapsManager.restoreMapRequest) + _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); + SharedDtor(); +} +inline void restoreMapRequest::SharedDtor() { + ABSL_DCHECK(GetArena() == nullptr); + _impl_.mapuuid_.Destroy(); + _impl_.compressedzipdata_.Destroy(); + _impl_.~Impl_(); +} + +const ::google::protobuf::MessageLite::ClassData* +restoreMapRequest::GetClassData() const { + PROTOBUF_CONSTINIT static const ::google::protobuf::MessageLite:: + ClassDataFull _data_ = { + { + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_._cached_size_), + false, + }, + &restoreMapRequest::MergeImpl, + &restoreMapRequest::kDescriptorMethods, + &descriptor_table_grpcIMapsManagerService_2eproto, + nullptr, // tracker + }; + ::google::protobuf::internal::PrefetchToLocalCache(&_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_data_.tc_table); + return _data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<2, 3, 0, 50, 2> restoreMapRequest::_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 + &_restoreMapRequest_default_instance_._instance, + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::grpcIMapsManager::restoreMapRequest>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + {::_pbi::TcParser::MiniParse, {}}, + // int32 grpcServerCompressionFormat = 1; + {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(restoreMapRequest, _impl_.grpcservercompressionformat_), 63>(), + {8, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.grpcservercompressionformat_)}}, + // string mapUUID = 2; + {::_pbi::TcParser::FastUS1, + {18, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_)}}, + // bytes compressedZipData = 3; + {::_pbi::TcParser::FastBS1, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressedzipdata_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // int32 grpcServerCompressionFormat = 1; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.grpcservercompressionformat_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kInt32)}, + // string mapUUID = 2; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, + // bytes compressedZipData = 3; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressedzipdata_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + }}, + // no aux_entries + {{ + "\42\0\7\0\0\0\0\0" + "grpcIMapsManager.restoreMapRequest" + "mapUUID" + }}, +}; + +PROTOBUF_NOINLINE void restoreMapRequest::Clear() { +// @@protoc_insertion_point(message_clear_start:grpcIMapsManager.restoreMapRequest) + ::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_.mapuuid_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); + _impl_.grpcservercompressionformat_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} + +::uint8_t* restoreMapRequest::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:grpcIMapsManager.restoreMapRequest) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // int32 grpcServerCompressionFormat = 1; + if (this->_internal_grpcservercompressionformat() != 0) { + target = ::google::protobuf::internal::WireFormatLite:: + WriteInt32ToArrayWithField<1>( + stream, this->_internal_grpcservercompressionformat(), target); + } + + // string mapUUID = 2; + if (!this->_internal_mapuuid().empty()) { + const std::string& _s = this->_internal_mapuuid(); + ::google::protobuf::internal::WireFormatLite::VerifyUtf8String( + _s.data(), static_cast(_s.length()), ::google::protobuf::internal::WireFormatLite::SERIALIZE, "grpcIMapsManager.restoreMapRequest.mapUUID"); + target = stream->WriteStringMaybeAliased(2, _s, target); + } + + // bytes compressedZipData = 3; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); + target = stream->WriteBytesMaybeAliased(3, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:grpcIMapsManager.restoreMapRequest) + return target; +} + +::size_t restoreMapRequest::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:grpcIMapsManager.restoreMapRequest) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + ::_pbi::Prefetch5LinesFrom7Lines(reinterpret_cast(this)); + // string mapUUID = 2; + if (!this->_internal_mapuuid().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::StringSize( + this->_internal_mapuuid()); + } + + // bytes compressedZipData = 3; + if (!this->_internal_compressedzipdata().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_compressedzipdata()); + } + + // int32 grpcServerCompressionFormat = 1; + if (this->_internal_grpcservercompressionformat() != 0) { + total_size += ::_pbi::WireFormatLite::Int32SizePlusOne( + this->_internal_grpcservercompressionformat()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + + +void restoreMapRequest::MergeImpl(::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:grpcIMapsManager.restoreMapRequest) + ABSL_DCHECK_NE(&from, _this); + ::uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + if (!from._internal_mapuuid().empty()) { + _this->_internal_set_mapuuid(from._internal_mapuuid()); + } + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); + } + if (from._internal_grpcservercompressionformat() != 0) { + _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; + } + _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +} + +void restoreMapRequest::CopyFrom(const restoreMapRequest& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:grpcIMapsManager.restoreMapRequest) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + + +void restoreMapRequest::InternalSwap(restoreMapRequest* 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_.mapuuid_, &other->_impl_.mapuuid_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); + swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); +} + +::google::protobuf::Metadata restoreMapRequest::GetMetadata() const { + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); +} +// =================================================================== + +class restoreMapResponse::_Internal { + public: +}; + +restoreMapResponse::restoreMapResponse(::google::protobuf::Arena* arena) + : ::google::protobuf::Message(arena) { + SharedCtor(arena); + // @@protoc_insertion_point(arena_constructor:grpcIMapsManager.restoreMapResponse) +} +restoreMapResponse::restoreMapResponse( + ::google::protobuf::Arena* arena, const restoreMapResponse& from) + : restoreMapResponse(arena) { + MergeFrom(from); +} +inline PROTOBUF_NDEBUG_INLINE restoreMapResponse::Impl_::Impl_( + ::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena) + : _cached_size_{0} {} + +inline void restoreMapResponse::SharedCtor(::_pb::Arena* arena) { + new (&_impl_) Impl_(internal_visibility(), arena); + _impl_.xpcfgrpcreturnvalue_ = {}; +} +restoreMapResponse::~restoreMapResponse() { + // @@protoc_insertion_point(destructor:grpcIMapsManager.restoreMapResponse) + _internal_metadata_.Delete<::google::protobuf::UnknownFieldSet>(); + SharedDtor(); +} +inline void restoreMapResponse::SharedDtor() { + ABSL_DCHECK(GetArena() == nullptr); + _impl_.~Impl_(); +} + +const ::google::protobuf::MessageLite::ClassData* +restoreMapResponse::GetClassData() const { + PROTOBUF_CONSTINIT static const ::google::protobuf::MessageLite:: + ClassDataFull _data_ = { + { + &_table_.header, + nullptr, // OnDemandRegisterArenaDtor + nullptr, // IsInitialized + PROTOBUF_FIELD_OFFSET(restoreMapResponse, _impl_._cached_size_), + false, + }, + &restoreMapResponse::MergeImpl, + &restoreMapResponse::kDescriptorMethods, + &descriptor_table_grpcIMapsManagerService_2eproto, + nullptr, // tracker + }; + ::google::protobuf::internal::PrefetchToLocalCache(&_data_); + ::google::protobuf::internal::PrefetchToLocalCache(_data_.tc_table); + return _data_.base(); +} +PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 +const ::_pbi::TcParseTable<0, 1, 0, 0, 2> restoreMapResponse::_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 + &_restoreMapResponse_default_instance_._instance, + nullptr, // post_loop_handler + ::_pbi::TcParser::GenericFallback, // fallback + #ifdef PROTOBUF_PREFETCH_PARSE_TABLE + ::_pbi::TcParser::GetTable<::grpcIMapsManager::restoreMapResponse>(), // to_prefetch + #endif // PROTOBUF_PREFETCH_PARSE_TABLE + }, {{ + // sint32 xpcfGrpcReturnValue = 1; + {::_pbi::TcParser::FastZ32S1, + {8, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // sint32 xpcfGrpcReturnValue = 1; + {PROTOBUF_FIELD_OFFSET(restoreMapResponse, _impl_.xpcfgrpcreturnvalue_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kSInt32)}, + }}, + // no aux_entries + {{ + }}, +}; + +PROTOBUF_NOINLINE void restoreMapResponse::Clear() { +// @@protoc_insertion_point(message_clear_start:grpcIMapsManager.restoreMapResponse) + ::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_.xpcfgrpcreturnvalue_ = 0; + _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); +} + +::uint8_t* restoreMapResponse::_InternalSerialize( + ::uint8_t* target, + ::google::protobuf::io::EpsCopyOutputStream* stream) const { + // @@protoc_insertion_point(serialize_to_array_start:grpcIMapsManager.restoreMapResponse) + ::uint32_t cached_has_bits = 0; + (void)cached_has_bits; + + // sint32 xpcfGrpcReturnValue = 1; + if (this->_internal_xpcfgrpcreturnvalue() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 1, this->_internal_xpcfgrpcreturnvalue(), target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end:grpcIMapsManager.restoreMapResponse) + return target; +} + +::size_t restoreMapResponse::ByteSizeLong() const { +// @@protoc_insertion_point(message_byte_size_start:grpcIMapsManager.restoreMapResponse) + ::size_t total_size = 0; + + ::uint32_t cached_has_bits = 0; + // Prevent compiler warnings about cached_has_bits being unused + (void) cached_has_bits; + + // sint32 xpcfGrpcReturnValue = 1; + if (this->_internal_xpcfgrpcreturnvalue() != 0) { + total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( + this->_internal_xpcfgrpcreturnvalue()); + } + + return MaybeComputeUnknownFieldsSize(total_size, &_impl_._cached_size_); +} + + +void restoreMapResponse::MergeImpl(::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:grpcIMapsManager.restoreMapResponse) + ABSL_DCHECK_NE(&from, _this); + ::uint32_t cached_has_bits = 0; + (void) cached_has_bits; + + if (from._internal_xpcfgrpcreturnvalue() != 0) { + _this->_impl_.xpcfgrpcreturnvalue_ = from._impl_.xpcfgrpcreturnvalue_; + } + _this->_internal_metadata_.MergeFrom<::google::protobuf::UnknownFieldSet>(from._internal_metadata_); +} + +void restoreMapResponse::CopyFrom(const restoreMapResponse& from) { +// @@protoc_insertion_point(class_specific_copy_from_start:grpcIMapsManager.restoreMapResponse) + if (&from == this) return; + Clear(); + MergeFrom(from); +} + + +void restoreMapResponse::InternalSwap(restoreMapResponse* PROTOBUF_RESTRICT other) { + using std::swap; + _internal_metadata_.InternalSwap(&other->_internal_metadata_); + swap(_impl_.xpcfgrpcreturnvalue_, other->_impl_.xpcfgrpcreturnvalue_); +} + +::google::protobuf::Metadata restoreMapResponse::GetMetadata() const { + return ::google::protobuf::Message::GetMetadataImpl(GetClassData()->full()); +} +// =================================================================== + class requestMapProcessingRequest::_Internal { public: }; diff --git a/gen/xpcfGrpcRemotingSolARFrameworkClient_properties.xml b/gen/xpcfGrpcRemotingSolARFrameworkClient_properties.xml index dc15853..f526477 100644 --- a/gen/xpcfGrpcRemotingSolARFrameworkClient_properties.xml +++ b/gen/xpcfGrpcRemotingSolARFrameworkClient_properties.xml @@ -148,6 +148,8 @@ method|setMapRequest|none|none method|getPointCloudRequest|none|none method|getMapInfo|none|none + method|backupMap|none|none + method|restoreMap|none|none method|requestMapProcessing|none|none method|getMapProcessingStatus|none|none method|getMapProcessingData|none|none @@ -165,6 +167,8 @@ method|setMapRequest|none|none method|getPointCloudRequest|none|none method|getMapInfo|none|none + method|backupMap|none|none + method|restoreMap|none|none method|requestMapProcessing|none|none method|getMapProcessingStatus|none|none method|getMapProcessingData|none|none diff --git a/gen/xpcfGrpcRemotingSolARFrameworkServer_properties.xml b/gen/xpcfGrpcRemotingSolARFrameworkServer_properties.xml index e3c9fd4..2885e65 100644 --- a/gen/xpcfGrpcRemotingSolARFrameworkServer_properties.xml +++ b/gen/xpcfGrpcRemotingSolARFrameworkServer_properties.xml @@ -148,6 +148,8 @@ method|setMapRequest|none|0 method|getPointCloudRequest|none|0 method|getMapInfo|none|0 + method|backupMap|none|0 + method|restoreMap|none|0 method|requestMapProcessing|none|0 method|getMapProcessingStatus|none|0 method|getMapProcessingData|none|0 @@ -165,6 +167,8 @@ method|setMapRequest|none|0 method|getPointCloudRequest|none|0 method|getMapInfo|none|0 + method|backupMap|none|0 + method|restoreMap|none|0 method|requestMapProcessing|none|0 method|getMapProcessingStatus|none|0 method|getMapProcessingData|none|0