From 1826cfef0e4d8f9bbcbc7b946ac38f7a7eedbc10 Mon Sep 17 00:00:00 2001 From: ccutullic Date: Tue, 5 May 2026 15:52:36 +0200 Subject: [PATCH 1/3] feat: regenerate gRPC stubs to add backup/restore map functions --- gen/interfaces/IFrontEnd_grpcProxy.h | 2 + gen/interfaces/IFrontEnd_grpcServer.h | 2 + gen/interfaces/IMapsManager_grpcProxy.h | 2 + gen/interfaces/IMapsManager_grpcServer.h | 2 + gen/interfaces/grpcIFrontEndService.grpc.pb.h | 376 +- gen/interfaces/grpcIFrontEndService.pb.h | 10516 ++++++++++------ .../grpcIMapsManagerService.grpc.pb.h | 376 +- gen/interfaces/grpcIMapsManagerService.pb.h | 6450 +++++++--- gen/proto/grpcIFrontEndService.proto | 47 + gen/proto/grpcIMapsManagerService.proto | 45 + gen/src/IFrontEnd_grpcProxy.cpp | 85 +- gen/src/IFrontEnd_grpcServer.cpp | 71 +- gen/src/IMapsManager_grpcProxy.cpp | 83 +- gen/src/IMapsManager_grpcServer.cpp | 69 +- gen/src/grpcIFrontEndService.grpc.pb.cc | 94 +- gen/src/grpcIFrontEndService.pb.cc | 1857 ++- gen/src/grpcIMapsManagerService.grpc.pb.cc | 94 +- gen/src/grpcIMapsManagerService.pb.cc | 1709 ++- ...emotingSolARFrameworkClient_properties.xml | 4 + ...emotingSolARFrameworkServer_properties.xml | 4 + 20 files changed, 15603 insertions(+), 6285 deletions(-) diff --git a/gen/interfaces/IFrontEnd_grpcProxy.h b/gen/interfaces/IFrontEnd_grpcProxy.h index e5ade12..28e21c2 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& map_information, std::vector& cameraParameters, std::vector& coordinate, std::vector& covisibility_graph, std::vector& identification, std::vector& keyframes, std::vector& pointcloud) const override; + SolAR::FrameworkReturnCode restoreMap(std::string const& accessToken, std::string const& mapUUID, std::vector const& map_information, std::vector const& cameraParameters, std::vector const& coordinate, std::vector const& covisibility_graph, std::vector const& identification, std::vector const& keyframes, std::vector const& pointcloud) 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..a4252b0 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& map_information, std::vector& cameraParameters, std::vector& coordinate, std::vector& covisibility_graph, std::vector& identification, std::vector& keyframes, std::vector& pointcloud) const override; + SolAR::FrameworkReturnCode restoreMap(std::string const& mapUUID, std::vector const& map_information, std::vector const& cameraParameters, std::vector const& coordinate, std::vector const& covisibility_graph, std::vector const& identification, std::vector const& keyframes, std::vector const& pointcloud) 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..68542c7 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,14 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message enum : int { kAccessTokenFieldNumber = 2, kMapUUIDFieldNumber = 3, - kResultMapUUIDFieldNumber = 4, + kMapInformationFieldNumber = 4, + kCameraParametersFieldNumber = 5, + kCoordinateFieldNumber = 6, + kCovisibilityGraphFieldNumber = 7, + kIdentificationFieldNumber = 8, + kKeyframesFieldNumber = 9, + kPointcloudFieldNumber = 10, kGrpcServerCompressionFormatFieldNumber = 1, - kProcessingTypeFieldNumber = 5, }; // string accessToken = 2; void clear_accesstoken() ; @@ -3319,20 +3336,116 @@ 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 map_information = 4; + void clear_map_information() ; + const std::string& map_information() 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_map_information(Arg_&& arg, Args_... args); + std::string* mutable_map_information(); + PROTOBUF_NODISCARD std::string* release_map_information(); + void set_allocated_map_information(std::string* value); private: - const std::string& _internal_resultmapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_resultmapuuid( + const std::string& _internal_map_information() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( const std::string& value); - std::string* _internal_mutable_resultmapuuid(); + std::string* _internal_mutable_map_information(); + + public: + // bytes cameraParameters = 5; + void clear_cameraparameters() ; + const std::string& cameraparameters() const; + template + void set_cameraparameters(Arg_&& arg, Args_... args); + std::string* mutable_cameraparameters(); + PROTOBUF_NODISCARD std::string* release_cameraparameters(); + void set_allocated_cameraparameters(std::string* value); + + private: + const std::string& _internal_cameraparameters() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( + const std::string& value); + std::string* _internal_mutable_cameraparameters(); + + public: + // bytes coordinate = 6; + void clear_coordinate() ; + const std::string& coordinate() const; + template + void set_coordinate(Arg_&& arg, Args_... args); + std::string* mutable_coordinate(); + PROTOBUF_NODISCARD std::string* release_coordinate(); + void set_allocated_coordinate(std::string* value); + + private: + const std::string& _internal_coordinate() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( + const std::string& value); + std::string* _internal_mutable_coordinate(); + + public: + // bytes covisibility_graph = 7; + void clear_covisibility_graph() ; + const std::string& covisibility_graph() const; + template + void set_covisibility_graph(Arg_&& arg, Args_... args); + std::string* mutable_covisibility_graph(); + PROTOBUF_NODISCARD std::string* release_covisibility_graph(); + void set_allocated_covisibility_graph(std::string* value); + + private: + const std::string& _internal_covisibility_graph() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( + const std::string& value); + std::string* _internal_mutable_covisibility_graph(); + + public: + // bytes identification = 8; + void clear_identification() ; + const std::string& identification() const; + template + void set_identification(Arg_&& arg, Args_... args); + std::string* mutable_identification(); + PROTOBUF_NODISCARD std::string* release_identification(); + void set_allocated_identification(std::string* value); + + private: + const std::string& _internal_identification() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( + const std::string& value); + std::string* _internal_mutable_identification(); + + public: + // bytes keyframes = 9; + void clear_keyframes() ; + const std::string& keyframes() const; + template + void set_keyframes(Arg_&& arg, Args_... args); + std::string* mutable_keyframes(); + PROTOBUF_NODISCARD std::string* release_keyframes(); + void set_allocated_keyframes(std::string* value); + + private: + const std::string& _internal_keyframes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( + const std::string& value); + std::string* _internal_mutable_keyframes(); + + public: + // bytes pointcloud = 10; + 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); + + private: + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& value); + std::string* _internal_mutable_pointcloud(); public: // int32 grpcServerCompressionFormat = 1; @@ -3345,27 +3458,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> + 4, 10, 0, + 66, 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 +3483,17 @@ 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 map_information_; + ::google::protobuf::internal::ArenaStringPtr cameraparameters_; + ::google::protobuf::internal::ArenaStringPtr coordinate_; + ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; + ::google::protobuf::internal::ArenaStringPtr identification_; + ::google::protobuf::internal::ArenaStringPtr keyframes_; + ::google::protobuf::internal::ArenaStringPtr pointcloud_; ::int32_t grpcservercompressionformat_; - ::int32_t processingtype_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -3394,23 +3502,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 +3550,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 +3571,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 +3579,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 +3606,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 +3626,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 +3638,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 +3663,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 +3673,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,17 +3721,17 @@ 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) { - if (other == this) return; + 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()) { #else // PROTOBUF_FORCE_COPY_IN_SWAP @@ -3652,7 +3742,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 +3750,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 +3777,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 +3798,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 +3819,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; - 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; + // string mapUUID = 3; + void clear_mapuuid() ; + const std::string& mapuuid() 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); + 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_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 +3861,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 +3881,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 +3896,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 +3910,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 +3958,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 +3979,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 +3987,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 +4014,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 +4034,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 +4063,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 +4088,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 +4099,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 +4147,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 +4168,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 +4176,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 +4203,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 +4224,10 @@ class init_grpc1Request final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kAccessTokenFieldNumber = 2, - kClientUUIDFieldNumber = 3, - kGrpcServerCompressionFormatFieldNumber = 1, - kPipelineModeFieldNumber = 4, + kDeviceInfoFieldNumber = 3, + kWorldElementUUIDFieldNumber = 4, + kClientUUIDFieldNumber = 5, + kGrpcServerCompressionFormatFieldNumber = 1, }; // string accessToken = 2; void clear_accesstoken() ; @@ -4142,7 +4245,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 +4303,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 +4328,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 +4342,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 +4390,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 +4411,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 +4419,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 +4446,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 +4478,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 +4488,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 +4503,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 +4513,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 +4561,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 +4582,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 +4590,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 +4617,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 +4640,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 +4684,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 +4719,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 +4732,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 +4780,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 +4801,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 +4809,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 +4836,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,82 +4856,9 @@ 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); - - 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 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; + // sint32 xpcfGrpcReturnValue = 1; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -4803,17 +4868,17 @@ class imageProcessRequestResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.imageProcessRequestResponse) + // @@protoc_insertion_point(class_scope:grpcIFrontEnd.init_grpc0Response) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 6, 0, + 0, 1, 0, 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_imageProcessRequestResponse_default_instance_; + &_init_grpc0Response_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4828,12 +4893,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 +4903,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 +4951,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 +4972,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 +4980,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 +5007,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 +5029,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() ; @@ -5013,71 +5063,185 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message 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); + // int32 grpcServerCompressionFormat = 1; + void clear_grpcservercompressionformat() ; + ::int32_t grpcservercompressionformat() const; + void set_grpcservercompressionformat(::int32_t 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(); + ::int32_t _internal_grpcservercompressionformat() const; + void _internal_set_grpcservercompressionformat(::int32_t value); 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(); + // @@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_; - 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); + static constexpr const void* _raw_default_instance_ = + &_init_grpc0Request_default_instance_; - private: - const std::string& _internal_worldtransform() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_worldtransform( - const std::string& value); - std::string* _internal_mutable_worldtransform(); + friend class ::google::protobuf::MessageLite; + friend class ::google::protobuf::Arena; + template + friend class ::google::protobuf::Arena::InternalHelper; + using InternalArenaConstructable_ = void; + using DestructorSkippable_ = void; + struct Impl_ { + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena); + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::google::protobuf::Arena* arena, const Impl_& from, + const init_grpc0Request& from_msg); + ::google::protobuf::internal::ArenaStringPtr accesstoken_; + ::google::protobuf::internal::ArenaStringPtr clientuuid_; + ::int32_t grpcservercompressionformat_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIFrontEndService_2eproto; +}; +// ------------------------------------------------------------------- - 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); +class imageProcessRequestResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.imageProcessRequestResponse) */ { + public: + inline imageProcessRequestResponse() : imageProcessRequestResponse(nullptr) {} + ~imageProcessRequestResponse() override; + template + explicit PROTOBUF_CONSTEXPR imageProcessRequestResponse( + ::google::protobuf::internal::ConstantInitialized); - private: - const std::string& _internal_timestamp() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_timestamp( - const std::string& value); - std::string* _internal_mutable_timestamp(); + 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 imageProcessRequestResponse& operator=(imageProcessRequestResponse&& from) noexcept { + if (this == &from) return *this; + if (GetArena() == from.GetArena() +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetArena() != nullptr +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + + inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); + } + inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() + ABSL_ATTRIBUTE_LIFETIME_BOUND { + return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); + } + + static const ::google::protobuf::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::google::protobuf::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::google::protobuf::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const imageProcessRequestResponse& default_instance() { + return *internal_default_instance(); + } + static inline const imageProcessRequestResponse* internal_default_instance() { + return reinterpret_cast( + &_imageProcessRequestResponse_default_instance_); + } + 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()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() == other->GetArena()) { +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::google::protobuf::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(imageProcessRequestResponse* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + imageProcessRequestResponse* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); + } + using ::google::protobuf::Message::CopyFrom; + void CopyFrom(const imageProcessRequestResponse& from); + using ::google::protobuf::Message::MergeFrom; + void MergeFrom(const imageProcessRequestResponse& from) { imageProcessRequestResponse::MergeImpl(*this, from); } + + private: + static void MergeImpl( + ::google::protobuf::MessageLite& to_msg, + const ::google::protobuf::MessageLite& from_msg); public: - // bytes transform3D = 10; + 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(imageProcessRequestResponse* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.imageProcessRequestResponse"; } + + 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) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; + + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + enum : int { + kTransform3DFieldNumber = 2, + kConfidenceFieldNumber = 3, + kDetectedObjectsFieldNumber = 5, + kTransform3DStatusFieldNumber = 1, + kMappingStatusFieldNumber = 4, + kXpcfGrpcReturnValueFieldNumber = 6, + }; + // bytes transform3D = 2; void clear_transform3d() ; const std::string& transform3d() const; template @@ -5093,7 +5257,7 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message std::string* _internal_mutable_transform3d(); public: - // bytes confidence = 11; + // bytes confidence = 3; void clear_confidence() ; const std::string& confidence() const; template @@ -5109,7 +5273,7 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message std::string* _internal_mutable_confidence(); public: - // bytes detectedObjects = 13; + // bytes detectedObjects = 5; void clear_detectedobjects() ; const std::string& detectedobjects() const; template @@ -5125,27 +5289,7 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message std::string* _internal_mutable_detectedobjects(); 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: - // 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; + // sint32 transform3DStatus = 1; void clear_transform3dstatus() ; ::int32_t transform3dstatus() const; void set_transform3dstatus(::int32_t value); @@ -5155,7 +5299,7 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message void _internal_set_transform3dstatus(::int32_t value); public: - // sint32 mappingStatus = 12; + // sint32 mappingStatus = 4; void clear_mappingstatus() ; ::int32_t mappingstatus() const; void set_mappingstatus(::int32_t value); @@ -5165,17 +5309,27 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message void _internal_set_mappingstatus(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.imageProcessRequestRequest) + // 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< - 4, 13, 0, - 78, 2> + 3, 6, 0, + 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_imageProcessRequestRequest_default_instance_; + &_imageProcessRequestResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -5190,20 +5344,13 @@ 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); - ::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_; + const imageProcessRequestResponse& from_msg); ::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_; + ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -5212,23 +5359,23 @@ class imageProcessRequestRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getProcessingModeResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getProcessingModeResponse) */ { +class imageProcessRequestRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.imageProcessRequestRequest) */ { public: - inline getProcessingModeResponse() : getProcessingModeResponse(nullptr) {} - ~getProcessingModeResponse() override; + inline imageProcessRequestRequest() : imageProcessRequestRequest(nullptr) {} + ~imageProcessRequestRequest() override; template - explicit PROTOBUF_CONSTEXPR getProcessingModeResponse( + explicit PROTOBUF_CONSTEXPR imageProcessRequestRequest( ::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 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 getProcessingModeResponse& operator=(getProcessingModeResponse&& from) noexcept { + inline imageProcessRequestRequest& operator=(imageProcessRequestRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -5260,16 +5407,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 imageProcessRequestRequest& default_instance() { return *internal_default_instance(); } - static inline const getProcessingModeResponse* internal_default_instance() { - return reinterpret_cast( - &_getProcessingModeResponse_default_instance_); + static inline const imageProcessRequestRequest* internal_default_instance() { + return reinterpret_cast( + &_imageProcessRequestRequest_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 = 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()) { @@ -5281,7 +5428,7 @@ class getProcessingModeResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getProcessingModeResponse* other) { + void UnsafeArenaSwap(imageProcessRequestRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -5289,13 +5436,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); + imageProcessRequestRequest* 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 imageProcessRequestRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getProcessingModeResponse& from) { getProcessingModeResponse::MergeImpl(*this, from); } + void MergeFrom(const imageProcessRequestRequest& from) { imageProcessRequestRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -5316,16 +5463,16 @@ class getProcessingModeResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getProcessingModeResponse* other); + void InternalSwap(imageProcessRequestRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getProcessingModeResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.imageProcessRequestRequest"; } 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 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; @@ -5336,40 +5483,215 @@ class getProcessingModeResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kPipelineModeFieldNumber = 1, - kXpcfGrpcReturnValueFieldNumber = 2, + 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, }; - // sint32 pipelineMode = 1; - void clear_pipelinemode() ; - ::int32_t pipelinemode() const; - void set_pipelinemode(::int32_t value); + // 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: - ::int32_t _internal_pipelinemode() const; - void _internal_set_pipelinemode(::int32_t value); + const std::string& _internal_accesstoken() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_accesstoken( + const std::string& value); + std::string* _internal_mutable_accesstoken(); public: - // sint32 xpcfGrpcReturnValue = 2; - void clear_xpcfgrpcreturnvalue() ; - ::int32_t xpcfgrpcreturnvalue() const; - void set_xpcfgrpcreturnvalue(::int32_t value); + // 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: - ::int32_t _internal_xpcfgrpcreturnvalue() const; - void _internal_set_xpcfgrpcreturnvalue(::int32_t value); + const std::string& _internal_clientuuid() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_clientuuid( + const std::string& value); + std::string* _internal_mutable_clientuuid(); public: - // @@protoc_insertion_point(class_scope:grpcIFrontEnd.getProcessingModeResponse) + // 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() ; + ::int32_t grpcservercompressionformat() const; + void set_grpcservercompressionformat(::int32_t value); + + private: + ::int32_t _internal_grpcservercompressionformat() const; + 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< - 1, 2, 0, - 0, 2> + 4, 13, 0, + 78, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getProcessingModeResponse_default_instance_; + &_imageProcessRequestRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -5384,9 +5706,20 @@ 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_; - ::int32_t xpcfgrpcreturnvalue_; + 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_; + bool fixedpose_; + ::int32_t transform3dstatus_; + ::int32_t mappingstatus_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -5395,23 +5728,23 @@ class getProcessingModeResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getProcessingModeRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getProcessingModeRequest) */ { +class getProcessingModeResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getProcessingModeResponse) */ { public: - inline getProcessingModeRequest() : getProcessingModeRequest(nullptr) {} - ~getProcessingModeRequest() override; + inline getProcessingModeResponse() : getProcessingModeResponse(nullptr) {} + ~getProcessingModeResponse() override; template - explicit PROTOBUF_CONSTEXPR getProcessingModeRequest( + explicit PROTOBUF_CONSTEXPR getProcessingModeResponse( ::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 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 getProcessingModeRequest& operator=(getProcessingModeRequest&& from) noexcept { + inline getProcessingModeResponse& operator=(getProcessingModeResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -5443,16 +5776,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 getProcessingModeResponse& default_instance() { return *internal_default_instance(); } - static inline const getProcessingModeRequest* internal_default_instance() { - return reinterpret_cast( - &_getProcessingModeRequest_default_instance_); + static inline const getProcessingModeResponse* internal_default_instance() { + return reinterpret_cast( + &_getProcessingModeResponse_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 = 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()) { @@ -5464,7 +5797,7 @@ class getProcessingModeRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getProcessingModeRequest* other) { + void UnsafeArenaSwap(getProcessingModeResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -5472,13 +5805,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); + getProcessingModeResponse* 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 getProcessingModeResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getProcessingModeRequest& from) { getProcessingModeRequest::MergeImpl(*this, from); } + void MergeFrom(const getProcessingModeResponse& from) { getProcessingModeResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -5499,10 +5832,193 @@ class getProcessingModeRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getProcessingModeRequest* other); + void InternalSwap(getProcessingModeResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getProcessingModeRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getProcessingModeResponse"; } + + 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) { + *this = ::std::move(from); + } + const ::google::protobuf::Message::ClassData* GetClassData() const final; + + public: + ::google::protobuf::Metadata GetMetadata() const; + // nested types ---------------------------------------------------- + + // accessors ------------------------------------------------------- + enum : int { + kPipelineModeFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, + }; + // sint32 pipelineMode = 1; + 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: + // 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.getProcessingModeResponse) + 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_ = + &_getProcessingModeResponse_default_instance_; + + friend class ::google::protobuf::MessageLite; + friend class ::google::protobuf::Arena; + template + friend class ::google::protobuf::Arena::InternalHelper; + using InternalArenaConstructable_ = void; + using DestructorSkippable_ = void; + struct Impl_ { + inline explicit constexpr Impl_( + ::google::protobuf::internal::ConstantInitialized) noexcept; + inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, + ::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_; + ::int32_t xpcfgrpcreturnvalue_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIFrontEndService_2eproto; +}; +// ------------------------------------------------------------------- + +class getProcessingModeRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIFrontEnd.getProcessingModeRequest) */ { + public: + inline getProcessingModeRequest() : getProcessingModeRequest(nullptr) {} + ~getProcessingModeRequest() override; + template + explicit PROTOBUF_CONSTEXPR getProcessingModeRequest( + ::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) { + CopyFrom(from); + return *this; + } + inline getProcessingModeRequest& operator=(getProcessingModeRequest&& from) noexcept { + if (this == &from) return *this; + if (GetArena() == from.GetArena() +#ifdef PROTOBUF_FORCE_COPY_IN_MOVE + && GetArena() != nullptr +#endif // !PROTOBUF_FORCE_COPY_IN_MOVE + ) { + InternalSwap(&from); + } else { + CopyFrom(from); + } + return *this; + } + + inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + return _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance); + } + inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() + ABSL_ATTRIBUTE_LIFETIME_BOUND { + return _internal_metadata_.mutable_unknown_fields<::google::protobuf::UnknownFieldSet>(); + } + + static const ::google::protobuf::Descriptor* descriptor() { + return GetDescriptor(); + } + static const ::google::protobuf::Descriptor* GetDescriptor() { + return default_instance().GetMetadata().descriptor; + } + static const ::google::protobuf::Reflection* GetReflection() { + return default_instance().GetMetadata().reflection; + } + static const getProcessingModeRequest& default_instance() { + return *internal_default_instance(); + } + static inline const getProcessingModeRequest* internal_default_instance() { + return reinterpret_cast( + &_getProcessingModeRequest_default_instance_); + } + 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()) { +#else // PROTOBUF_FORCE_COPY_IN_SWAP + if (GetArena() == other->GetArena()) { +#endif // !PROTOBUF_FORCE_COPY_IN_SWAP + InternalSwap(other); + } else { + ::google::protobuf::internal::GenericSwap(this, other); + } + } + void UnsafeArenaSwap(getProcessingModeRequest* other) { + if (other == this) return; + ABSL_DCHECK(GetArena() == other->GetArena()); + InternalSwap(other); + } + + // implements Message ---------------------------------------------- + + getProcessingModeRequest* New(::google::protobuf::Arena* arena = nullptr) const final { + return ::google::protobuf::Message::DefaultConstruct(arena); + } + using ::google::protobuf::Message::CopyFrom; + void CopyFrom(const getProcessingModeRequest& from); + using ::google::protobuf::Message::MergeFrom; + void MergeFrom(const getProcessingModeRequest& from) { getProcessingModeRequest::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(getProcessingModeRequest* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIFrontEnd.getProcessingModeRequest"; } protected: explicit getProcessingModeRequest(::google::protobuf::Arena* arena); @@ -6959,7 +7475,7 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message return reinterpret_cast( &_getMapProcessingStatusResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 53; + static constexpr int kIndexInFileMessages = 57; friend void swap(getMapProcessingStatusResponse& a, getMapProcessingStatusResponse& b) { a.Swap(&b); } inline void Swap(getMapProcessingStatusResponse* other) { if (other == this) return; @@ -7166,7 +7682,7 @@ class getMapProcessingStatusRequest final : public ::google::protobuf::Message return reinterpret_cast( &_getMapProcessingStatusRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 52; + static constexpr int kIndexInFileMessages = 56; friend void swap(getMapProcessingStatusRequest& a, getMapProcessingStatusRequest& b) { a.Swap(&b); } inline void Swap(getMapProcessingStatusRequest* other) { if (other == this) return; @@ -7409,7 +7925,7 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message return reinterpret_cast( &_getMapProcessingDataResponse_default_instance_); } - static constexpr int kIndexInFileMessages = 55; + static constexpr int kIndexInFileMessages = 59; friend void swap(getMapProcessingDataResponse& a, getMapProcessingDataResponse& b) { a.Swap(&b); } inline void Swap(getMapProcessingDataResponse* other) { if (other == this) return; @@ -7616,7 +8132,7 @@ class getMapProcessingDataRequest final : public ::google::protobuf::Message return reinterpret_cast( &_getMapProcessingDataRequest_default_instance_); } - static constexpr int kIndexInFileMessages = 54; + static constexpr int kIndexInFileMessages = 58; friend void swap(getMapProcessingDataRequest& a, getMapProcessingDataRequest& b) { a.Swap(&b); } inline void Swap(getMapProcessingDataRequest* other) { if (other == this) return; @@ -12038,85 +12554,1775 @@ class createMapRequest final : public ::google::protobuf::Message 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 ---------------------------------------------- -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ -// ------------------------------------------------------------------- + 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); } -// registerClientRequest + 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 { + kMapInformationFieldNumber = 1, + kCameraParametersFieldNumber = 2, + kCoordinateFieldNumber = 3, + kCovisibilityGraphFieldNumber = 4, + kIdentificationFieldNumber = 5, + kKeyframesFieldNumber = 6, + kPointcloudFieldNumber = 7, + kXpcfGrpcReturnValueFieldNumber = 8, + }; + // bytes map_information = 1; + void clear_map_information() ; + const std::string& map_information() const; + template + void set_map_information(Arg_&& arg, Args_... args); + std::string* mutable_map_information(); + PROTOBUF_NODISCARD std::string* release_map_information(); + void set_allocated_map_information(std::string* value); + + private: + const std::string& _internal_map_information() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( + const std::string& value); + std::string* _internal_mutable_map_information(); + + public: + // bytes cameraParameters = 2; + void clear_cameraparameters() ; + const std::string& cameraparameters() const; + template + void set_cameraparameters(Arg_&& arg, Args_... args); + std::string* mutable_cameraparameters(); + PROTOBUF_NODISCARD std::string* release_cameraparameters(); + void set_allocated_cameraparameters(std::string* value); + + private: + const std::string& _internal_cameraparameters() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( + const std::string& value); + std::string* _internal_mutable_cameraparameters(); + + public: + // bytes coordinate = 3; + void clear_coordinate() ; + const std::string& coordinate() const; + template + void set_coordinate(Arg_&& arg, Args_... args); + std::string* mutable_coordinate(); + PROTOBUF_NODISCARD std::string* release_coordinate(); + void set_allocated_coordinate(std::string* value); + + private: + const std::string& _internal_coordinate() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( + const std::string& value); + std::string* _internal_mutable_coordinate(); + + public: + // bytes covisibility_graph = 4; + void clear_covisibility_graph() ; + const std::string& covisibility_graph() const; + template + void set_covisibility_graph(Arg_&& arg, Args_... args); + std::string* mutable_covisibility_graph(); + PROTOBUF_NODISCARD std::string* release_covisibility_graph(); + void set_allocated_covisibility_graph(std::string* value); + + private: + const std::string& _internal_covisibility_graph() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( + const std::string& value); + std::string* _internal_mutable_covisibility_graph(); + + public: + // bytes identification = 5; + void clear_identification() ; + const std::string& identification() const; + template + void set_identification(Arg_&& arg, Args_... args); + std::string* mutable_identification(); + PROTOBUF_NODISCARD std::string* release_identification(); + void set_allocated_identification(std::string* value); + + private: + const std::string& _internal_identification() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( + const std::string& value); + std::string* _internal_mutable_identification(); + + public: + // bytes keyframes = 6; + void clear_keyframes() ; + const std::string& keyframes() const; + template + void set_keyframes(Arg_&& arg, Args_... args); + std::string* mutable_keyframes(); + PROTOBUF_NODISCARD std::string* release_keyframes(); + void set_allocated_keyframes(std::string* value); + + private: + const std::string& _internal_keyframes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( + const std::string& value); + std::string* _internal_mutable_keyframes(); + + public: + // bytes pointcloud = 7; + 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); + + private: + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& value); + std::string* _internal_mutable_pointcloud(); + + public: + // sint32 xpcfGrpcReturnValue = 8; + 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< + 3, 8, 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 map_information_; + ::google::protobuf::internal::ArenaStringPtr cameraparameters_; + ::google::protobuf::internal::ArenaStringPtr coordinate_; + ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; + ::google::protobuf::internal::ArenaStringPtr identification_; + ::google::protobuf::internal::ArenaStringPtr keyframes_; + ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::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, + kMapInformationFieldNumber = 4, + kCameraParametersFieldNumber = 5, + kCoordinateFieldNumber = 6, + kCovisibilityGraphFieldNumber = 7, + kIdentificationFieldNumber = 8, + kKeyframesFieldNumber = 9, + kPointcloudFieldNumber = 10, + 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 map_information = 4; + void clear_map_information() ; + const std::string& map_information() const; + template + void set_map_information(Arg_&& arg, Args_... args); + std::string* mutable_map_information(); + PROTOBUF_NODISCARD std::string* release_map_information(); + void set_allocated_map_information(std::string* value); + + private: + const std::string& _internal_map_information() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( + const std::string& value); + std::string* _internal_mutable_map_information(); + + public: + // bytes cameraParameters = 5; + void clear_cameraparameters() ; + const std::string& cameraparameters() const; + template + void set_cameraparameters(Arg_&& arg, Args_... args); + std::string* mutable_cameraparameters(); + PROTOBUF_NODISCARD std::string* release_cameraparameters(); + void set_allocated_cameraparameters(std::string* value); + + private: + const std::string& _internal_cameraparameters() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( + const std::string& value); + std::string* _internal_mutable_cameraparameters(); + + public: + // bytes coordinate = 6; + void clear_coordinate() ; + const std::string& coordinate() const; + template + void set_coordinate(Arg_&& arg, Args_... args); + std::string* mutable_coordinate(); + PROTOBUF_NODISCARD std::string* release_coordinate(); + void set_allocated_coordinate(std::string* value); + + private: + const std::string& _internal_coordinate() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( + const std::string& value); + std::string* _internal_mutable_coordinate(); + + public: + // bytes covisibility_graph = 7; + void clear_covisibility_graph() ; + const std::string& covisibility_graph() const; + template + void set_covisibility_graph(Arg_&& arg, Args_... args); + std::string* mutable_covisibility_graph(); + PROTOBUF_NODISCARD std::string* release_covisibility_graph(); + void set_allocated_covisibility_graph(std::string* value); + + private: + const std::string& _internal_covisibility_graph() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( + const std::string& value); + std::string* _internal_mutable_covisibility_graph(); + + public: + // bytes identification = 8; + void clear_identification() ; + const std::string& identification() const; + template + void set_identification(Arg_&& arg, Args_... args); + std::string* mutable_identification(); + PROTOBUF_NODISCARD std::string* release_identification(); + void set_allocated_identification(std::string* value); + + private: + const std::string& _internal_identification() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( + const std::string& value); + std::string* _internal_mutable_identification(); + + public: + // bytes keyframes = 9; + void clear_keyframes() ; + const std::string& keyframes() const; + template + void set_keyframes(Arg_&& arg, Args_... args); + std::string* mutable_keyframes(); + PROTOBUF_NODISCARD std::string* release_keyframes(); + void set_allocated_keyframes(std::string* value); + + private: + const std::string& _internal_keyframes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( + const std::string& value); + std::string* _internal_mutable_keyframes(); + + public: + // bytes pointcloud = 10; + 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); + + private: + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& value); + std::string* _internal_mutable_pointcloud(); + + 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< + 4, 10, 0, + 65, 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 map_information_; + ::google::protobuf::internal::ArenaStringPtr cameraparameters_; + ::google::protobuf::internal::ArenaStringPtr coordinate_; + ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; + ::google::protobuf::internal::ArenaStringPtr identification_; + ::google::protobuf::internal::ArenaStringPtr keyframes_; + ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::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()); +} +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* getAllClientsUUIDRequest::_internal_mutable_clientuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.clientuuidlist_.Mutable( GetArena()); +} +inline std::string* getAllClientsUUIDRequest::release_clientuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@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_.clientuuidlist_.IsDefault()) { + _impl_.clientuuidlist_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) +} + +// ------------------------------------------------------------------- + +// getAllClientsUUIDResponse + +// bytes clientUUIDList = 1; +inline void getAllClientsUUIDResponse::clear_clientuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuidlist_.ClearToEmpty(); +} +inline const std::string& getAllClientsUUIDResponse::clientuuidlist() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) + return _internal_clientuuidlist(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getAllClientsUUIDResponse::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.getAllClientsUUIDResponse.clientUUIDList) +} +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& getAllClientsUUIDResponse::_internal_clientuuidlist() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.clientuuidlist_.Get(); +} +inline void getAllClientsUUIDResponse::_internal_set_clientuuidlist(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuidlist_.Set(value, GetArena()); +} +inline std::string* getAllClientsUUIDResponse::_internal_mutable_clientuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.clientuuidlist_.Mutable( GetArena()); +} +inline std::string* getAllClientsUUIDResponse::release_clientuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) + return _impl_.clientuuidlist_.Release(); +} +inline void getAllClientsUUIDResponse::set_allocated_clientuuidlist(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuidlist_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.clientuuidlist_.IsDefault()) { + _impl_.clientuuidlist_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) +} + +// sint32 xpcfGrpcReturnValue = 2; +inline void getAllClientsUUIDResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +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.getDeviceInfoRequest.accessToken) + return _internal_accesstoken(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoRequest::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) +} +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& getDeviceInfoRequest::_internal_accesstoken() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.accesstoken_.Get(); +} +inline void getDeviceInfoRequest::_internal_set_accesstoken(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.Set(value, GetArena()); +} +inline std::string* getDeviceInfoRequest::_internal_mutable_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.accesstoken_.Mutable( GetArena()); +} +inline std::string* getDeviceInfoRequest::release_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoRequest.accessToken) + return _impl_.accesstoken_.Release(); +} +inline void getDeviceInfoRequest::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.getDeviceInfoRequest.accessToken) +} + +// string clientUUID = 3; +inline void getDeviceInfoRequest::clear_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.ClearToEmpty(); +} +inline const std::string& getDeviceInfoRequest::clientuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) + return _internal_clientuuid(); +} +template +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.getDeviceInfoRequest.clientUUID) +} +inline std::string* getDeviceInfoRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) + return _s; +} +inline const std::string& getDeviceInfoRequest::_internal_clientuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.clientuuid_.Get(); +} +inline void getDeviceInfoRequest::_internal_set_clientuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.Set(value, GetArena()); +} +inline std::string* getDeviceInfoRequest::_internal_mutable_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.clientuuid_.Mutable( GetArena()); +} +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.getDeviceInfoRequest.deviceInfo) + return _impl_.deviceinfo_.Release(); +} +inline void getDeviceInfoRequest::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.getDeviceInfoRequest.deviceInfo) +} + +// ------------------------------------------------------------------- + +// getDeviceInfoResponse + +// bytes deviceInfo = 1; +inline void getDeviceInfoResponse::clear_deviceinfo() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.deviceinfo_.ClearToEmpty(); +} +inline const std::string& getDeviceInfoResponse::deviceinfo() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) + return _internal_deviceinfo(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoResponse::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.getDeviceInfoResponse.deviceInfo) +} +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& getDeviceInfoResponse::_internal_deviceinfo() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.deviceinfo_.Get(); +} +inline void getDeviceInfoResponse::_internal_set_deviceinfo(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.deviceinfo_.Set(value, GetArena()); +} +inline std::string* getDeviceInfoResponse::_internal_mutable_deviceinfo() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.deviceinfo_.Mutable( GetArena()); +} +inline std::string* getDeviceInfoResponse::release_deviceinfo() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) + return _impl_.deviceinfo_.Release(); +} +inline void getDeviceInfoResponse::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.getDeviceInfoResponse.deviceInfo) +} + +// sint32 xpcfGrpcReturnValue = 2; +inline void getDeviceInfoResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t getDeviceInfoResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void getDeviceInfoResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoResponse.xpcfGrpcReturnValue) +} +inline ::int32_t getDeviceInfoResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void getDeviceInfoResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// init_grpc0Request + +// int32 grpcServerCompressionFormat = 1; +inline void init_grpc0Request::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) + return _internal_grpcservercompressionformat(); +} +inline void init_grpc0Request::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Request.grpcServerCompressionFormat) +} +inline ::int32_t init_grpc0Request::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void init_grpc0Request::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string accessToken = 2; +inline void init_grpc0Request::clear_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.ClearToEmpty(); +} +inline const std::string& init_grpc0Request::accesstoken() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Request.accessToken) + return _internal_accesstoken(); +} +template +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.init_grpc0Request.accessToken) +} +inline std::string* init_grpc0Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc0Request.accessToken) + return _s; +} +inline const std::string& init_grpc0Request::_internal_accesstoken() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.accesstoken_.Get(); +} +inline void init_grpc0Request::_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() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.accesstoken_.Mutable( GetArena()); +} +inline std::string* init_grpc0Request::release_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc0Request.accessToken) + return _impl_.accesstoken_.Release(); +} +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 + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc0Request.accessToken) +} + +// string clientUUID = 3; +inline void init_grpc0Request::clear_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.clientuuid_.ClearToEmpty(); +} +inline const std::string& init_grpc0Request::clientuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Request.clientUUID) + return _internal_clientuuid(); +} +template +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.init_grpc0Request.clientUUID) +} +inline std::string* init_grpc0Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc0Request.clientUUID) + return _s; +} +inline const std::string& init_grpc0Request::_internal_clientuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.clientuuid_.Get(); +} +inline void init_grpc0Request::_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() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.clientuuid_.Mutable( GetArena()); +} +inline std::string* init_grpc0Request::release_clientuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc0Request.clientUUID) + return _impl_.clientuuid_.Release(); +} +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 + if (_impl_.clientuuid_.IsDefault()) { + _impl_.clientuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc0Request.clientUUID) +} + +// ------------------------------------------------------------------- + +// init_grpc0Response + +// sint32 xpcfGrpcReturnValue = 1; +inline void init_grpc0Response::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) + return _internal_xpcfgrpcreturnvalue(); +} +inline void init_grpc0Response::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Response.xpcfGrpcReturnValue) +} +inline ::int32_t init_grpc0Response::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void init_grpc0Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// init_grpc1Request // int32 grpcServerCompressionFormat = 1; -inline void registerClientRequest::clear_grpcservercompressionformat() { +inline void init_grpc1Request::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t registerClientRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.grpcServerCompressionFormat) +inline ::int32_t init_grpc1Request::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void registerClientRequest::set_grpcservercompressionformat(::int32_t value) { +inline void init_grpc1Request::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.grpcServerCompressionFormat) } -inline ::int32_t registerClientRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t init_grpc1Request::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void registerClientRequest::_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 registerClientRequest::clear_accesstoken() { +inline void init_grpc1Request::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& registerClientRequest::accesstoken() const +inline const std::string& init_grpc1Request::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::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.registerClientRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.accessToken) } -inline std::string* registerClientRequest::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.registerClientRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc1Request.accessToken) return _s; } -inline const std::string& registerClientRequest::_internal_accesstoken() const { +inline const std::string& init_grpc1Request::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void registerClientRequest::_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* registerClientRequest::_internal_mutable_accesstoken() { +inline std::string* init_grpc1Request::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* registerClientRequest::release_accesstoken() { +inline std::string* init_grpc1Request::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc1Request.accessToken) return _impl_.accesstoken_.Release(); } -inline void registerClientRequest::set_allocated_accesstoken(std::string* value) { +inline void init_grpc1Request::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -12124,149 +14330,223 @@ inline void registerClientRequest::set_allocated_accesstoken(std::string* value) _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc1Request.accessToken) } -// bytes deviceInfo = 3; -inline void registerClientRequest::clear_deviceinfo() { +// string clientUUID = 3; +inline void init_grpc1Request::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.ClearToEmpty(); + _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& registerClientRequest::deviceinfo() const +inline const std::string& init_grpc1Request::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.deviceInfo) - return _internal_deviceinfo(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.clientUUID) + return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::set_deviceinfo(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void init_grpc1Request::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.registerClientRequest.deviceInfo) + _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.clientUUID) } -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* 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& registerClientRequest::_internal_deviceinfo() const { +inline const std::string& init_grpc1Request::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.deviceinfo_.Get(); + return _impl_.clientuuid_.Get(); } -inline void registerClientRequest::_internal_set_deviceinfo(const std::string& value) { +inline void init_grpc1Request::_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* registerClientRequest::_internal_mutable_deviceinfo() { +inline std::string* init_grpc1Request::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.deviceinfo_.Mutable( GetArena()); + return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* registerClientRequest::release_deviceinfo() { +inline std::string* init_grpc1Request::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.deviceInfo) - return _impl_.deviceinfo_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc1Request.clientUUID) + return _impl_.clientuuid_.Release(); } -inline void registerClientRequest::set_allocated_deviceinfo(std::string* value) { +inline void init_grpc1Request::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.registerClientRequest.deviceInfo) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.init_grpc1Request.clientUUID) } -// string worldElementUUID = 4; -inline void registerClientRequest::clear_worldelementuuid() { +// sint32 pipelineMode = 4; +inline void init_grpc1Request::clear_pipelinemode() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldelementuuid_.ClearToEmpty(); + _impl_.pipelinemode_ = 0; } -inline const std::string& registerClientRequest::worldelementuuid() const +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 init_grpc1Response::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Response.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void init_grpc1Response::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Response.xpcfGrpcReturnValue) +} +inline ::int32_t init_grpc1Response::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void init_grpc1Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// startRequest + +// int32 grpcServerCompressionFormat = 1; +inline void startRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t startRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void startRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.startRequest.grpcServerCompressionFormat) +} +inline ::int32_t startRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void startRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string accessToken = 2; +inline void startRequest::clear_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.ClearToEmpty(); +} +inline const std::string& startRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.worldElementUUID) - return _internal_worldelementuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::set_worldelementuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void startRequest::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.startRequest.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* startRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.startRequest.accessToken) return _s; } -inline const std::string& registerClientRequest::_internal_worldelementuuid() const { +inline const std::string& startRequest::_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 startRequest::_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* startRequest::_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* startRequest::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.startRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void registerClientRequest::set_allocated_worldelementuuid(std::string* value) { +inline void startRequest::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.startRequest.accessToken) } -// string clientUUID = 5; -inline void registerClientRequest::clear_clientuuid() { +// string clientUUID = 3; +inline void startRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& registerClientRequest::clientuuid() const +inline const std::string& startRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void registerClientRequest::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.registerClientRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.startRequest.clientUUID) } -inline std::string* registerClientRequest::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.registerClientRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.startRequest.clientUUID) return _s; } -inline const std::string& registerClientRequest::_internal_clientuuid() const { +inline const std::string& startRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void registerClientRequest::_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* registerClientRequest::_internal_mutable_clientuuid() { +inline std::string* startRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* registerClientRequest::release_clientuuid() { +inline std::string* startRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.startRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void registerClientRequest::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 @@ -12274,53 +14554,151 @@ inline void registerClientRequest::set_allocated_clientuuid(std::string* value) _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.startRequest.clientUUID) } // ------------------------------------------------------------------- -// registerClientResponse +// startResponse -// string clientUUID = 1; -inline void registerClientResponse::clear_clientuuid() { +// 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; +} + +// 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.stopRequest.accessToken) + return _internal_accesstoken(); +} +template +inline PROTOBUF_ALWAYS_INLINE void stopRequest::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.stopRequest.accessToken) +} +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& stopRequest::_internal_accesstoken() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.accesstoken_.Get(); +} +inline void stopRequest::_internal_set_accesstoken(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.Set(value, GetArena()); +} +inline std::string* stopRequest::_internal_mutable_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.accesstoken_.Mutable( GetArena()); +} +inline std::string* stopRequest::release_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.stopRequest.accessToken) + return _impl_.accesstoken_.Release(); +} +inline void stopRequest::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.stopRequest.accessToken) +} + +// string clientUUID = 3; +inline void stopRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& registerClientResponse::clientuuid() const +inline const std::string& stopRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.registerClientResponse.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void registerClientResponse::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void stopRequest::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) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopRequest.clientUUID) } -inline std::string* registerClientResponse::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* stopRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.registerClientResponse.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.stopRequest.clientUUID) return _s; } -inline const std::string& registerClientResponse::_internal_clientuuid() const { +inline const std::string& stopRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void registerClientResponse::_internal_set_clientuuid(const std::string& value) { +inline void stopRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* registerClientResponse::_internal_mutable_clientuuid() { +inline std::string* stopRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* registerClientResponse::release_clientuuid() { +inline std::string* stopRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.registerClientResponse.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.stopRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void registerClientResponse::set_allocated_clientuuid(std::string* value) { +inline void stopRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -12328,97 +14706,101 @@ inline void registerClientResponse::set_allocated_clientuuid(std::string* value) _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.registerClientResponse.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.stopRequest.clientUUID) } -// sint32 xpcfGrpcReturnValue = 2; -inline void registerClientResponse::clear_xpcfgrpcreturnvalue() { +// ------------------------------------------------------------------- + +// stopResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void stopResponse::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 stopResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void registerClientResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void stopResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.registerClientResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopResponse.xpcfGrpcReturnValue) } -inline ::int32_t registerClientResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t stopResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void registerClientResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void stopResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// unregisterClientRequest +// getProcessingModeRequest // int32 grpcServerCompressionFormat = 1; -inline void unregisterClientRequest::clear_grpcservercompressionformat() { +inline void getProcessingModeRequest::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 getProcessingModeRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void unregisterClientRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getProcessingModeRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.unregisterClientRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.grpcServerCompressionFormat) } -inline ::int32_t unregisterClientRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getProcessingModeRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void unregisterClientRequest::_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 unregisterClientRequest::clear_accesstoken() { +inline void getProcessingModeRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& unregisterClientRequest::accesstoken() const +inline const std::string& getProcessingModeRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void unregisterClientRequest::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.unregisterClientRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.accessToken) } -inline std::string* unregisterClientRequest::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.unregisterClientRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getProcessingModeRequest.accessToken) return _s; } -inline const std::string& unregisterClientRequest::_internal_accesstoken() const { +inline const std::string& getProcessingModeRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void unregisterClientRequest::_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* unregisterClientRequest::_internal_mutable_accesstoken() { +inline std::string* getProcessingModeRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* unregisterClientRequest::release_accesstoken() { +inline std::string* getProcessingModeRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.unregisterClientRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getProcessingModeRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void unregisterClientRequest::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 @@ -12426,49 +14808,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.getProcessingModeRequest.accessToken) } // string clientUUID = 3; -inline void unregisterClientRequest::clear_clientuuid() { +inline void getProcessingModeRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& unregisterClientRequest::clientuuid() const +inline const std::string& getProcessingModeRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void unregisterClientRequest::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.unregisterClientRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.clientUUID) } -inline std::string* unregisterClientRequest::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.unregisterClientRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getProcessingModeRequest.clientUUID) return _s; } -inline const std::string& unregisterClientRequest::_internal_clientuuid() const { +inline const std::string& getProcessingModeRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void unregisterClientRequest::_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* unregisterClientRequest::_internal_mutable_clientuuid() { +inline std::string* getProcessingModeRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* unregisterClientRequest::release_clientuuid() { +inline std::string* getProcessingModeRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.unregisterClientRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getProcessingModeRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void unregisterClientRequest::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 @@ -12476,101 +14858,145 @@ 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.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; } // ------------------------------------------------------------------- -// unregisterClientResponse +// getProcessingModeResponse -// sint32 xpcfGrpcReturnValue = 1; -inline void unregisterClientResponse::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 unregisterClientResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.unregisterClientResponse.xpcfGrpcReturnValue) +inline ::int32_t getProcessingModeResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void unregisterClientResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getProcessingModeResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.unregisterClientResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeResponse.xpcfGrpcReturnValue) } -inline ::int32_t unregisterClientResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getProcessingModeResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void unregisterClientResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getProcessingModeResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getAllClientsUUIDRequest +// setCameraParameters_grpc0Request // int32 grpcServerCompressionFormat = 1; -inline void getAllClientsUUIDRequest::clear_grpcservercompressionformat() { +inline void setCameraParameters_grpc0Request::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 setCameraParameters_grpc0Request::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getAllClientsUUIDRequest::set_grpcservercompressionformat(::int32_t value) { +inline void setCameraParameters_grpc0Request::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.grpcServerCompressionFormat) } -inline ::int32_t getAllClientsUUIDRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t setCameraParameters_grpc0Request::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getAllClientsUUIDRequest::_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 getAllClientsUUIDRequest::clear_accesstoken() { +inline void setCameraParameters_grpc0Request::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getAllClientsUUIDRequest::accesstoken() const +inline const std::string& setCameraParameters_grpc0Request::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllClientsUUIDRequest::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.getAllClientsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) } -inline std::string* getAllClientsUUIDRequest::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.getAllClientsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) return _s; } -inline const std::string& getAllClientsUUIDRequest::_internal_accesstoken() const { +inline const std::string& setCameraParameters_grpc0Request::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getAllClientsUUIDRequest::_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* getAllClientsUUIDRequest::_internal_mutable_accesstoken() { +inline std::string* setCameraParameters_grpc0Request::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getAllClientsUUIDRequest::release_accesstoken() { +inline std::string* setCameraParameters_grpc0Request::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) return _impl_.accesstoken_.Release(); } -inline void getAllClientsUUIDRequest::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 @@ -12578,201 +15004,201 @@ inline void getAllClientsUUIDRequest::set_allocated_accesstoken(std::string* val _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllClientsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) } -// bytes clientUUIDList = 3; -inline void getAllClientsUUIDRequest::clear_clientuuidlist() { +// string clientUUID = 3; +inline void setCameraParameters_grpc0Request::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.ClearToEmpty(); + _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& getAllClientsUUIDRequest::clientuuidlist() const +inline const std::string& setCameraParameters_grpc0Request::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) - return _internal_clientuuidlist(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) + return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllClientsUUIDRequest::set_clientuuidlist(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::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.getAllClientsUUIDRequest.clientUUIDList) + _impl_.clientuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) } -inline std::string* getAllClientsUUIDRequest::mutable_clientuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuidlist(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) +inline std::string* setCameraParameters_grpc0Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_clientuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) return _s; } -inline const std::string& getAllClientsUUIDRequest::_internal_clientuuidlist() const { +inline const std::string& setCameraParameters_grpc0Request::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuidlist_.Get(); + return _impl_.clientuuid_.Get(); } -inline void getAllClientsUUIDRequest::_internal_set_clientuuidlist(const std::string& value) { +inline void setCameraParameters_grpc0Request::_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* getAllClientsUUIDRequest::_internal_mutable_clientuuidlist() { +inline std::string* setCameraParameters_grpc0Request::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuidlist_.Mutable( GetArena()); + return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* getAllClientsUUIDRequest::release_clientuuidlist() { +inline std::string* setCameraParameters_grpc0Request::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllClientsUUIDRequest.clientUUIDList) - return _impl_.clientuuidlist_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) + return _impl_.clientuuid_.Release(); } -inline void getAllClientsUUIDRequest::set_allocated_clientuuidlist(std::string* value) { +inline void setCameraParameters_grpc0Request::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.getAllClientsUUIDRequest.clientUUIDList) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) } -// ------------------------------------------------------------------- - -// getAllClientsUUIDResponse - -// bytes clientUUIDList = 1; -inline void getAllClientsUUIDResponse::clear_clientuuidlist() { +// bytes cameraParams = 4; +inline void setCameraParameters_grpc0Request::clear_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.ClearToEmpty(); + _impl_.cameraparams_.ClearToEmpty(); } -inline const std::string& getAllClientsUUIDResponse::clientuuidlist() const +inline const std::string& setCameraParameters_grpc0Request::cameraparams() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) - return _internal_clientuuidlist(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) + return _internal_cameraparams(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllClientsUUIDResponse::set_clientuuidlist(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::set_cameraparams(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_.cameraparams_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) } -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* 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& getAllClientsUUIDResponse::_internal_clientuuidlist() const { +inline const std::string& setCameraParameters_grpc0Request::_internal_cameraparams() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuidlist_.Get(); + return _impl_.cameraparams_.Get(); } -inline void getAllClientsUUIDResponse::_internal_set_clientuuidlist(const std::string& value) { +inline void setCameraParameters_grpc0Request::_internal_set_cameraparams(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.Set(value, GetArena()); + _impl_.cameraparams_.Set(value, GetArena()); } -inline std::string* getAllClientsUUIDResponse::_internal_mutable_clientuuidlist() { +inline std::string* setCameraParameters_grpc0Request::_internal_mutable_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuidlist_.Mutable( GetArena()); + return _impl_.cameraparams_.Mutable( GetArena()); } -inline std::string* getAllClientsUUIDResponse::release_clientuuidlist() { +inline std::string* setCameraParameters_grpc0Request::release_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) - return _impl_.clientuuidlist_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) + return _impl_.cameraparams_.Release(); } -inline void getAllClientsUUIDResponse::set_allocated_clientuuidlist(std::string* value) { +inline void setCameraParameters_grpc0Request::set_allocated_cameraparams(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuidlist_.SetAllocated(value, GetArena()); + _impl_.cameraparams_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuidlist_.IsDefault()) { - _impl_.clientuuidlist_.Set("", GetArena()); + if (_impl_.cameraparams_.IsDefault()) { + _impl_.cameraparams_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllClientsUUIDResponse.clientUUIDList) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getAllClientsUUIDResponse::clear_xpcfgrpcreturnvalue() { +// ------------------------------------------------------------------- + +// setCameraParameters_grpc0Response + +// sint32 xpcfGrpcReturnValue = 1; +inline void setCameraParameters_grpc0Response::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 setCameraParameters_grpc0Response::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Response.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getAllClientsUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setCameraParameters_grpc0Response::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllClientsUUIDResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Response.xpcfGrpcReturnValue) } -inline ::int32_t getAllClientsUUIDResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t setCameraParameters_grpc0Response::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getAllClientsUUIDResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setCameraParameters_grpc0Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getDeviceInfoRequest +// setCameraParameters_grpc1Request // int32 grpcServerCompressionFormat = 1; -inline void getDeviceInfoRequest::clear_grpcservercompressionformat() { +inline void setCameraParameters_grpc1Request::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 setCameraParameters_grpc1Request::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getDeviceInfoRequest::set_grpcservercompressionformat(::int32_t value) { +inline void setCameraParameters_grpc1Request::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.grpcServerCompressionFormat) } -inline ::int32_t getDeviceInfoRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t setCameraParameters_grpc1Request::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getDeviceInfoRequest::_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 getDeviceInfoRequest::clear_accesstoken() { +inline void setCameraParameters_grpc1Request::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getDeviceInfoRequest::accesstoken() const +inline const std::string& setCameraParameters_grpc1Request::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoRequest::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.getDeviceInfoRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) } -inline std::string* getDeviceInfoRequest::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.getDeviceInfoRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) return _s; } -inline const std::string& getDeviceInfoRequest::_internal_accesstoken() const { +inline const std::string& setCameraParameters_grpc1Request::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getDeviceInfoRequest::_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* getDeviceInfoRequest::_internal_mutable_accesstoken() { +inline std::string* setCameraParameters_grpc1Request::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getDeviceInfoRequest::release_accesstoken() { +inline std::string* setCameraParameters_grpc1Request::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) return _impl_.accesstoken_.Release(); } -inline void getDeviceInfoRequest::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 @@ -12780,49 +15206,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.setCameraParameters_grpc1Request.accessToken) } // string clientUUID = 3; -inline void getDeviceInfoRequest::clear_clientuuid() { +inline void setCameraParameters_grpc1Request::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& getDeviceInfoRequest::clientuuid() const +inline const std::string& setCameraParameters_grpc1Request::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoRequest::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.getDeviceInfoRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) } -inline std::string* getDeviceInfoRequest::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.getDeviceInfoRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) return _s; } -inline const std::string& getDeviceInfoRequest::_internal_clientuuid() const { +inline const std::string& setCameraParameters_grpc1Request::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void getDeviceInfoRequest::_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* getDeviceInfoRequest::_internal_mutable_clientuuid() { +inline std::string* setCameraParameters_grpc1Request::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* getDeviceInfoRequest::release_clientuuid() { +inline std::string* setCameraParameters_grpc1Request::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) return _impl_.clientuuid_.Release(); } -inline void getDeviceInfoRequest::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 @@ -12830,353 +15256,201 @@ 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) -} - -// 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.getDeviceInfoRequest.deviceInfo) - return _impl_.deviceinfo_.Release(); -} -inline void getDeviceInfoRequest::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.getDeviceInfoRequest.deviceInfo) -} - -// ------------------------------------------------------------------- - -// getDeviceInfoResponse - -// bytes deviceInfo = 1; -inline void getDeviceInfoResponse::clear_deviceinfo() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.ClearToEmpty(); -} -inline const std::string& getDeviceInfoResponse::deviceinfo() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) - return _internal_deviceinfo(); -} -template -inline PROTOBUF_ALWAYS_INLINE void getDeviceInfoResponse::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.getDeviceInfoResponse.deviceInfo) -} -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& getDeviceInfoResponse::_internal_deviceinfo() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.deviceinfo_.Get(); -} -inline void getDeviceInfoResponse::_internal_set_deviceinfo(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.deviceinfo_.Set(value, GetArena()); -} -inline std::string* getDeviceInfoResponse::_internal_mutable_deviceinfo() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.deviceinfo_.Mutable( GetArena()); -} -inline std::string* getDeviceInfoResponse::release_deviceinfo() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getDeviceInfoResponse.deviceInfo) - return _impl_.deviceinfo_.Release(); -} -inline void getDeviceInfoResponse::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.getDeviceInfoResponse.deviceInfo) -} - -// sint32 xpcfGrpcReturnValue = 2; -inline void getDeviceInfoResponse::clear_xpcfgrpcreturnvalue() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; -} -inline ::int32_t getDeviceInfoResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getDeviceInfoResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); -} -inline void getDeviceInfoResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getDeviceInfoResponse.xpcfGrpcReturnValue) -} -inline ::int32_t getDeviceInfoResponse::_internal_xpcfgrpcreturnvalue() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; -} -inline void getDeviceInfoResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; -} - -// ------------------------------------------------------------------- - -// init_grpc0Request - -// int32 grpcServerCompressionFormat = 1; -inline void init_grpc0Request::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) - return _internal_grpcservercompressionformat(); -} -inline void init_grpc0Request::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Request.grpcServerCompressionFormat) -} -inline ::int32_t init_grpc0Request::_internal_grpcservercompressionformat() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; -} -inline void init_grpc0Request::_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 init_grpc0Request::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& init_grpc0Request::accesstoken() const +inline const std::string& setCameraParameters_grpc1Request::cameraparams1() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Request.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) + return _internal_cameraparams1(); } template -inline PROTOBUF_ALWAYS_INLINE void init_grpc0Request::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.init_grpc0Request.accessToken) + _impl_.cameraparams1_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) } -inline std::string* init_grpc0Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc0Request.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& init_grpc0Request::_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 init_grpc0Request::_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* init_grpc0Request::_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* init_grpc0Request::release_accesstoken() { +inline std::string* setCameraParameters_grpc1Request::release_cameraparams1() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc0Request.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) + return _impl_.cameraparams1_.Release(); } -inline void init_grpc0Request::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.init_grpc0Request.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) } -// string clientUUID = 3; -inline void init_grpc0Request::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& init_grpc0Request::clientuuid() const +inline const std::string& setCameraParameters_grpc1Request::cameraparams2() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc0Request.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) + return _internal_cameraparams2(); } template -inline PROTOBUF_ALWAYS_INLINE void init_grpc0Request::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.init_grpc0Request.clientUUID) + _impl_.cameraparams2_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) } -inline std::string* init_grpc0Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.init_grpc0Request.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& init_grpc0Request::_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 init_grpc0Request::_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* init_grpc0Request::_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* init_grpc0Request::release_clientuuid() { +inline std::string* setCameraParameters_grpc1Request::release_cameraparams2() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc0Request.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) + return _impl_.cameraparams2_.Release(); } -inline void init_grpc0Request::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.init_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) } // ------------------------------------------------------------------- -// init_grpc0Response +// setCameraParameters_grpc1Response // sint32 xpcfGrpcReturnValue = 1; -inline void init_grpc0Response::clear_xpcfgrpcreturnvalue() { +inline void setCameraParameters_grpc1Response::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 setCameraParameters_grpc1Response::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Response.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void init_grpc0Response::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setCameraParameters_grpc1Response::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc0Response.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Response.xpcfGrpcReturnValue) } -inline ::int32_t init_grpc0Response::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t setCameraParameters_grpc1Response::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void init_grpc0Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setCameraParameters_grpc1Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// init_grpc1Request +// setRectificationParametersRequest // int32 grpcServerCompressionFormat = 1; -inline void init_grpc1Request::clear_grpcservercompressionformat() { +inline void setRectificationParametersRequest::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 setRectificationParametersRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void init_grpc1Request::set_grpcservercompressionformat(::int32_t value) { +inline void setRectificationParametersRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Request.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.grpcServerCompressionFormat) } -inline ::int32_t init_grpc1Request::_internal_grpcservercompressionformat() const { +inline ::int32_t setRectificationParametersRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void init_grpc1Request::_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 init_grpc1Request::clear_accesstoken() { +inline void setRectificationParametersRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& init_grpc1Request::accesstoken() const +inline const std::string& setRectificationParametersRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void init_grpc1Request::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.init_grpc1Request.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.accessToken) } -inline std::string* init_grpc1Request::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.init_grpc1Request.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setRectificationParametersRequest.accessToken) return _s; } -inline const std::string& init_grpc1Request::_internal_accesstoken() const { +inline const std::string& setRectificationParametersRequest::_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 setRectificationParametersRequest::_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* setRectificationParametersRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* init_grpc1Request::release_accesstoken() { +inline std::string* setRectificationParametersRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc1Request.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void init_grpc1Request::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 @@ -13184,49 +15458,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.setRectificationParametersRequest.accessToken) } // string clientUUID = 3; -inline void init_grpc1Request::clear_clientuuid() { +inline void setRectificationParametersRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& init_grpc1Request::clientuuid() const +inline const std::string& setRectificationParametersRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void init_grpc1Request::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.init_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) } -inline std::string* init_grpc1Request::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.init_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) return _s; } -inline const std::string& init_grpc1Request::_internal_clientuuid() const { +inline const std::string& setRectificationParametersRequest::_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 setRectificationParametersRequest::_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* setRectificationParametersRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* init_grpc1Request::release_clientuuid() { +inline std::string* setRectificationParametersRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.init_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void init_grpc1Request::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 @@ -13234,123 +15508,201 @@ 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.setRectificationParametersRequest.clientUUID) } -// sint32 pipelineMode = 4; -inline void init_grpc1Request::clear_pipelinemode() { +// bytes rectCam1 = 4; +inline void setRectificationParametersRequest::clear_rectcam1() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pipelinemode_ = 0; + _impl_.rectcam1_.ClearToEmpty(); } -inline ::int32_t init_grpc1Request::pipelinemode() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.init_grpc1Request.pipelineMode) - return _internal_pipelinemode(); +inline const std::string& setRectificationParametersRequest::rectcam1() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.rectCam1) + return _internal_rectcam1(); } -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 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_.rectcam2_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) +} +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 const std::string& setRectificationParametersRequest::_internal_rectcam2() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.rectcam2_.Get(); +} +inline void setRectificationParametersRequest::_internal_set_rectcam2(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.rectcam2_.Set(value, GetArena()); +} +inline std::string* setRectificationParametersRequest::_internal_mutable_rectcam2() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.rectcam2_.Mutable( GetArena()); } -inline ::int32_t init_grpc1Request::_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 init_grpc1Request::_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) } // ------------------------------------------------------------------- -// init_grpc1Response +// setRectificationParametersResponse // sint32 xpcfGrpcReturnValue = 1; -inline void init_grpc1Response::clear_xpcfgrpcreturnvalue() { +inline void setRectificationParametersResponse::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 setRectificationParametersResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void init_grpc1Response::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setRectificationParametersResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.init_grpc1Response.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersResponse.xpcfGrpcReturnValue) } -inline ::int32_t init_grpc1Response::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t setRectificationParametersResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void init_grpc1Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setRectificationParametersResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// startRequest +// getCameraParametersRequest // int32 grpcServerCompressionFormat = 1; -inline void startRequest::clear_grpcservercompressionformat() { +inline void getCameraParametersRequest::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 getCameraParametersRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void startRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getCameraParametersRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.startRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.grpcServerCompressionFormat) } -inline ::int32_t startRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getCameraParametersRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void startRequest::_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 startRequest::clear_accesstoken() { +inline void getCameraParametersRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& startRequest::accesstoken() const +inline const std::string& getCameraParametersRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void startRequest::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.startRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.accessToken) } -inline std::string* startRequest::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.startRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersRequest.accessToken) return _s; } -inline const std::string& startRequest::_internal_accesstoken() const { +inline const std::string& getCameraParametersRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void startRequest::_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* startRequest::_internal_mutable_accesstoken() { +inline std::string* getCameraParametersRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* startRequest::release_accesstoken() { +inline std::string* getCameraParametersRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.startRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void startRequest::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 @@ -13358,49 +15710,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.getCameraParametersRequest.accessToken) } // string clientUUID = 3; -inline void startRequest::clear_clientuuid() { +inline void getCameraParametersRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& startRequest::clientuuid() const +inline const std::string& getCameraParametersRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.startRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void startRequest::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.startRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.clientUUID) } -inline std::string* startRequest::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.startRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersRequest.clientUUID) return _s; } -inline const std::string& startRequest::_internal_clientuuid() const { +inline const std::string& getCameraParametersRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void startRequest::_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* startRequest::_internal_mutable_clientuuid() { +inline std::string* getCameraParametersRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* startRequest::release_clientuuid() { +inline std::string* getCameraParametersRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.startRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void startRequest::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 @@ -13408,253 +15760,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.getCameraParametersRequest.clientUUID) } -// string accessToken = 2; -inline void stopRequest::clear_accesstoken() { +// bytes cameraParams = 4; +inline void getCameraParametersRequest::clear_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); + _impl_.cameraparams_.ClearToEmpty(); } -inline const std::string& stopRequest::accesstoken() const +inline const std::string& getCameraParametersRequest::cameraparams() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopRequest.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.cameraParams) + return _internal_cameraparams(); } template -inline PROTOBUF_ALWAYS_INLINE void stopRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getCameraParametersRequest::set_cameraparams(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_.cameraparams_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.cameraParams) } -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* getCameraParametersRequest::mutable_cameraparams() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparams(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getCameraParametersRequest.cameraParams) return _s; } -inline const std::string& stopRequest::_internal_accesstoken() const { +inline const std::string& getCameraParametersRequest::_internal_cameraparams() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.cameraparams_.Get(); } -inline void stopRequest::_internal_set_accesstoken(const std::string& value) { +inline void getCameraParametersRequest::_internal_set_cameraparams(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.cameraparams_.Set(value, GetArena()); } -inline std::string* stopRequest::_internal_mutable_accesstoken() { +inline std::string* getCameraParametersRequest::_internal_mutable_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.cameraparams_.Mutable( GetArena()); } -inline std::string* stopRequest::release_accesstoken() { +inline std::string* getCameraParametersRequest::release_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.stopRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.cameraParams) + return _impl_.cameraparams_.Release(); } -inline void stopRequest::set_allocated_accesstoken(std::string* value) { +inline void getCameraParametersRequest::set_allocated_cameraparams(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.cameraparams_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.cameraparams_.IsDefault()) { + _impl_.cameraparams_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.stopRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersRequest.cameraParams) } -// string clientUUID = 3; -inline void stopRequest::clear_clientuuid() { +// ------------------------------------------------------------------- + +// getCameraParametersResponse + +// bytes cameraParams = 1; +inline void getCameraParametersResponse::clear_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.cameraparams_.ClearToEmpty(); } -inline const std::string& stopRequest::clientuuid() const +inline const std::string& getCameraParametersResponse::cameraparams() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.stopRequest.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersResponse.cameraParams) + return _internal_cameraparams(); } template -inline PROTOBUF_ALWAYS_INLINE void stopRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getCameraParametersResponse::set_cameraparams(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_.cameraparams_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersResponse.cameraParams) } -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* 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& stopRequest::_internal_clientuuid() const { +inline const std::string& getCameraParametersResponse::_internal_cameraparams() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuid_.Get(); + return _impl_.cameraparams_.Get(); } -inline void stopRequest::_internal_set_clientuuid(const std::string& value) { +inline void getCameraParametersResponse::_internal_set_cameraparams(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(value, GetArena()); + _impl_.cameraparams_.Set(value, GetArena()); } -inline std::string* stopRequest::_internal_mutable_clientuuid() { +inline std::string* getCameraParametersResponse::_internal_mutable_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuid_.Mutable( GetArena()); + return _impl_.cameraparams_.Mutable( GetArena()); } -inline std::string* stopRequest::release_clientuuid() { +inline std::string* getCameraParametersResponse::release_cameraparams() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.stopRequest.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersResponse.cameraParams) + return _impl_.cameraparams_.Release(); } -inline void stopRequest::set_allocated_clientuuid(std::string* value) { +inline void getCameraParametersResponse::set_allocated_cameraparams(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.SetAllocated(value, GetArena()); + _impl_.cameraparams_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuid_.IsDefault()) { - _impl_.clientuuid_.Set("", GetArena()); + if (_impl_.cameraparams_.IsDefault()) { + _impl_.cameraparams_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.stopRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersResponse.cameraParams) } -// ------------------------------------------------------------------- - -// stopResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void stopResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 2; +inline void getCameraParametersResponse::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 getCameraParametersResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void stopResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getCameraParametersResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.stopResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersResponse.xpcfGrpcReturnValue) } -inline ::int32_t stopResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getCameraParametersResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void stopResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getCameraParametersResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getProcessingModeRequest +// imageProcessRequestRequest // int32 grpcServerCompressionFormat = 1; -inline void getProcessingModeRequest::clear_grpcservercompressionformat() { +inline void imageProcessRequestRequest::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 imageProcessRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getProcessingModeRequest::set_grpcservercompressionformat(::int32_t value) { +inline void imageProcessRequestRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.grpcServerCompressionFormat) } -inline ::int32_t getProcessingModeRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t imageProcessRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getProcessingModeRequest::_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 getProcessingModeRequest::clear_accesstoken() { +inline void imageProcessRequestRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getProcessingModeRequest::accesstoken() const +inline const std::string& imageProcessRequestRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getProcessingModeRequest::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.getProcessingModeRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.accessToken) } -inline std::string* getProcessingModeRequest::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.getProcessingModeRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.accessToken) return _s; } -inline const std::string& getProcessingModeRequest::_internal_accesstoken() const { +inline const std::string& imageProcessRequestRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getProcessingModeRequest::_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* getProcessingModeRequest::_internal_mutable_accesstoken() { +inline std::string* imageProcessRequestRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getProcessingModeRequest::release_accesstoken() { +inline std::string* imageProcessRequestRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getProcessingModeRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getProcessingModeRequest::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 @@ -13662,49 +15962,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.imageProcessRequestRequest.accessToken) } // string clientUUID = 3; -inline void getProcessingModeRequest::clear_clientuuid() { +inline void imageProcessRequestRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& getProcessingModeRequest::clientuuid() const +inline const std::string& imageProcessRequestRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getProcessingModeRequest::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.getProcessingModeRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) } -inline std::string* getProcessingModeRequest::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.getProcessingModeRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) return _s; } -inline const std::string& getProcessingModeRequest::_internal_clientuuid() const { +inline const std::string& imageProcessRequestRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void getProcessingModeRequest::_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* getProcessingModeRequest::_internal_mutable_clientuuid() { +inline std::string* imageProcessRequestRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* getProcessingModeRequest::release_clientuuid() { +inline std::string* imageProcessRequestRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getProcessingModeRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void getProcessingModeRequest::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 @@ -13712,599 +16012,711 @@ 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.imageProcessRequestRequest.clientUUID) } -// sint32 pipelineMode = 4; -inline void getProcessingModeRequest::clear_pipelinemode() { +// bytes images = 4; +inline void imageProcessRequestRequest::clear_images() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pipelinemode_ = 0; + _impl_.images_.ClearToEmpty(); } -inline ::int32_t getProcessingModeRequest::pipelinemode() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeRequest.pipelineMode) - return _internal_pipelinemode(); +inline const std::string& imageProcessRequestRequest::images() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.images) + return _internal_images(); } -inline void getProcessingModeRequest::set_pipelinemode(::int32_t value) { - _internal_set_pipelinemode(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeRequest.pipelineMode) +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 ::int32_t getProcessingModeRequest::_internal_pipelinemode() const { +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_.pipelinemode_; + return _impl_.images_.Get(); } -inline void getProcessingModeRequest::_internal_set_pipelinemode(::int32_t value) { +inline void imageProcessRequestRequest::_internal_set_images(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pipelinemode_ = value; + _impl_.images_.Set(value, GetArena()); } - -// ------------------------------------------------------------------- - -// getProcessingModeResponse - -// sint32 pipelineMode = 1; -inline void getProcessingModeResponse::clear_pipelinemode() { +inline std::string* imageProcessRequestRequest::_internal_mutable_images() { ::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_.images_.Mutable( GetArena()); } -inline ::int32_t getProcessingModeResponse::_internal_pipelinemode() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pipelinemode_; +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 getProcessingModeResponse::_internal_set_pipelinemode(::int32_t value) { +inline void imageProcessRequestRequest::set_allocated_images(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pipelinemode_ = value; + _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) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getProcessingModeResponse::clear_xpcfgrpcreturnvalue() { +// bytes poses = 5; +inline void imageProcessRequestRequest::clear_poses() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.poses_.ClearToEmpty(); } -inline ::int32_t getProcessingModeResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getProcessingModeResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline const std::string& imageProcessRequestRequest::poses() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.poses) + return _internal_poses(); } -inline void getProcessingModeResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getProcessingModeResponse.xpcfGrpcReturnValue) +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 ::int32_t getProcessingModeResponse::_internal_xpcfgrpcreturnvalue() const { +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_.xpcfgrpcreturnvalue_; + return _impl_.poses_.Get(); } -inline void getProcessingModeResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void imageProcessRequestRequest::_internal_set_poses(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + _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) } -// ------------------------------------------------------------------- - -// setCameraParameters_grpc0Request - -// int32 grpcServerCompressionFormat = 1; -inline void setCameraParameters_grpc0Request::clear_grpcservercompressionformat() { +// bool fixedPose = 6; +inline void imageProcessRequestRequest::clear_fixedpose() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + _impl_.fixedpose_ = false; } -inline ::int32_t setCameraParameters_grpc0Request::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline bool imageProcessRequestRequest::fixedpose() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.fixedPose) + return _internal_fixedpose(); } -inline void setCameraParameters_grpc0Request::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Request.grpcServerCompressionFormat) +inline void imageProcessRequestRequest::set_fixedpose(bool value) { + _internal_set_fixedpose(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.fixedPose) } -inline ::int32_t setCameraParameters_grpc0Request::_internal_grpcservercompressionformat() const { +inline bool imageProcessRequestRequest::_internal_fixedpose() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.fixedpose_; } -inline void setCameraParameters_grpc0Request::_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 setCameraParameters_grpc0Request::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& setCameraParameters_grpc0Request::accesstoken() const +inline const std::string& imageProcessRequestRequest::worldtransform() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) + return _internal_worldtransform(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::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.setCameraParameters_grpc0Request.accessToken) + _impl_.worldtransform_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) } -inline std::string* setCameraParameters_grpc0Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc0Request.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& setCameraParameters_grpc0Request::_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 setCameraParameters_grpc0Request::_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* setCameraParameters_grpc0Request::_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* setCameraParameters_grpc0Request::release_accesstoken() { +inline std::string* imageProcessRequestRequest::release_worldtransform() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) + return _impl_.worldtransform_.Release(); } -inline void setCameraParameters_grpc0Request::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.setCameraParameters_grpc0Request.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) } -// string clientUUID = 3; -inline void setCameraParameters_grpc0Request::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& setCameraParameters_grpc0Request::clientuuid() const +inline const std::string& imageProcessRequestRequest::timestamp() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.timestamp) + return _internal_timestamp(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::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.setCameraParameters_grpc0Request.clientUUID) + _impl_.timestamp_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.timestamp) } -inline std::string* setCameraParameters_grpc0Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc0Request.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& setCameraParameters_grpc0Request::_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 setCameraParameters_grpc0Request::_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* setCameraParameters_grpc0Request::_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* setCameraParameters_grpc0Request::release_clientuuid() { +inline std::string* imageProcessRequestRequest::release_timestamp() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.timestamp) + return _impl_.timestamp_.Release(); } -inline void setCameraParameters_grpc0Request::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.setCameraParameters_grpc0Request.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.timestamp) } -// bytes cameraParams = 4; -inline void setCameraParameters_grpc0Request::clear_cameraparams() { +// sint32 transform3DStatus = 9; +inline void imageProcessRequestRequest::clear_transform3dstatus() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.ClearToEmpty(); + _impl_.transform3dstatus_ = 0; } -inline const std::string& setCameraParameters_grpc0Request::cameraparams() 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.setCameraParameters_grpc0Request.cameraParams) - return _internal_cameraparams(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.transform3D) + return _internal_transform3d(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc0Request::set_cameraparams(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_transform3d(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) + _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.transform3D) } -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) +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& setCameraParameters_grpc0Request::_internal_cameraparams() const { +inline const std::string& imageProcessRequestRequest::_internal_transform3d() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparams_.Get(); + return _impl_.transform3d_.Get(); } -inline void setCameraParameters_grpc0Request::_internal_set_cameraparams(const std::string& value) { +inline void imageProcessRequestRequest::_internal_set_transform3d(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.Set(value, GetArena()); + _impl_.transform3d_.Set(value, GetArena()); } -inline std::string* setCameraParameters_grpc0Request::_internal_mutable_cameraparams() { +inline std::string* imageProcessRequestRequest::_internal_mutable_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparams_.Mutable( GetArena()); + return _impl_.transform3d_.Mutable( GetArena()); } -inline std::string* setCameraParameters_grpc0Request::release_cameraparams() { +inline std::string* imageProcessRequestRequest::release_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc0Request.cameraParams) - return _impl_.cameraparams_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.transform3D) + return _impl_.transform3d_.Release(); } -inline void setCameraParameters_grpc0Request::set_allocated_cameraparams(std::string* value) { +inline void imageProcessRequestRequest::set_allocated_transform3d(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.SetAllocated(value, GetArena()); + _impl_.transform3d_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparams_.IsDefault()) { - _impl_.cameraparams_.Set("", GetArena()); + if (_impl_.transform3d_.IsDefault()) { + _impl_.transform3d_.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.imageProcessRequestRequest.transform3D) } -// ------------------------------------------------------------------- - -// setCameraParameters_grpc0Response - -// sint32 xpcfGrpcReturnValue = 1; -inline void setCameraParameters_grpc0Response::clear_xpcfgrpcreturnvalue() { +// bytes confidence = 11; +inline void imageProcessRequestRequest::clear_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.confidence_.ClearToEmpty(); } -inline ::int32_t setCameraParameters_grpc0Response::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc0Response.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline const std::string& imageProcessRequestRequest::confidence() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.confidence) + return _internal_confidence(); } -inline void setCameraParameters_grpc0Response::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc0Response.xpcfGrpcReturnValue) +template +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_confidence(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) } -inline ::int32_t setCameraParameters_grpc0Response::_internal_xpcfgrpcreturnvalue() const { +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& imageProcessRequestRequest::_internal_confidence() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; + return _impl_.confidence_.Get(); } -inline void setCameraParameters_grpc0Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void imageProcessRequestRequest::_internal_set_confidence(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + _impl_.confidence_.Set(value, GetArena()); } - -// ------------------------------------------------------------------- - -// setCameraParameters_grpc1Request - -// int32 grpcServerCompressionFormat = 1; -inline void setCameraParameters_grpc1Request::clear_grpcservercompressionformat() { +inline std::string* imageProcessRequestRequest::_internal_mutable_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + return _impl_.confidence_.Mutable( GetArena()); } -inline ::int32_t setCameraParameters_grpc1Request::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline std::string* imageProcessRequestRequest::release_confidence() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.confidence) + return _impl_.confidence_.Release(); } -inline void setCameraParameters_grpc1Request::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Request.grpcServerCompressionFormat) +inline void imageProcessRequestRequest::set_allocated_confidence(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.confidence_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.confidence_.IsDefault()) { + _impl_.confidence_.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 ::int32_t setCameraParameters_grpc1Request::_internal_grpcservercompressionformat() const { +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_.grpcservercompressionformat_; + return _impl_.mappingstatus_; } -inline void setCameraParameters_grpc1Request::_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 setCameraParameters_grpc1Request::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& setCameraParameters_grpc1Request::accesstoken() const +inline const std::string& imageProcessRequestRequest::detectedobjects() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) + return _internal_detectedobjects(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::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.setCameraParameters_grpc1Request.accessToken) + _impl_.detectedobjects_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) } -inline std::string* setCameraParameters_grpc1Request::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.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& setCameraParameters_grpc1Request::_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 setCameraParameters_grpc1Request::_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* setCameraParameters_grpc1Request::_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* setCameraParameters_grpc1Request::release_accesstoken() { +inline std::string* imageProcessRequestRequest::release_detectedobjects() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) + return _impl_.detectedobjects_.Release(); } -inline void setCameraParameters_grpc1Request::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.setCameraParameters_grpc1Request.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) } -// string clientUUID = 3; -inline void setCameraParameters_grpc1Request::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& setCameraParameters_grpc1Request::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.setCameraParameters_grpc1Request.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.transform3D) + return _internal_transform3d(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::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.setCameraParameters_grpc1Request.clientUUID) + _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.transform3D) } -inline std::string* setCameraParameters_grpc1Request::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_clientuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setCameraParameters_grpc1Request.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& setCameraParameters_grpc1Request::_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 setCameraParameters_grpc1Request::_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* setCameraParameters_grpc1Request::_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* setCameraParameters_grpc1Request::release_clientuuid() { +inline std::string* imageProcessRequestResponse::release_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestResponse.transform3D) + return _impl_.transform3d_.Release(); } -inline void setCameraParameters_grpc1Request::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.setCameraParameters_grpc1Request.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestResponse.transform3D) } -// bytes cameraParams1 = 4; -inline void setCameraParameters_grpc1Request::clear_cameraparams1() { +// bytes confidence = 3; +inline void imageProcessRequestResponse::clear_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams1_.ClearToEmpty(); + _impl_.confidence_.ClearToEmpty(); } -inline const std::string& setCameraParameters_grpc1Request::cameraparams1() const +inline const std::string& imageProcessRequestResponse::confidence() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) - return _internal_cameraparams1(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.confidence) + return _internal_confidence(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::set_cameraparams1(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestResponse::set_confidence(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_.confidence_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.confidence) } -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* 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& setCameraParameters_grpc1Request::_internal_cameraparams1() const { +inline const std::string& imageProcessRequestResponse::_internal_confidence() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparams1_.Get(); + return _impl_.confidence_.Get(); } -inline void setCameraParameters_grpc1Request::_internal_set_cameraparams1(const std::string& value) { +inline void imageProcessRequestResponse::_internal_set_confidence(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams1_.Set(value, GetArena()); + _impl_.confidence_.Set(value, GetArena()); } -inline std::string* setCameraParameters_grpc1Request::_internal_mutable_cameraparams1() { +inline std::string* imageProcessRequestResponse::_internal_mutable_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparams1_.Mutable( GetArena()); + return _impl_.confidence_.Mutable( GetArena()); } -inline std::string* setCameraParameters_grpc1Request::release_cameraparams1() { +inline std::string* imageProcessRequestResponse::release_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams1) - return _impl_.cameraparams1_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestResponse.confidence) + return _impl_.confidence_.Release(); } -inline void setCameraParameters_grpc1Request::set_allocated_cameraparams1(std::string* value) { +inline void imageProcessRequestResponse::set_allocated_confidence(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams1_.SetAllocated(value, GetArena()); + _impl_.confidence_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparams1_.IsDefault()) { - _impl_.cameraparams1_.Set("", GetArena()); + if (_impl_.confidence_.IsDefault()) { + _impl_.confidence_.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.imageProcessRequestResponse.confidence) } -// bytes cameraParams2 = 5; -inline void setCameraParameters_grpc1Request::clear_cameraparams2() { +// sint32 mappingStatus = 4; +inline void imageProcessRequestResponse::clear_mappingstatus() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams2_.ClearToEmpty(); + _impl_.mappingstatus_ = 0; } -inline const std::string& setCameraParameters_grpc1Request::cameraparams2() const +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 detectedObjects = 5; +inline void imageProcessRequestResponse::clear_detectedobjects() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.detectedobjects_.ClearToEmpty(); +} +inline const std::string& imageProcessRequestResponse::detectedobjects() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) - return _internal_cameraparams2(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) + return _internal_detectedobjects(); } template -inline PROTOBUF_ALWAYS_INLINE void setCameraParameters_grpc1Request::set_cameraparams2(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestResponse::set_detectedobjects(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_.detectedobjects_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) } -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* 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& setCameraParameters_grpc1Request::_internal_cameraparams2() const { +inline const std::string& imageProcessRequestResponse::_internal_detectedobjects() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparams2_.Get(); + return _impl_.detectedobjects_.Get(); } -inline void setCameraParameters_grpc1Request::_internal_set_cameraparams2(const std::string& value) { +inline void imageProcessRequestResponse::_internal_set_detectedobjects(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams2_.Set(value, GetArena()); + _impl_.detectedobjects_.Set(value, GetArena()); } -inline std::string* setCameraParameters_grpc1Request::_internal_mutable_cameraparams2() { +inline std::string* imageProcessRequestResponse::_internal_mutable_detectedobjects() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparams2_.Mutable( GetArena()); + return _impl_.detectedobjects_.Mutable( GetArena()); } -inline std::string* setCameraParameters_grpc1Request::release_cameraparams2() { +inline std::string* imageProcessRequestResponse::release_detectedobjects() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) - return _impl_.cameraparams2_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) + return _impl_.detectedobjects_.Release(); } -inline void setCameraParameters_grpc1Request::set_allocated_cameraparams2(std::string* value) { +inline void imageProcessRequestResponse::set_allocated_detectedobjects(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams2_.SetAllocated(value, GetArena()); + _impl_.detectedobjects_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparams2_.IsDefault()) { - _impl_.cameraparams2_.Set("", GetArena()); + if (_impl_.detectedobjects_.IsDefault()) { + _impl_.detectedobjects_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setCameraParameters_grpc1Request.cameraParams2) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) } -// ------------------------------------------------------------------- - -// setCameraParameters_grpc1Response - -// sint32 xpcfGrpcReturnValue = 1; -inline void setCameraParameters_grpc1Response::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 6; +inline void imageProcessRequestResponse::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) +inline ::int32_t imageProcessRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void setCameraParameters_grpc1Response::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void imageProcessRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setCameraParameters_grpc1Response.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t setCameraParameters_grpc1Response::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t imageProcessRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void setCameraParameters_grpc1Response::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void imageProcessRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// setRectificationParametersRequest +// getMappingDataRequestRequest // int32 grpcServerCompressionFormat = 1; -inline void setRectificationParametersRequest::clear_grpcservercompressionformat() { +inline void getMappingDataRequestRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t setRectificationParametersRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.grpcServerCompressionFormat) +inline ::int32_t getMappingDataRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void setRectificationParametersRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getMappingDataRequestRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.grpcServerCompressionFormat) } -inline ::int32_t setRectificationParametersRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getMappingDataRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void setRectificationParametersRequest::_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 setRectificationParametersRequest::clear_accesstoken() { +inline void getMappingDataRequestRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& setRectificationParametersRequest::accesstoken() const +inline const std::string& getMappingDataRequestRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void setRectificationParametersRequest::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.setRectificationParametersRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) } -inline std::string* setRectificationParametersRequest::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.setRectificationParametersRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) return _s; } -inline const std::string& setRectificationParametersRequest::_internal_accesstoken() const { +inline const std::string& getMappingDataRequestRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void setRectificationParametersRequest::_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* setRectificationParametersRequest::_internal_mutable_accesstoken() { +inline std::string* getMappingDataRequestRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* setRectificationParametersRequest::release_accesstoken() { +inline std::string* getMappingDataRequestRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void setRectificationParametersRequest::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 @@ -14312,49 +16724,49 @@ inline void setRectificationParametersRequest::set_allocated_accesstoken(std::st _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setRectificationParametersRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) } // string clientUUID = 3; -inline void setRectificationParametersRequest::clear_clientuuid() { +inline void getMappingDataRequestRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& setRectificationParametersRequest::clientuuid() const +inline const std::string& getMappingDataRequestRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void setRectificationParametersRequest::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.setRectificationParametersRequest.clientUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) } -inline std::string* setRectificationParametersRequest::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.setRectificationParametersRequest.clientUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) return _s; } -inline const std::string& setRectificationParametersRequest::_internal_clientuuid() const { +inline const std::string& getMappingDataRequestRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void setRectificationParametersRequest::_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* setRectificationParametersRequest::_internal_mutable_clientuuid() { +inline std::string* getMappingDataRequestRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* setRectificationParametersRequest::release_clientuuid() { +inline std::string* getMappingDataRequestRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void setRectificationParametersRequest::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 @@ -14362,453 +16774,301 @@ inline void setRectificationParametersRequest::set_allocated_clientuuid(std::str _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setRectificationParametersRequest.clientUUID) -} - -// 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_.rectcam2_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setRectificationParametersRequest.rectCam2) -} -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 const std::string& setRectificationParametersRequest::_internal_rectcam2() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.rectcam2_.Get(); -} -inline void setRectificationParametersRequest::_internal_set_rectcam2(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.rectcam2_.Set(value, GetArena()); -} -inline std::string* setRectificationParametersRequest::_internal_mutable_rectcam2() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.rectcam2_.Mutable( GetArena()); -} -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 setRectificationParametersRequest::set_allocated_rectcam2(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _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) -} - -// ------------------------------------------------------------------- - -// 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; -} - -// ------------------------------------------------------------------- - -// getCameraParametersRequest - -// int32 grpcServerCompressionFormat = 1; -inline void getCameraParametersRequest::clear_grpcservercompressionformat() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; -} -inline ::int32_t getCameraParametersRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); -} -inline void getCameraParametersRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersRequest.grpcServerCompressionFormat) -} -inline ::int32_t getCameraParametersRequest::_internal_grpcservercompressionformat() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; -} -inline void getCameraParametersRequest::_internal_set_grpcservercompressionformat(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) } -// string accessToken = 2; -inline void getCameraParametersRequest::clear_accesstoken() { +// bytes outputPointClouds = 4; +inline void getMappingDataRequestRequest::clear_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); + _impl_.outputpointclouds_.ClearToEmpty(); } -inline const std::string& getCameraParametersRequest::accesstoken() const +inline const std::string& getMappingDataRequestRequest::outputpointclouds() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) + return _internal_outputpointclouds(); } template -inline PROTOBUF_ALWAYS_INLINE void getCameraParametersRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_outputpointclouds(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_.outputpointclouds_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) } -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* 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& getCameraParametersRequest::_internal_accesstoken() const { +inline const std::string& getMappingDataRequestRequest::_internal_outputpointclouds() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.outputpointclouds_.Get(); } -inline void getCameraParametersRequest::_internal_set_accesstoken(const std::string& value) { +inline void getMappingDataRequestRequest::_internal_set_outputpointclouds(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.outputpointclouds_.Set(value, GetArena()); } -inline std::string* getCameraParametersRequest::_internal_mutable_accesstoken() { +inline std::string* getMappingDataRequestRequest::_internal_mutable_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.outputpointclouds_.Mutable( GetArena()); } -inline std::string* getCameraParametersRequest::release_accesstoken() { +inline std::string* getMappingDataRequestRequest::release_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) + return _impl_.outputpointclouds_.Release(); } -inline void getCameraParametersRequest::set_allocated_accesstoken(std::string* value) { +inline void getMappingDataRequestRequest::set_allocated_outputpointclouds(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.outputpointclouds_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.outputpointclouds_.IsDefault()) { + _impl_.outputpointclouds_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) } -// string clientUUID = 3; -inline void getCameraParametersRequest::clear_clientuuid() { +// bytes keyframePoses = 5; +inline void getMappingDataRequestRequest::clear_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.keyframeposes_.ClearToEmpty(); } -inline const std::string& getCameraParametersRequest::clientuuid() const +inline const std::string& getMappingDataRequestRequest::keyframeposes() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) + return _internal_keyframeposes(); } template -inline PROTOBUF_ALWAYS_INLINE void getCameraParametersRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_keyframeposes(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_.keyframeposes_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) } -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* 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& getCameraParametersRequest::_internal_clientuuid() const { +inline const std::string& getMappingDataRequestRequest::_internal_keyframeposes() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuid_.Get(); + return _impl_.keyframeposes_.Get(); } -inline void getCameraParametersRequest::_internal_set_clientuuid(const std::string& value) { +inline void getMappingDataRequestRequest::_internal_set_keyframeposes(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(value, GetArena()); + _impl_.keyframeposes_.Set(value, GetArena()); } -inline std::string* getCameraParametersRequest::_internal_mutable_clientuuid() { +inline std::string* getMappingDataRequestRequest::_internal_mutable_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuid_.Mutable( GetArena()); + return _impl_.keyframeposes_.Mutable( GetArena()); } -inline std::string* getCameraParametersRequest::release_clientuuid() { +inline std::string* getMappingDataRequestRequest::release_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) + return _impl_.keyframeposes_.Release(); } -inline void getCameraParametersRequest::set_allocated_clientuuid(std::string* value) { +inline void getMappingDataRequestRequest::set_allocated_keyframeposes(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.SetAllocated(value, GetArena()); + _impl_.keyframeposes_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.clientuuid_.IsDefault()) { - _impl_.clientuuid_.Set("", GetArena()); + if (_impl_.keyframeposes_.IsDefault()) { + _impl_.keyframeposes_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersRequest.clientUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) } -// bytes cameraParams = 4; -inline void getCameraParametersRequest::clear_cameraparams() { +// ------------------------------------------------------------------- + +// getMappingDataRequestResponse + +// bytes outputPointClouds = 1; +inline void getMappingDataRequestResponse::clear_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.ClearToEmpty(); + _impl_.outputpointclouds_.ClearToEmpty(); } -inline const std::string& getCameraParametersRequest::cameraparams() const +inline const std::string& getMappingDataRequestResponse::outputpointclouds() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersRequest.cameraParams) - return _internal_cameraparams(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) + return _internal_outputpointclouds(); } template -inline PROTOBUF_ALWAYS_INLINE void getCameraParametersRequest::set_cameraparams(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestResponse::set_outputpointclouds(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_.outputpointclouds_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) } -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* 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& getCameraParametersRequest::_internal_cameraparams() const { +inline const std::string& getMappingDataRequestResponse::_internal_outputpointclouds() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparams_.Get(); + return _impl_.outputpointclouds_.Get(); } -inline void getCameraParametersRequest::_internal_set_cameraparams(const std::string& value) { +inline void getMappingDataRequestResponse::_internal_set_outputpointclouds(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.Set(value, GetArena()); + _impl_.outputpointclouds_.Set(value, GetArena()); } -inline std::string* getCameraParametersRequest::_internal_mutable_cameraparams() { +inline std::string* getMappingDataRequestResponse::_internal_mutable_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparams_.Mutable( GetArena()); + return _impl_.outputpointclouds_.Mutable( GetArena()); } -inline std::string* getCameraParametersRequest::release_cameraparams() { +inline std::string* getMappingDataRequestResponse::release_outputpointclouds() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersRequest.cameraParams) - return _impl_.cameraparams_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) + return _impl_.outputpointclouds_.Release(); } -inline void getCameraParametersRequest::set_allocated_cameraparams(std::string* value) { +inline void getMappingDataRequestResponse::set_allocated_outputpointclouds(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.SetAllocated(value, GetArena()); + _impl_.outputpointclouds_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparams_.IsDefault()) { - _impl_.cameraparams_.Set("", GetArena()); + if (_impl_.outputpointclouds_.IsDefault()) { + _impl_.outputpointclouds_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersRequest.cameraParams) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) } -// ------------------------------------------------------------------- - -// getCameraParametersResponse - -// bytes cameraParams = 1; -inline void getCameraParametersResponse::clear_cameraparams() { +// bytes keyframePoses = 2; +inline void getMappingDataRequestResponse::clear_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.ClearToEmpty(); + _impl_.keyframeposes_.ClearToEmpty(); } -inline const std::string& getCameraParametersResponse::cameraparams() const +inline const std::string& getMappingDataRequestResponse::keyframeposes() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getCameraParametersResponse.cameraParams) - return _internal_cameraparams(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) + return _internal_keyframeposes(); } template -inline PROTOBUF_ALWAYS_INLINE void getCameraParametersResponse::set_cameraparams(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestResponse::set_keyframeposes(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_.keyframeposes_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) } -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* 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& getCameraParametersResponse::_internal_cameraparams() const { +inline const std::string& getMappingDataRequestResponse::_internal_keyframeposes() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparams_.Get(); + return _impl_.keyframeposes_.Get(); } -inline void getCameraParametersResponse::_internal_set_cameraparams(const std::string& value) { +inline void getMappingDataRequestResponse::_internal_set_keyframeposes(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.Set(value, GetArena()); + _impl_.keyframeposes_.Set(value, GetArena()); } -inline std::string* getCameraParametersResponse::_internal_mutable_cameraparams() { +inline std::string* getMappingDataRequestResponse::_internal_mutable_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparams_.Mutable( GetArena()); + return _impl_.keyframeposes_.Mutable( GetArena()); } -inline std::string* getCameraParametersResponse::release_cameraparams() { +inline std::string* getMappingDataRequestResponse::release_keyframeposes() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getCameraParametersResponse.cameraParams) - return _impl_.cameraparams_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) + return _impl_.keyframeposes_.Release(); } -inline void getCameraParametersResponse::set_allocated_cameraparams(std::string* value) { +inline void getMappingDataRequestResponse::set_allocated_keyframeposes(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparams_.SetAllocated(value, GetArena()); + _impl_.keyframeposes_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparams_.IsDefault()) { - _impl_.cameraparams_.Set("", GetArena()); + if (_impl_.keyframeposes_.IsDefault()) { + _impl_.keyframeposes_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getCameraParametersResponse.cameraParams) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getCameraParametersResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 3; +inline void getMappingDataRequestResponse::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 getMappingDataRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getCameraParametersResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMappingDataRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getCameraParametersResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t getCameraParametersResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getMappingDataRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getCameraParametersResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMappingDataRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// imageProcessRequestRequest +// getClientPoseRequest // int32 grpcServerCompressionFormat = 1; -inline void imageProcessRequestRequest::clear_grpcservercompressionformat() { +inline void getClientPoseRequest::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 getClientPoseRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void imageProcessRequestRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getClientPoseRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.grpcServerCompressionFormat) } -inline ::int32_t imageProcessRequestRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getClientPoseRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void imageProcessRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getClientPoseRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void imageProcessRequestRequest::clear_accesstoken() { +inline void getClientPoseRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::accesstoken() const +inline const std::string& getClientPoseRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::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.getClientPoseRequest.accessToken) } -inline std::string* imageProcessRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getClientPoseRequest::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.getClientPoseRequest.accessToken) return _s; } -inline const std::string& imageProcessRequestRequest::_internal_accesstoken() const { +inline const std::string& getClientPoseRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void imageProcessRequestRequest::_internal_set_accesstoken(const std::string& value) { +inline void getClientPoseRequest::_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* getClientPoseRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_accesstoken() { +inline std::string* getClientPoseRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void imageProcessRequestRequest::set_allocated_accesstoken(std::string* value) { +inline void getClientPoseRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -14816,49 +17076,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.getClientPoseRequest.accessToken) } // string clientUUID = 3; -inline void imageProcessRequestRequest::clear_clientuuid() { +inline void getClientPoseRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::clientuuid() const +inline const std::string& getClientPoseRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.clientUUID) return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::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.getClientPoseRequest.clientUUID) } -inline std::string* imageProcessRequestRequest::mutable_clientuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getClientPoseRequest::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.getClientPoseRequest.clientUUID) return _s; } -inline const std::string& imageProcessRequestRequest::_internal_clientuuid() const { +inline const std::string& getClientPoseRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.clientuuid_.Get(); } -inline void imageProcessRequestRequest::_internal_set_clientuuid(const std::string& value) { +inline void getClientPoseRequest::_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* getClientPoseRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_clientuuid() { +inline std::string* getClientPoseRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.clientUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.clientUUID) return _impl_.clientuuid_.Release(); } -inline void imageProcessRequestRequest::set_allocated_clientuuid(std::string* value) { +inline void getClientPoseRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -14866,293 +17126,269 @@ 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) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.clientUUID) } -// bytes images = 4; -inline void imageProcessRequestRequest::clear_images() { +// sint32 poseType = 4; +inline void getClientPoseRequest::clear_posetype() { ::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(); + _impl_.posetype_ = 0; } -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 ::int32_t getClientPoseRequest::posetype() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.poseType) + return _internal_posetype(); } -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 void getClientPoseRequest::set_posetype(::int32_t value) { + _internal_set_posetype(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.poseType) } -inline const std::string& imageProcessRequestRequest::_internal_images() const { +inline ::int32_t getClientPoseRequest::_internal_posetype() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.images_.Get(); + return _impl_.posetype_; } -inline void imageProcessRequestRequest::_internal_set_images(const std::string& value) { +inline void getClientPoseRequest::_internal_set_posetype(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.images_.Set(value, GetArena()); + _impl_.posetype_ = value; } -inline std::string* imageProcessRequestRequest::_internal_mutable_images() { + +// sint32 transform3DStatus = 5; +inline void getClientPoseRequest::clear_transform3dstatus() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.images_.Mutable( GetArena()); + _impl_.transform3dstatus_ = 0; } -inline std::string* imageProcessRequestRequest::release_images() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.images) - return _impl_.images_.Release(); +inline ::int32_t getClientPoseRequest::transform3dstatus() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.transform3DStatus) + return _internal_transform3dstatus(); } -inline void imageProcessRequestRequest::set_allocated_images(std::string* value) { +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_.transform3dstatus_; +} +inline void getClientPoseRequest::_internal_set_transform3dstatus(::int32_t 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) + _impl_.transform3dstatus_ = value; } -// bytes poses = 5; -inline void imageProcessRequestRequest::clear_poses() { +// bytes transform3D = 6; +inline void getClientPoseRequest::clear_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.poses_.ClearToEmpty(); + _impl_.transform3d_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::poses() const +inline const std::string& getClientPoseRequest::transform3d() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.poses) - return _internal_poses(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.transform3D) + return _internal_transform3d(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_poses(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_transform3d(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) + _impl_.transform3d_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.transform3D) } -inline std::string* imageProcessRequestRequest::mutable_poses() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_poses(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.poses) +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& imageProcessRequestRequest::_internal_poses() const { +inline const std::string& getClientPoseRequest::_internal_transform3d() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.poses_.Get(); + return _impl_.transform3d_.Get(); } -inline void imageProcessRequestRequest::_internal_set_poses(const std::string& value) { +inline void getClientPoseRequest::_internal_set_transform3d(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.poses_.Set(value, GetArena()); + _impl_.transform3d_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_poses() { +inline std::string* getClientPoseRequest::_internal_mutable_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.poses_.Mutable( GetArena()); + return _impl_.transform3d_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_poses() { +inline std::string* getClientPoseRequest::release_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.poses) - return _impl_.poses_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.transform3D) + return _impl_.transform3d_.Release(); } -inline void imageProcessRequestRequest::set_allocated_poses(std::string* value) { +inline void getClientPoseRequest::set_allocated_transform3d(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.poses_.SetAllocated(value, GetArena()); + _impl_.transform3d_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.poses_.IsDefault()) { - _impl_.poses_.Set("", GetArena()); + if (_impl_.transform3d_.IsDefault()) { + _impl_.transform3d_.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; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.transform3D) } -// bytes worldTransform = 7; -inline void imageProcessRequestRequest::clear_worldtransform() { +// bytes confidence = 7; +inline void getClientPoseRequest::clear_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldtransform_.ClearToEmpty(); + _impl_.confidence_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::worldtransform() const +inline const std::string& getClientPoseRequest::confidence() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) - return _internal_worldtransform(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.confidence) + return _internal_confidence(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_worldtransform(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_confidence(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) + _impl_.confidence_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.confidence) } -inline std::string* imageProcessRequestRequest::mutable_worldtransform() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_worldtransform(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) +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& imageProcessRequestRequest::_internal_worldtransform() const { +inline const std::string& getClientPoseRequest::_internal_confidence() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.worldtransform_.Get(); + return _impl_.confidence_.Get(); } -inline void imageProcessRequestRequest::_internal_set_worldtransform(const std::string& value) { +inline void getClientPoseRequest::_internal_set_confidence(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldtransform_.Set(value, GetArena()); + _impl_.confidence_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_worldtransform() { +inline std::string* getClientPoseRequest::_internal_mutable_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.worldtransform_.Mutable( GetArena()); + return _impl_.confidence_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_worldtransform() { +inline std::string* getClientPoseRequest::release_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) - return _impl_.worldtransform_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.confidence) + return _impl_.confidence_.Release(); } -inline void imageProcessRequestRequest::set_allocated_worldtransform(std::string* value) { +inline void getClientPoseRequest::set_allocated_confidence(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.worldtransform_.SetAllocated(value, GetArena()); + _impl_.confidence_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.worldtransform_.IsDefault()) { - _impl_.worldtransform_.Set("", GetArena()); + if (_impl_.confidence_.IsDefault()) { + _impl_.confidence_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.worldTransform) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.confidence) } -// bytes timestamp = 8; -inline void imageProcessRequestRequest::clear_timestamp() { +// bytes pose = 8; +inline void getClientPoseRequest::clear_pose() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.timestamp_.ClearToEmpty(); + _impl_.pose_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::timestamp() const +inline const std::string& getClientPoseRequest::pose() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.timestamp) - return _internal_timestamp(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.pose) + return _internal_pose(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_timestamp(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_pose(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_.pose_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.pose) } -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* 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& imageProcessRequestRequest::_internal_timestamp() const { +inline const std::string& getClientPoseRequest::_internal_pose() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.timestamp_.Get(); + return _impl_.pose_.Get(); } -inline void imageProcessRequestRequest::_internal_set_timestamp(const std::string& value) { +inline void getClientPoseRequest::_internal_set_pose(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.timestamp_.Set(value, GetArena()); + _impl_.pose_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_timestamp() { +inline std::string* getClientPoseRequest::_internal_mutable_pose() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.timestamp_.Mutable( GetArena()); + return _impl_.pose_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_timestamp() { +inline std::string* getClientPoseRequest::release_pose() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.timestamp) - return _impl_.timestamp_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.pose) + return _impl_.pose_.Release(); } -inline void imageProcessRequestRequest::set_allocated_timestamp(std::string* value) { +inline void getClientPoseRequest::set_allocated_pose(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.timestamp_.SetAllocated(value, GetArena()); + _impl_.pose_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.timestamp_.IsDefault()) { - _impl_.timestamp_.Set("", GetArena()); + if (_impl_.pose_.IsDefault()) { + _impl_.pose_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.timestamp) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.pose) } -// sint32 transform3DStatus = 9; -inline void imageProcessRequestRequest::clear_transform3dstatus() { +// ------------------------------------------------------------------- + +// getClientPoseResponse + +// sint32 transform3DStatus = 1; +inline void getClientPoseResponse::clear_transform3dstatus() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.transform3dstatus_ = 0; } -inline ::int32_t imageProcessRequestRequest::transform3dstatus() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.transform3DStatus) +inline ::int32_t getClientPoseResponse::transform3dstatus() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.transform3DStatus) return _internal_transform3dstatus(); } -inline void imageProcessRequestRequest::set_transform3dstatus(::int32_t value) { +inline void getClientPoseResponse::set_transform3dstatus(::int32_t value) { _internal_set_transform3dstatus(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestRequest.transform3DStatus) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.transform3DStatus) } -inline ::int32_t imageProcessRequestRequest::_internal_transform3dstatus() const { +inline ::int32_t getClientPoseResponse::_internal_transform3dstatus() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.transform3dstatus_; } -inline void imageProcessRequestRequest::_internal_set_transform3dstatus(::int32_t value) { +inline void getClientPoseResponse::_internal_set_transform3dstatus(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.transform3dstatus_ = value; } -// bytes transform3D = 10; -inline void imageProcessRequestRequest::clear_transform3d() { +// bytes transform3D = 2; +inline void getClientPoseResponse::clear_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.transform3d_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::transform3d() const +inline const std::string& getClientPoseResponse::transform3d() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.transform3D) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.transform3D) return _internal_transform3d(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_transform3d(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::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.imageProcessRequestRequest.transform3D) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.transform3D) } -inline std::string* imageProcessRequestRequest::mutable_transform3d() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getClientPoseResponse::mutable_transform3d() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_transform3d(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.transform3D) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseResponse.transform3D) return _s; } -inline const std::string& imageProcessRequestRequest::_internal_transform3d() const { +inline const std::string& getClientPoseResponse::_internal_transform3d() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.transform3d_.Get(); } -inline void imageProcessRequestRequest::_internal_set_transform3d(const std::string& value) { +inline void getClientPoseResponse::_internal_set_transform3d(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.transform3d_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_transform3d() { +inline std::string* getClientPoseResponse::_internal_mutable_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.transform3d_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_transform3d() { +inline std::string* getClientPoseResponse::release_transform3d() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.transform3D) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.transform3D) return _impl_.transform3d_.Release(); } -inline void imageProcessRequestRequest::set_allocated_transform3d(std::string* value) { +inline void getClientPoseResponse::set_allocated_transform3d(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.transform3d_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -15160,417 +17396,501 @@ inline void imageProcessRequestRequest::set_allocated_transform3d(std::string* v _impl_.transform3d_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.transform3D) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseResponse.transform3D) } -// bytes confidence = 11; -inline void imageProcessRequestRequest::clear_confidence() { +// bytes confidence = 3; +inline void getClientPoseResponse::clear_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.confidence_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::confidence() const +inline const std::string& getClientPoseResponse::confidence() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.confidence) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.confidence) return _internal_confidence(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_confidence(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::set_confidence(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) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.confidence) } -inline std::string* imageProcessRequestRequest::mutable_confidence() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getClientPoseResponse::mutable_confidence() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_confidence(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.imageProcessRequestRequest.confidence) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseResponse.confidence) return _s; } -inline const std::string& imageProcessRequestRequest::_internal_confidence() const { +inline const std::string& getClientPoseResponse::_internal_confidence() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.confidence_.Get(); } -inline void imageProcessRequestRequest::_internal_set_confidence(const std::string& value) { +inline void getClientPoseResponse::_internal_set_confidence(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.confidence_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_confidence() { +inline std::string* getClientPoseResponse::_internal_mutable_confidence() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.confidence_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_confidence() { +inline std::string* getClientPoseResponse::release_confidence() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.confidence) + return _impl_.confidence_.Release(); +} +inline void getClientPoseResponse::set_allocated_confidence(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.confidence_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.confidence_.IsDefault()) { + _impl_.confidence_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseResponse.confidence) +} + +// bytes pose = 4; +inline void getClientPoseResponse::clear_pose() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pose_.ClearToEmpty(); +} +inline const std::string& getClientPoseResponse::pose() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.pose) + return _internal_pose(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::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.getClientPoseResponse.pose) +} +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& getClientPoseResponse::_internal_pose() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.pose_.Get(); +} +inline void getClientPoseResponse::_internal_set_pose(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pose_.Set(value, GetArena()); +} +inline std::string* getClientPoseResponse::_internal_mutable_pose() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.pose_.Mutable( GetArena()); +} +inline std::string* getClientPoseResponse::release_pose() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.pose) + return _impl_.pose_.Release(); +} +inline void getClientPoseResponse::set_allocated_pose(std::string* 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.getClientPoseResponse.pose) +} + +// sint32 xpcfGrpcReturnValue = 5; +inline void getClientPoseResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t getClientPoseResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void getClientPoseResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.xpcfGrpcReturnValue) +} +inline ::int32_t getClientPoseResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void getClientPoseResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// createMapRequest + +// int32 grpcServerCompressionFormat = 1; +inline void createMapRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t createMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void createMapRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapRequest.grpcServerCompressionFormat) +} +inline ::int32_t createMapRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void createMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string accessToken = 2; +inline void createMapRequest::clear_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.ClearToEmpty(); +} +inline const std::string& createMapRequest::accesstoken() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.accessToken) + return _internal_accesstoken(); +} +template +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.createMapRequest.accessToken) +} +inline std::string* createMapRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.createMapRequest.accessToken) + return _s; +} +inline const std::string& createMapRequest::_internal_accesstoken() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.accesstoken_.Get(); +} +inline void createMapRequest::_internal_set_accesstoken(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.accesstoken_.Set(value, GetArena()); +} +inline std::string* createMapRequest::_internal_mutable_accesstoken() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.accesstoken_.Mutable( GetArena()); +} +inline std::string* createMapRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.confidence) - return _impl_.confidence_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.createMapRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void imageProcessRequestRequest::set_allocated_confidence(std::string* value) { +inline void createMapRequest::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.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.createMapRequest.accessToken) } -// bytes detectedObjects = 13; -inline void imageProcessRequestRequest::clear_detectedobjects() { +// string mapUUID = 3; +inline void createMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& imageProcessRequestRequest::detectedobjects() const +inline const std::string& createMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) - return _internal_detectedobjects(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestRequest::set_detectedobjects(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void createMapRequest::set_mapuuid(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_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapRequest.mapUUID) } -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* 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& imageProcessRequestRequest::_internal_detectedobjects() const { +inline const std::string& createMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.detectedobjects_.Get(); + return _impl_.mapuuid_.Get(); } -inline void imageProcessRequestRequest::_internal_set_detectedobjects(const std::string& value) { +inline void createMapRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* imageProcessRequestRequest::_internal_mutable_detectedobjects() { +inline std::string* createMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.detectedobjects_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* imageProcessRequestRequest::release_detectedobjects() { +inline std::string* createMapRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) - return _impl_.detectedobjects_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.createMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void imageProcessRequestRequest::set_allocated_detectedobjects(std::string* value) { +inline void createMapRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.detectedobjects_.IsDefault()) { - _impl_.detectedobjects_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestRequest.detectedObjects) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.createMapRequest.mapUUID) } // ------------------------------------------------------------------- -// imageProcessRequestResponse +// createMapResponse -// sint32 transform3DStatus = 1; -inline void imageProcessRequestResponse::clear_transform3dstatus() { +// sint32 xpcfGrpcReturnValue = 1; +inline void createMapResponse::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 createMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapResponse.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 createMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapResponse.xpcfGrpcReturnValue) } -inline ::int32_t imageProcessRequestResponse::_internal_transform3dstatus() const { +inline ::int32_t createMapResponse::_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 createMapResponse::_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() { +// ------------------------------------------------------------------- + +// deleteMapRequest + +// int32 grpcServerCompressionFormat = 1; +inline void deleteMapRequest::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 deleteMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.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 deleteMapRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapRequest.grpcServerCompressionFormat) } -inline const std::string& imageProcessRequestResponse::_internal_transform3d() const { +inline ::int32_t deleteMapRequest::_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 deleteMapRequest::_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 deleteMapRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.ClearToEmpty(); + _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& imageProcessRequestResponse::confidence() const +inline const std::string& deleteMapRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.confidence) - return _internal_confidence(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestResponse::set_confidence(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void deleteMapRequest::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.deleteMapRequest.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* 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& imageProcessRequestResponse::_internal_confidence() const { +inline const std::string& deleteMapRequest::_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 deleteMapRequest::_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* deleteMapRequest::_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* deleteMapRequest::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.deleteMapRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void imageProcessRequestResponse::set_allocated_confidence(std::string* value) { +inline void deleteMapRequest::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.deleteMapRequest.accessToken) } -// bytes detectedObjects = 5; -inline void imageProcessRequestResponse::clear_detectedobjects() { +// string mapUUID = 3; +inline void deleteMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& imageProcessRequestResponse::detectedobjects() const +inline const std::string& deleteMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) - return _internal_detectedobjects(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void imageProcessRequestResponse::set_detectedobjects(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void deleteMapRequest::set_mapuuid(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_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapRequest.mapUUID) } -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* 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& imageProcessRequestResponse::_internal_detectedobjects() const { +inline const std::string& deleteMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.detectedobjects_.Get(); + return _impl_.mapuuid_.Get(); } -inline void imageProcessRequestResponse::_internal_set_detectedobjects(const std::string& value) { +inline void deleteMapRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* imageProcessRequestResponse::_internal_mutable_detectedobjects() { +inline std::string* deleteMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.detectedobjects_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* imageProcessRequestResponse::release_detectedobjects() { +inline std::string* deleteMapRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) - return _impl_.detectedobjects_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.deleteMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void imageProcessRequestResponse::set_allocated_detectedobjects(std::string* value) { +inline void deleteMapRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.detectedobjects_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.detectedobjects_.IsDefault()) { - _impl_.detectedobjects_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.imageProcessRequestResponse.detectedObjects) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.deleteMapRequest.mapUUID) } -// sint32 xpcfGrpcReturnValue = 6; -inline void imageProcessRequestResponse::clear_xpcfgrpcreturnvalue() { +// ------------------------------------------------------------------- + +// deleteMapResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void deleteMapResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t imageProcessRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.imageProcessRequestResponse.xpcfGrpcReturnValue) +inline ::int32_t deleteMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void imageProcessRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void deleteMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.imageProcessRequestResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapResponse.xpcfGrpcReturnValue) } -inline ::int32_t imageProcessRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t deleteMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void imageProcessRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void deleteMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getMappingDataRequestRequest +// getAllMapsUUIDRequest // int32 grpcServerCompressionFormat = 1; -inline void getMappingDataRequestRequest::clear_grpcservercompressionformat() { +inline void getAllMapsUUIDRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getMappingDataRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.grpcServerCompressionFormat) +inline ::int32_t getAllMapsUUIDRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getMappingDataRequestRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getAllMapsUUIDRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDRequest.grpcServerCompressionFormat) } -inline ::int32_t getMappingDataRequestRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getAllMapsUUIDRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getMappingDataRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getAllMapsUUIDRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void getMappingDataRequestRequest::clear_accesstoken() { +inline void getAllMapsUUIDRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestRequest::accesstoken() const +inline const std::string& getAllMapsUUIDRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_accesstoken(Arg_&& arg, +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.getMappingDataRequestRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) } -inline std::string* getMappingDataRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* getAllMapsUUIDRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) return _s; } -inline const std::string& getMappingDataRequestRequest::_internal_accesstoken() const { +inline const std::string& getAllMapsUUIDRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getMappingDataRequestRequest::_internal_set_accesstoken(const std::string& value) { +inline void getAllMapsUUIDRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestRequest::_internal_mutable_accesstoken() { +inline std::string* getAllMapsUUIDRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestRequest::release_accesstoken() { +inline std::string* getAllMapsUUIDRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getMappingDataRequestRequest::set_allocated_accesstoken(std::string* value) { +inline void getAllMapsUUIDRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -15578,351 +17898,453 @@ inline void getMappingDataRequestRequest::set_allocated_accesstoken(std::string* _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) } -// string clientUUID = 3; -inline void getMappingDataRequestRequest::clear_clientuuid() { +// bytes mapUUIDList = 3; +inline void getAllMapsUUIDRequest::clear_mapuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.mapuuidlist_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestRequest::clientuuid() const +inline const std::string& getAllMapsUUIDRequest::mapuuidlist() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) + return _internal_mapuuidlist(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDRequest::set_mapuuidlist(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_.mapuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) } -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* 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& getMappingDataRequestRequest::_internal_clientuuid() const { +inline const std::string& getAllMapsUUIDRequest::_internal_mapuuidlist() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientuuid_.Get(); + return _impl_.mapuuidlist_.Get(); } -inline void getMappingDataRequestRequest::_internal_set_clientuuid(const std::string& value) { +inline void getAllMapsUUIDRequest::_internal_set_mapuuidlist(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.Set(value, GetArena()); + _impl_.mapuuidlist_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestRequest::_internal_mutable_clientuuid() { +inline std::string* getAllMapsUUIDRequest::_internal_mutable_mapuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientuuid_.Mutable( GetArena()); + return _impl_.mapuuidlist_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestRequest::release_clientuuid() { +inline std::string* getAllMapsUUIDRequest::release_mapuuidlist() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.clientUUID) - return _impl_.clientuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) + return _impl_.mapuuidlist_.Release(); +} +inline void getAllMapsUUIDRequest::set_allocated_mapuuidlist(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.mapuuidlist_.IsDefault()) { + _impl_.mapuuidlist_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) +} + +// ------------------------------------------------------------------- + +// getAllMapsUUIDResponse + +// bytes mapUUIDList = 1; +inline void getAllMapsUUIDResponse::clear_mapuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.ClearToEmpty(); +} +inline const std::string& getAllMapsUUIDResponse::mapuuidlist() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) + return _internal_mapuuidlist(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDResponse::set_mapuuidlist(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) +} +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& getAllMapsUUIDResponse::_internal_mapuuidlist() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuidlist_.Get(); +} +inline void getAllMapsUUIDResponse::_internal_set_mapuuidlist(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.Set(value, GetArena()); +} +inline std::string* getAllMapsUUIDResponse::_internal_mutable_mapuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuidlist_.Mutable( GetArena()); +} +inline std::string* getAllMapsUUIDResponse::release_mapuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) + return _impl_.mapuuidlist_.Release(); +} +inline void getAllMapsUUIDResponse::set_allocated_mapuuidlist(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.mapuuidlist_.IsDefault()) { + _impl_.mapuuidlist_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) +} + +// sint32 xpcfGrpcReturnValue = 2; +inline void getAllMapsUUIDResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t getAllMapsUUIDResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void getAllMapsUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDResponse.xpcfGrpcReturnValue) +} +inline ::int32_t getAllMapsUUIDResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void getAllMapsUUIDResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// getClientMapUUIDRequest + +// int32 grpcServerCompressionFormat = 1; +inline void getClientMapUUIDRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t getClientMapUUIDRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void getClientMapUUIDRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.grpcServerCompressionFormat) } -inline void getMappingDataRequestRequest::set_allocated_clientuuid(std::string* value) { +inline ::int32_t getClientMapUUIDRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void getClientMapUUIDRequest::_internal_set_grpcservercompressionformat(::int32_t 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.getMappingDataRequestRequest.clientUUID) + _impl_.grpcservercompressionformat_ = value; } -// bytes outputPointClouds = 4; -inline void getMappingDataRequestRequest::clear_outputpointclouds() { +// string accessToken = 2; +inline void getClientMapUUIDRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.ClearToEmpty(); + _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestRequest::outputpointclouds() const +inline const std::string& getClientMapUUIDRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) - return _internal_outputpointclouds(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_outputpointclouds(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::set_accesstoken(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_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) } -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* 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& getMappingDataRequestRequest::_internal_outputpointclouds() const { +inline const std::string& getClientMapUUIDRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.outputpointclouds_.Get(); + return _impl_.accesstoken_.Get(); } -inline void getMappingDataRequestRequest::_internal_set_outputpointclouds(const std::string& value) { +inline void getClientMapUUIDRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.Set(value, GetArena()); + _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestRequest::_internal_mutable_outputpointclouds() { +inline std::string* getClientMapUUIDRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.outputpointclouds_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestRequest::release_outputpointclouds() { +inline std::string* getClientMapUUIDRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) - return _impl_.outputpointclouds_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void getMappingDataRequestRequest::set_allocated_outputpointclouds(std::string* value) { +inline void getClientMapUUIDRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.SetAllocated(value, GetArena()); + _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.outputpointclouds_.IsDefault()) { - _impl_.outputpointclouds_.Set("", GetArena()); + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.outputPointClouds) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) } -// bytes keyframePoses = 5; -inline void getMappingDataRequestRequest::clear_keyframeposes() { +// string clientUUID = 3; +inline void getClientMapUUIDRequest::clear_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.ClearToEmpty(); + _impl_.clientuuid_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestRequest::keyframeposes() const +inline const std::string& getClientMapUUIDRequest::clientuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) - return _internal_keyframeposes(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) + return _internal_clientuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestRequest::set_keyframeposes(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::set_clientuuid(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_.clientuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) } -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* 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& getMappingDataRequestRequest::_internal_keyframeposes() const { +inline const std::string& getClientMapUUIDRequest::_internal_clientuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframeposes_.Get(); + return _impl_.clientuuid_.Get(); } -inline void getMappingDataRequestRequest::_internal_set_keyframeposes(const std::string& value) { +inline void getClientMapUUIDRequest::_internal_set_clientuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.Set(value, GetArena()); + _impl_.clientuuid_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestRequest::_internal_mutable_keyframeposes() { +inline std::string* getClientMapUUIDRequest::_internal_mutable_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.keyframeposes_.Mutable( GetArena()); + return _impl_.clientuuid_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestRequest::release_keyframeposes() { +inline std::string* getClientMapUUIDRequest::release_clientuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) - return _impl_.keyframeposes_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) + return _impl_.clientuuid_.Release(); } -inline void getMappingDataRequestRequest::set_allocated_keyframeposes(std::string* value) { +inline void getClientMapUUIDRequest::set_allocated_clientuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.SetAllocated(value, GetArena()); + _impl_.clientuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.keyframeposes_.IsDefault()) { - _impl_.keyframeposes_.Set("", GetArena()); + if (_impl_.clientuuid_.IsDefault()) { + _impl_.clientuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestRequest.keyframePoses) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDRequest.clientUUID) } -// ------------------------------------------------------------------- - -// getMappingDataRequestResponse - -// bytes outputPointClouds = 1; -inline void getMappingDataRequestResponse::clear_outputpointclouds() { +// string mapUUID = 4; +inline void getClientMapUUIDRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestResponse::outputpointclouds() const +inline const std::string& getClientMapUUIDRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) - return _internal_outputpointclouds(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestResponse::set_outputpointclouds(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::set_mapuuid(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_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) } -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* 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& getMappingDataRequestResponse::_internal_outputpointclouds() const { +inline const std::string& getClientMapUUIDRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.outputpointclouds_.Get(); + return _impl_.mapuuid_.Get(); } -inline void getMappingDataRequestResponse::_internal_set_outputpointclouds(const std::string& value) { +inline void getClientMapUUIDRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestResponse::_internal_mutable_outputpointclouds() { +inline std::string* getClientMapUUIDRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.outputpointclouds_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestResponse::release_outputpointclouds() { +inline std::string* getClientMapUUIDRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) - return _impl_.outputpointclouds_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void getMappingDataRequestResponse::set_allocated_outputpointclouds(std::string* value) { +inline void getClientMapUUIDRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.outputpointclouds_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.outputpointclouds_.IsDefault()) { - _impl_.outputpointclouds_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestResponse.outputPointClouds) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) } -// bytes keyframePoses = 2; -inline void getMappingDataRequestResponse::clear_keyframeposes() { +// ------------------------------------------------------------------- + +// getClientMapUUIDResponse + +// string mapUUID = 1; +inline void getClientMapUUIDResponse::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getMappingDataRequestResponse::keyframeposes() const +inline const std::string& getClientMapUUIDResponse::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) - return _internal_keyframeposes(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getMappingDataRequestResponse::set_keyframeposes(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDResponse::set_mapuuid(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_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) } -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* getClientMapUUIDResponse::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) return _s; } -inline const std::string& getMappingDataRequestResponse::_internal_keyframeposes() const { +inline const std::string& getClientMapUUIDResponse::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframeposes_.Get(); + return _impl_.mapuuid_.Get(); } -inline void getMappingDataRequestResponse::_internal_set_keyframeposes(const std::string& value) { +inline void getClientMapUUIDResponse::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* getMappingDataRequestResponse::_internal_mutable_keyframeposes() { +inline std::string* getClientMapUUIDResponse::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.keyframeposes_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getMappingDataRequestResponse::release_keyframeposes() { +inline std::string* getClientMapUUIDResponse::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) - return _impl_.keyframeposes_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void getMappingDataRequestResponse::set_allocated_keyframeposes(std::string* value) { +inline void getClientMapUUIDResponse::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeposes_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.keyframeposes_.IsDefault()) { - _impl_.keyframeposes_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMappingDataRequestResponse.keyframePoses) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) } -// sint32 xpcfGrpcReturnValue = 3; -inline void getMappingDataRequestResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 2; +inline void getClientMapUUIDResponse::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 getClientMapUUIDResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getMappingDataRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getClientMapUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMappingDataRequestResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDResponse.xpcfGrpcReturnValue) } -inline ::int32_t getMappingDataRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getClientMapUUIDResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getMappingDataRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getClientMapUUIDResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getClientPoseRequest +// getClientInfoForMapRequest // int32 grpcServerCompressionFormat = 1; -inline void getClientPoseRequest::clear_grpcservercompressionformat() { +inline void getClientInfoForMapRequest::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 getClientInfoForMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getClientPoseRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getClientInfoForMapRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.grpcServerCompressionFormat) } -inline ::int32_t getClientPoseRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getClientInfoForMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getClientPoseRequest::_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 getClientPoseRequest::clear_accesstoken() { +inline void getClientInfoForMapRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getClientPoseRequest::accesstoken() const +inline const std::string& getClientInfoForMapRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::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.getClientPoseRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) } -inline std::string* getClientPoseRequest::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.getClientPoseRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) return _s; } -inline const std::string& getClientPoseRequest::_internal_accesstoken() const { +inline const std::string& getClientInfoForMapRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getClientPoseRequest::_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* getClientPoseRequest::_internal_mutable_accesstoken() { +inline std::string* getClientInfoForMapRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getClientPoseRequest::release_accesstoken() { +inline std::string* getClientInfoForMapRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getClientPoseRequest::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 @@ -15930,669 +18352,525 @@ 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.getClientInfoForMapRequest.accessToken) } -// string clientUUID = 3; -inline void getClientPoseRequest::clear_clientuuid() { +// string mapUUID = 3; +inline void getClientInfoForMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientuuid_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getClientPoseRequest::clientuuid() const +inline const std::string& getClientInfoForMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.clientUUID) - return _internal_clientuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_clientuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapRequest::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.getClientInfoForMapRequest.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* getClientInfoForMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) return _s; } -inline const std::string& getClientPoseRequest::_internal_clientuuid() const { +inline const std::string& getClientInfoForMapRequest::_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 getClientInfoForMapRequest::_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* getClientInfoForMapRequest::_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* getClientInfoForMapRequest::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.getClientInfoForMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void getClientPoseRequest::set_allocated_clientuuid(std::string* value) { +inline void getClientInfoForMapRequest::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) -} - -// sint32 poseType = 4; -inline void getClientPoseRequest::clear_posetype() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.posetype_ = 0; -} -inline ::int32_t getClientPoseRequest::posetype() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.poseType) - return _internal_posetype(); -} -inline void getClientPoseRequest::set_posetype(::int32_t value) { - _internal_set_posetype(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseRequest.poseType) -} -inline ::int32_t getClientPoseRequest::_internal_posetype() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.posetype_; -} -inline void getClientPoseRequest::_internal_set_posetype(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.posetype_ = value; -} - -// sint32 transform3DStatus = 5; -inline void getClientPoseRequest::clear_transform3dstatus() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = 0; -} -inline ::int32_t getClientPoseRequest::transform3dstatus() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.transform3DStatus) - return _internal_transform3dstatus(); -} -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_.transform3dstatus_; -} -inline void getClientPoseRequest::_internal_set_transform3dstatus(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) } -// bytes transform3D = 6; -inline void getClientPoseRequest::clear_transform3d() { +// bytes clientInfoList = 4; +inline void getClientInfoForMapRequest::clear_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.ClearToEmpty(); + _impl_.clientinfolist_.ClearToEmpty(); } -inline const std::string& getClientPoseRequest::transform3d() const +inline const std::string& getClientInfoForMapRequest::clientinfolist() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.transform3D) - return _internal_transform3d(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) + return _internal_clientinfolist(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_transform3d(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapRequest::set_clientinfolist(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_.clientinfolist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) } -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* 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& getClientPoseRequest::_internal_transform3d() const { +inline const std::string& getClientInfoForMapRequest::_internal_clientinfolist() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3d_.Get(); + return _impl_.clientinfolist_.Get(); } -inline void getClientPoseRequest::_internal_set_transform3d(const std::string& value) { +inline void getClientInfoForMapRequest::_internal_set_clientinfolist(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.Set(value, GetArena()); + _impl_.clientinfolist_.Set(value, GetArena()); } -inline std::string* getClientPoseRequest::_internal_mutable_transform3d() { +inline std::string* getClientInfoForMapRequest::_internal_mutable_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.transform3d_.Mutable( GetArena()); + return _impl_.clientinfolist_.Mutable( GetArena()); } -inline std::string* getClientPoseRequest::release_transform3d() { +inline std::string* getClientInfoForMapRequest::release_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.transform3D) - return _impl_.transform3d_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) + return _impl_.clientinfolist_.Release(); } -inline void getClientPoseRequest::set_allocated_transform3d(std::string* value) { +inline void getClientInfoForMapRequest::set_allocated_clientinfolist(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.SetAllocated(value, GetArena()); + _impl_.clientinfolist_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.transform3d_.IsDefault()) { - _impl_.transform3d_.Set("", GetArena()); + if (_impl_.clientinfolist_.IsDefault()) { + _impl_.clientinfolist_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.transform3D) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) } -// bytes confidence = 7; -inline void getClientPoseRequest::clear_confidence() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.ClearToEmpty(); -} -inline const std::string& getClientPoseRequest::confidence() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.confidence) - return _internal_confidence(); -} -template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_confidence(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) -} -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& getClientPoseRequest::_internal_confidence() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.confidence_.Get(); -} -inline void getClientPoseRequest::_internal_set_confidence(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.Set(value, GetArena()); -} -inline std::string* getClientPoseRequest::_internal_mutable_confidence() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.confidence_.Mutable( GetArena()); -} -inline std::string* getClientPoseRequest::release_confidence() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.confidence) - return _impl_.confidence_.Release(); -} -inline void getClientPoseRequest::set_allocated_confidence(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.confidence_.IsDefault()) { - _impl_.confidence_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.confidence) -} +// ------------------------------------------------------------------- -// bytes pose = 8; -inline void getClientPoseRequest::clear_pose() { +// getClientInfoForMapResponse + +// bytes clientInfoList = 1; +inline void getClientInfoForMapResponse::clear_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.ClearToEmpty(); + _impl_.clientinfolist_.ClearToEmpty(); } -inline const std::string& getClientPoseRequest::pose() const +inline const std::string& getClientInfoForMapResponse::clientinfolist() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseRequest.pose) - return _internal_pose(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) + return _internal_clientinfolist(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseRequest::set_pose(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapResponse::set_clientinfolist(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 std::string* getClientPoseRequest::mutable_pose() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pose(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientPoseRequest.pose) + _impl_.clientinfolist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) +} +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& getClientPoseRequest::_internal_pose() const { +inline const std::string& getClientInfoForMapResponse::_internal_clientinfolist() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pose_.Get(); + return _impl_.clientinfolist_.Get(); } -inline void getClientPoseRequest::_internal_set_pose(const std::string& value) { +inline void getClientInfoForMapResponse::_internal_set_clientinfolist(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.Set(value, GetArena()); + _impl_.clientinfolist_.Set(value, GetArena()); } -inline std::string* getClientPoseRequest::_internal_mutable_pose() { +inline std::string* getClientInfoForMapResponse::_internal_mutable_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pose_.Mutable( GetArena()); + return _impl_.clientinfolist_.Mutable( GetArena()); } -inline std::string* getClientPoseRequest::release_pose() { +inline std::string* getClientInfoForMapResponse::release_clientinfolist() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseRequest.pose) - return _impl_.pose_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) + return _impl_.clientinfolist_.Release(); } -inline void getClientPoseRequest::set_allocated_pose(std::string* value) { +inline void getClientInfoForMapResponse::set_allocated_clientinfolist(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.SetAllocated(value, GetArena()); + _impl_.clientinfolist_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.pose_.IsDefault()) { - _impl_.pose_.Set("", GetArena()); + if (_impl_.clientinfolist_.IsDefault()) { + _impl_.clientinfolist_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseRequest.pose) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) } -// ------------------------------------------------------------------- - -// getClientPoseResponse - -// sint32 transform3DStatus = 1; -inline void getClientPoseResponse::clear_transform3dstatus() { +// sint32 xpcfGrpcReturnValue = 2; +inline void getClientInfoForMapResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = 0; + _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getClientPoseResponse::transform3dstatus() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.transform3DStatus) - return _internal_transform3dstatus(); +inline ::int32_t getClientInfoForMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); } -inline void getClientPoseResponse::set_transform3dstatus(::int32_t value) { - _internal_set_transform3dstatus(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.transform3DStatus) +inline void getClientInfoForMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapResponse.xpcfGrpcReturnValue) } -inline ::int32_t getClientPoseResponse::_internal_transform3dstatus() const { +inline ::int32_t getClientInfoForMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3dstatus_; + return _impl_.xpcfgrpcreturnvalue_; } -inline void getClientPoseResponse::_internal_set_transform3dstatus(::int32_t value) { +inline void getClientInfoForMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3dstatus_ = value; + _impl_.xpcfgrpcreturnvalue_ = value; } -// bytes transform3D = 2; -inline void getClientPoseResponse::clear_transform3d() { +// ------------------------------------------------------------------- + +// getMapRequestRequest + +// int32 grpcServerCompressionFormat = 1; +inline void getMapRequestRequest::clear_grpcservercompressionformat() { ::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.getClientPoseResponse.transform3D) - return _internal_transform3d(); + _impl_.grpcservercompressionformat_ = 0; } -template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::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.getClientPoseResponse.transform3D) +inline ::int32_t getMapRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); } -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 void getMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.grpcServerCompressionFormat) } -inline const std::string& getClientPoseResponse::_internal_transform3d() const { +inline ::int32_t getMapRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.transform3d_.Get(); -} -inline void getClientPoseResponse::_internal_set_transform3d(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.transform3d_.Set(value, GetArena()); -} -inline std::string* getClientPoseResponse::_internal_mutable_transform3d() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.transform3d_.Mutable( GetArena()); -} -inline std::string* getClientPoseResponse::release_transform3d() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.transform3D) - return _impl_.transform3d_.Release(); + return _impl_.grpcservercompressionformat_; } -inline void getClientPoseResponse::set_allocated_transform3d(std::string* value) { +inline void getMapRequestRequest::_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.getClientPoseResponse.transform3D) + _impl_.grpcservercompressionformat_ = value; } -// bytes confidence = 3; -inline void getClientPoseResponse::clear_confidence() { +// string accessToken = 2; +inline void getMapRequestRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.confidence_.ClearToEmpty(); + _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getClientPoseResponse::confidence() const +inline const std::string& getMapRequestRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.confidence) - return _internal_confidence(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::set_confidence(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::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.getClientPoseResponse.confidence) + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.accessToken) } -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* getMapRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_accesstoken(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapRequestRequest.accessToken) return _s; } -inline const std::string& getClientPoseResponse::_internal_confidence() const { +inline const std::string& getMapRequestRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.confidence_.Get(); + return _impl_.accesstoken_.Get(); } -inline void getClientPoseResponse::_internal_set_confidence(const std::string& value) { +inline void getMapRequestRequest::_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* getClientPoseResponse::_internal_mutable_confidence() { +inline std::string* getMapRequestRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.confidence_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getClientPoseResponse::release_confidence() { +inline std::string* getMapRequestRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.confidence) - return _impl_.confidence_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void getClientPoseResponse::set_allocated_confidence(std::string* value) { +inline void getMapRequestRequest::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.getClientPoseResponse.confidence) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestRequest.accessToken) } -// bytes pose = 4; -inline void getClientPoseResponse::clear_pose() { +// string mapUUID = 3; +inline void getMapRequestRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getClientPoseResponse::pose() const +inline const std::string& getMapRequestRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.pose) - return _internal_pose(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientPoseResponse::set_pose(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_mapuuid(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_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.mapUUID) } -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* 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& getClientPoseResponse::_internal_pose() const { +inline const std::string& getMapRequestRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pose_.Get(); + return _impl_.mapuuid_.Get(); } -inline void getClientPoseResponse::_internal_set_pose(const std::string& value) { +inline void getMapRequestRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* getClientPoseResponse::_internal_mutable_pose() { +inline std::string* getMapRequestRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pose_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getClientPoseResponse::release_pose() { +inline std::string* getMapRequestRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientPoseResponse.pose) - return _impl_.pose_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void getClientPoseResponse::set_allocated_pose(std::string* value) { +inline void getMapRequestRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pose_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.pose_.IsDefault()) { - _impl_.pose_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientPoseResponse.pose) -} - -// sint32 xpcfGrpcReturnValue = 5; -inline void getClientPoseResponse::clear_xpcfgrpcreturnvalue() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; -} -inline ::int32_t getClientPoseResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientPoseResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); -} -inline void getClientPoseResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientPoseResponse.xpcfGrpcReturnValue) -} -inline ::int32_t getClientPoseResponse::_internal_xpcfgrpcreturnvalue() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; -} -inline void getClientPoseResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestRequest.mapUUID) } -// ------------------------------------------------------------------- - -// createMapRequest - -// int32 grpcServerCompressionFormat = 1; -inline void createMapRequest::clear_grpcservercompressionformat() { +// sint32 keyframeImagesOption = 4; +inline void getMapRequestRequest::clear_keyframeimagesoption() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + _impl_.keyframeimagesoption_ = 0; } -inline ::int32_t createMapRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline ::int32_t getMapRequestRequest::keyframeimagesoption() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.keyframeImagesOption) + return _internal_keyframeimagesoption(); } -inline void createMapRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapRequest.grpcServerCompressionFormat) +inline void getMapRequestRequest::set_keyframeimagesoption(::int32_t value) { + _internal_set_keyframeimagesoption(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.keyframeImagesOption) } -inline ::int32_t createMapRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getMapRequestRequest::_internal_keyframeimagesoption() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.keyframeimagesoption_; } -inline void createMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getMapRequestRequest::_internal_set_keyframeimagesoption(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.keyframeimagesoption_ = value; } -// string accessToken = 2; -inline void createMapRequest::clear_accesstoken() { +// bytes mapDatastructure = 5; +inline void getMapRequestRequest::clear_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); + _impl_.mapdatastructure_.ClearToEmpty(); } -inline const std::string& createMapRequest::accesstoken() const +inline const std::string& getMapRequestRequest::mapdatastructure() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) + return _internal_mapdatastructure(); } template -inline PROTOBUF_ALWAYS_INLINE void createMapRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_mapdatastructure(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) + _impl_.mapdatastructure_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) } -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* 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& createMapRequest::_internal_accesstoken() const { +inline const std::string& getMapRequestRequest::_internal_mapdatastructure() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.mapdatastructure_.Get(); } -inline void createMapRequest::_internal_set_accesstoken(const std::string& value) { +inline void getMapRequestRequest::_internal_set_mapdatastructure(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.mapdatastructure_.Set(value, GetArena()); } -inline std::string* createMapRequest::_internal_mutable_accesstoken() { +inline std::string* getMapRequestRequest::_internal_mutable_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.mapdatastructure_.Mutable( GetArena()); } -inline std::string* createMapRequest::release_accesstoken() { +inline std::string* getMapRequestRequest::release_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.createMapRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) + return _impl_.mapdatastructure_.Release(); } -inline void createMapRequest::set_allocated_accesstoken(std::string* value) { +inline void getMapRequestRequest::set_allocated_mapdatastructure(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.mapdatastructure_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.mapdatastructure_.IsDefault()) { + _impl_.mapdatastructure_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.createMapRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) } -// string mapUUID = 3; -inline void createMapRequest::clear_mapuuid() { +// ------------------------------------------------------------------- + +// getMapRequestResponse + +// bytes mapDatastructure = 1; +inline void getMapRequestResponse::clear_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.ClearToEmpty(); + _impl_.mapdatastructure_.ClearToEmpty(); } -inline const std::string& createMapRequest::mapuuid() const +inline const std::string& getMapRequestResponse::mapdatastructure() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.createMapRequest.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) + return _internal_mapdatastructure(); } template -inline PROTOBUF_ALWAYS_INLINE void createMapRequest::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.createMapRequest.mapUUID) + _impl_.mapdatastructure_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) } -inline std::string* createMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.createMapRequest.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& createMapRequest::_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 createMapRequest::_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* createMapRequest::_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* createMapRequest::release_mapuuid() { +inline std::string* getMapRequestResponse::release_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.createMapRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) + return _impl_.mapdatastructure_.Release(); } -inline void createMapRequest::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.createMapRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) } -// ------------------------------------------------------------------- - -// createMapResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void createMapResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 2; +inline void getMapRequestResponse::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 getMapRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void createMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.createMapResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t createMapResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void createMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// deleteMapRequest +// setMapRequestRequest // int32 grpcServerCompressionFormat = 1; -inline void deleteMapRequest::clear_grpcservercompressionformat() { +inline void setMapRequestRequest::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 setMapRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void deleteMapRequest::set_grpcservercompressionformat(::int32_t value) { +inline void setMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.grpcServerCompressionFormat) } -inline ::int32_t deleteMapRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t setMapRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void deleteMapRequest::_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 deleteMapRequest::clear_accesstoken() { +inline void setMapRequestRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& deleteMapRequest::accesstoken() const +inline const std::string& setMapRequestRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void deleteMapRequest::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.deleteMapRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.accessToken) } -inline std::string* deleteMapRequest::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.deleteMapRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setMapRequestRequest.accessToken) return _s; } -inline const std::string& deleteMapRequest::_internal_accesstoken() const { +inline const std::string& setMapRequestRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void deleteMapRequest::_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* deleteMapRequest::_internal_mutable_accesstoken() { +inline std::string* setMapRequestRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* deleteMapRequest::release_accesstoken() { +inline std::string* setMapRequestRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.deleteMapRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void deleteMapRequest::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 @@ -16600,151 +18878,201 @@ 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.setMapRequestRequest.accessToken) } // string mapUUID = 3; -inline void deleteMapRequest::clear_mapuuid() { +inline void setMapRequestRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& deleteMapRequest::mapuuid() const +inline const std::string& setMapRequestRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void deleteMapRequest::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.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.mapUUID) } -inline std::string* deleteMapRequest::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.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setMapRequestRequest.mapUUID) + return _s; +} +inline const std::string& setMapRequestRequest::_internal_mapuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuid_.Get(); +} +inline void setMapRequestRequest::_internal_set_mapuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(value, GetArena()); +} +inline std::string* setMapRequestRequest::_internal_mutable_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuid_.Mutable( GetArena()); +} +inline std::string* setMapRequestRequest::release_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.mapUUID) + return _impl_.mapuuid_.Release(); +} +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 + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.mapUUID) +} + +// bytes mapDatastructure = 4; +inline void setMapRequestRequest::clear_mapdatastructure() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapdatastructure_.ClearToEmpty(); +} +inline const std::string& setMapRequestRequest::mapdatastructure() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) + return _internal_mapdatastructure(); +} +template +inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_mapdatastructure(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) +} +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& deleteMapRequest::_internal_mapuuid() const { +inline const std::string& setMapRequestRequest::_internal_mapdatastructure() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.mapdatastructure_.Get(); } -inline void deleteMapRequest::_internal_set_mapuuid(const std::string& value) { +inline void setMapRequestRequest::_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* deleteMapRequest::_internal_mutable_mapuuid() { +inline std::string* setMapRequestRequest::_internal_mutable_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.mapdatastructure_.Mutable( GetArena()); } -inline std::string* deleteMapRequest::release_mapuuid() { +inline std::string* setMapRequestRequest::release_mapdatastructure() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.deleteMapRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) + return _impl_.mapdatastructure_.Release(); } -inline void deleteMapRequest::set_allocated_mapuuid(std::string* value) { +inline void setMapRequestRequest::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.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) } // ------------------------------------------------------------------- -// deleteMapResponse +// setMapRequestResponse // sint32 xpcfGrpcReturnValue = 1; -inline void deleteMapResponse::clear_xpcfgrpcreturnvalue() { +inline void setMapRequestResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t deleteMapResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.deleteMapResponse.xpcfGrpcReturnValue) +inline ::int32_t setMapRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void deleteMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.deleteMapResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t deleteMapResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t setMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void deleteMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void setMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getAllMapsUUIDRequest +// getPointCloudRequestRequest // int32 grpcServerCompressionFormat = 1; -inline void getAllMapsUUIDRequest::clear_grpcservercompressionformat() { +inline void getPointCloudRequestRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getAllMapsUUIDRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.grpcServerCompressionFormat) +inline ::int32_t getPointCloudRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getAllMapsUUIDRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getPointCloudRequestRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.grpcServerCompressionFormat) } -inline ::int32_t getAllMapsUUIDRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getPointCloudRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getAllMapsUUIDRequest::_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 getAllMapsUUIDRequest::clear_accesstoken() { +inline void getPointCloudRequestRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getAllMapsUUIDRequest::accesstoken() const +inline const std::string& getPointCloudRequestRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDRequest::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.getAllMapsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) } -inline std::string* getAllMapsUUIDRequest::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.getAllMapsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) return _s; } -inline const std::string& getAllMapsUUIDRequest::_internal_accesstoken() const { +inline const std::string& getPointCloudRequestRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getAllMapsUUIDRequest::_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* getAllMapsUUIDRequest::_internal_mutable_accesstoken() { +inline std::string* getPointCloudRequestRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getAllMapsUUIDRequest::release_accesstoken() { +inline std::string* getPointCloudRequestRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getAllMapsUUIDRequest::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 @@ -16752,201 +19080,251 @@ inline void getAllMapsUUIDRequest::set_allocated_accesstoken(std::string* value) _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) } -// bytes mapUUIDList = 3; -inline void getAllMapsUUIDRequest::clear_mapuuidlist() { +// string mapUUID = 3; +inline void getPointCloudRequestRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getAllMapsUUIDRequest::mapuuidlist() const +inline const std::string& getPointCloudRequestRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) - return _internal_mapuuidlist(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDRequest::set_mapuuidlist(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_mapuuid(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_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) } -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* getPointCloudRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) return _s; } -inline const std::string& getAllMapsUUIDRequest::_internal_mapuuidlist() const { +inline const std::string& getPointCloudRequestRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuidlist_.Get(); + return _impl_.mapuuid_.Get(); } -inline void getAllMapsUUIDRequest::_internal_set_mapuuidlist(const std::string& value) { +inline void getPointCloudRequestRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* getAllMapsUUIDRequest::_internal_mutable_mapuuidlist() { +inline std::string* getPointCloudRequestRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuidlist_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getAllMapsUUIDRequest::release_mapuuidlist() { +inline std::string* getPointCloudRequestRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) - return _impl_.mapuuidlist_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void getAllMapsUUIDRequest::set_allocated_mapuuidlist(std::string* value) { +inline void getPointCloudRequestRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuidlist_.IsDefault()) { - _impl_.mapuuidlist_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDRequest.mapUUIDList) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) +} + +// bytes pointCloud = 4; +inline void getPointCloudRequestRequest::clear_pointcloud() { + ::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(); +} +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 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& getPointCloudRequestRequest::_internal_pointcloud() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.pointcloud_.Get(); +} +inline void getPointCloudRequestRequest::_internal_set_pointcloud(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pointcloud_.Set(value, GetArena()); +} +inline std::string* getPointCloudRequestRequest::_internal_mutable_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.pointcloud_.Mutable( GetArena()); +} +inline std::string* getPointCloudRequestRequest::release_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) + return _impl_.pointcloud_.Release(); +} +inline void getPointCloudRequestRequest::set_allocated_pointcloud(std::string* 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) } // ------------------------------------------------------------------- -// getAllMapsUUIDResponse +// getPointCloudRequestResponse -// bytes mapUUIDList = 1; -inline void getAllMapsUUIDResponse::clear_mapuuidlist() { +// bytes pointCloud = 1; +inline void getPointCloudRequestResponse::clear_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.ClearToEmpty(); + _impl_.pointcloud_.ClearToEmpty(); } -inline const std::string& getAllMapsUUIDResponse::mapuuidlist() const +inline const std::string& getPointCloudRequestResponse::pointcloud() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) - return _internal_mapuuidlist(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) + return _internal_pointcloud(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllMapsUUIDResponse::set_mapuuidlist(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestResponse::set_pointcloud(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_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) } -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* 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& getAllMapsUUIDResponse::_internal_mapuuidlist() const { +inline const std::string& getPointCloudRequestResponse::_internal_pointcloud() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuidlist_.Get(); + return _impl_.pointcloud_.Get(); } -inline void getAllMapsUUIDResponse::_internal_set_mapuuidlist(const std::string& value) { +inline void getPointCloudRequestResponse::_internal_set_pointcloud(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.Set(value, GetArena()); + _impl_.pointcloud_.Set(value, GetArena()); } -inline std::string* getAllMapsUUIDResponse::_internal_mutable_mapuuidlist() { +inline std::string* getPointCloudRequestResponse::_internal_mutable_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuidlist_.Mutable( GetArena()); + return _impl_.pointcloud_.Mutable( GetArena()); } -inline std::string* getAllMapsUUIDResponse::release_mapuuidlist() { +inline std::string* getPointCloudRequestResponse::release_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) - return _impl_.mapuuidlist_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) + return _impl_.pointcloud_.Release(); } -inline void getAllMapsUUIDResponse::set_allocated_mapuuidlist(std::string* value) { +inline void getPointCloudRequestResponse::set_allocated_pointcloud(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.SetAllocated(value, GetArena()); + _impl_.pointcloud_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuidlist_.IsDefault()) { - _impl_.mapuuidlist_.Set("", GetArena()); + if (_impl_.pointcloud_.IsDefault()) { + _impl_.pointcloud_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getAllMapsUUIDResponse.mapUUIDList) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) } // sint32 xpcfGrpcReturnValue = 2; -inline void getAllMapsUUIDResponse::clear_xpcfgrpcreturnvalue() { +inline void getPointCloudRequestResponse::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 getPointCloudRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getAllMapsUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getPointCloudRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getAllMapsUUIDResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t getAllMapsUUIDResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getPointCloudRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getAllMapsUUIDResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getPointCloudRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getClientMapUUIDRequest +// getMapInfoRequest // int32 grpcServerCompressionFormat = 1; -inline void getClientMapUUIDRequest::clear_grpcservercompressionformat() { +inline void getMapInfoRequest::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 getMapInfoRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getClientMapUUIDRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getMapInfoRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.grpcServerCompressionFormat) } -inline ::int32_t getClientMapUUIDRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getMapInfoRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getClientMapUUIDRequest::_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 getClientMapUUIDRequest::clear_accesstoken() { +inline void getMapInfoRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getClientMapUUIDRequest::accesstoken() const +inline const std::string& getMapInfoRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::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.getClientMapUUIDRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.accessToken) } -inline std::string* getClientMapUUIDRequest::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.getClientMapUUIDRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoRequest.accessToken) return _s; } -inline const std::string& getClientMapUUIDRequest::_internal_accesstoken() const { +inline const std::string& getMapInfoRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getClientMapUUIDRequest::_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* getClientMapUUIDRequest::_internal_mutable_accesstoken() { +inline std::string* getMapInfoRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getClientMapUUIDRequest::release_accesstoken() { +inline std::string* getMapInfoRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getClientMapUUIDRequest::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 @@ -16954,99 +19332,49 @@ 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) -} - -// 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) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.accessToken) } -// string mapUUID = 4; -inline void getClientMapUUIDRequest::clear_mapuuid() { +// string mapUUID = 3; +inline void getMapInfoRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getClientMapUUIDRequest::mapuuid() const +inline const std::string& getMapInfoRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDRequest::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.getClientMapUUIDRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.mapUUID) } -inline std::string* getClientMapUUIDRequest::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.getClientMapUUIDRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoRequest.mapUUID) return _s; } -inline const std::string& getClientMapUUIDRequest::_internal_mapuuid() const { +inline const std::string& getMapInfoRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.mapuuid_.Get(); } -inline void getClientMapUUIDRequest::_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* getClientMapUUIDRequest::_internal_mutable_mapuuid() { +inline std::string* getMapInfoRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getClientMapUUIDRequest::release_mapuuid() { +inline std::string* getMapInfoRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.mapUUID) return _impl_.mapuuid_.Release(); } -inline void getClientMapUUIDRequest::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 @@ -17054,403 +19382,377 @@ inline void getClientMapUUIDRequest::set_allocated_mapuuid(std::string* value) { _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getClientMapUUIDRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.mapUUID) } -// ------------------------------------------------------------------- - -// getClientMapUUIDResponse - -// string mapUUID = 1; -inline void getClientMapUUIDResponse::clear_mapuuid() { +// string version = 4; +inline void getMapInfoRequest::clear_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.ClearToEmpty(); + _impl_.version_.ClearToEmpty(); } -inline const std::string& getClientMapUUIDResponse::mapuuid() const +inline const std::string& getMapInfoRequest::version() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.version) + return _internal_version(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientMapUUIDResponse::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::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.getClientMapUUIDResponse.mapUUID) + _impl_.version_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.version) } -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* 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& getClientMapUUIDResponse::_internal_mapuuid() const { +inline const std::string& getMapInfoRequest::_internal_version() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.version_.Get(); } -inline void getClientMapUUIDResponse::_internal_set_mapuuid(const std::string& value) { +inline void getMapInfoRequest::_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* getClientMapUUIDResponse::_internal_mutable_mapuuid() { +inline std::string* getMapInfoRequest::_internal_mutable_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.version_.Mutable( GetArena()); } -inline std::string* getClientMapUUIDResponse::release_mapuuid() { +inline std::string* getMapInfoRequest::release_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientMapUUIDResponse.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.version) + return _impl_.version_.Release(); } -inline void getClientMapUUIDResponse::set_allocated_mapuuid(std::string* value) { +inline void getMapInfoRequest::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.getClientMapUUIDResponse.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.version) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getClientMapUUIDResponse::clear_xpcfgrpcreturnvalue() { +// sint32 globalDescriptorType = 5; +inline void getMapInfoRequest::clear_globaldescriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.globaldescriptortype_ = 0; } -inline ::int32_t getClientMapUUIDResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientMapUUIDResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline ::int32_t getMapInfoRequest::globaldescriptortype() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.globalDescriptorType) + return _internal_globaldescriptortype(); } -inline void getClientMapUUIDResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientMapUUIDResponse.xpcfGrpcReturnValue) +inline void getMapInfoRequest::set_globaldescriptortype(::int32_t value) { + _internal_set_globaldescriptortype(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.globalDescriptorType) } -inline ::int32_t getClientMapUUIDResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getMapInfoRequest::_internal_globaldescriptortype() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; + return _impl_.globaldescriptortype_; } -inline void getClientMapUUIDResponse::_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; } -// ------------------------------------------------------------------- - -// getClientInfoForMapRequest - -// int32 grpcServerCompressionFormat = 1; -inline void getClientInfoForMapRequest::clear_grpcservercompressionformat() { +// sint32 descriptorType = 6; +inline void getMapInfoRequest::clear_descriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + _impl_.descriptortype_ = 0; } -inline ::int32_t getClientInfoForMapRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline ::int32_t getMapInfoRequest::descriptortype() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.descriptorType) + return _internal_descriptortype(); } -inline void getClientInfoForMapRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapRequest.grpcServerCompressionFormat) +inline void getMapInfoRequest::set_descriptortype(::int32_t value) { + _internal_set_descriptortype(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.descriptorType) } -inline ::int32_t getClientInfoForMapRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getMapInfoRequest::_internal_descriptortype() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.descriptortype_; } -inline void getClientInfoForMapRequest::_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 getClientInfoForMapRequest::clear_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); -} -inline const std::string& getClientInfoForMapRequest::accesstoken() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) - return _internal_accesstoken(); -} -template -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.getClientInfoForMapRequest.accessToken) +// uint32 dataSize = 7; +inline void getMapInfoRequest::clear_datasize() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.datasize_ = 0u; } -inline std::string* getClientInfoForMapRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) - return _s; +inline ::uint32_t getMapInfoRequest::datasize() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.dataSize) + return _internal_datasize(); } -inline const std::string& getClientInfoForMapRequest::_internal_accesstoken() const { +inline void getMapInfoRequest::set_datasize(::uint32_t value) { + _internal_set_datasize(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.dataSize) +} +inline ::uint32_t getMapInfoRequest::_internal_datasize() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.datasize_; } -inline void getClientInfoForMapRequest::_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* getClientInfoForMapRequest::_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* getClientInfoForMapRequest::release_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.accessToken) - return _impl_.accesstoken_.Release(); +inline bool getMapInfoRequest::areimagesaved() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.areImageSaved) + return _internal_areimagesaved(); } -inline void getClientInfoForMapRequest::set_allocated_accesstoken(std::string* value) { +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 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.getClientInfoForMapRequest.accessToken) + _impl_.areimagesaved_ = value; } -// string mapUUID = 3; -inline void getClientInfoForMapRequest::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& getClientInfoForMapRequest::mapuuid() const +inline const std::string& getMapInfoResponse::version() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.version) + return _internal_version(); } template -inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapRequest::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.getClientInfoForMapRequest.mapUUID) + _impl_.version_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.version) } -inline std::string* getClientInfoForMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getClientInfoForMapRequest.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& getClientInfoForMapRequest::_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 getClientInfoForMapRequest::_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* getClientInfoForMapRequest::_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* getClientInfoForMapRequest::release_mapuuid() { +inline std::string* getMapInfoResponse::release_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoResponse.version) + return _impl_.version_.Release(); } -inline void getClientInfoForMapRequest::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.getClientInfoForMapRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoResponse.version) } -// bytes clientInfoList = 4; -inline void getClientInfoForMapRequest::clear_clientinfolist() { +// sint32 globalDescriptorType = 2; +inline void getMapInfoResponse::clear_globaldescriptortype() { ::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(); + _impl_.globaldescriptortype_ = 0; } -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 ::int32_t getMapInfoResponse::globaldescriptortype() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.globalDescriptorType) + return _internal_globaldescriptortype(); } -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 void getMapInfoResponse::set_globaldescriptortype(::int32_t value) { + _internal_set_globaldescriptortype(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.globalDescriptorType) } -inline const std::string& getClientInfoForMapRequest::_internal_clientinfolist() const { +inline ::int32_t getMapInfoResponse::_internal_globaldescriptortype() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientinfolist_.Get(); + return _impl_.globaldescriptortype_; } -inline void getClientInfoForMapRequest::_internal_set_clientinfolist(const std::string& value) { +inline void getMapInfoResponse::_internal_set_globaldescriptortype(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.Set(value, GetArena()); + _impl_.globaldescriptortype_ = value; } -inline std::string* getClientInfoForMapRequest::_internal_mutable_clientinfolist() { + +// sint32 descriptorType = 3; +inline void getMapInfoResponse::clear_descriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientinfolist_.Mutable( GetArena()); + _impl_.descriptortype_ = 0; } -inline std::string* getClientInfoForMapRequest::release_clientinfolist() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapRequest.clientInfoList) - return _impl_.clientinfolist_.Release(); +inline ::int32_t getMapInfoResponse::descriptortype() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.descriptorType) + return _internal_descriptortype(); } -inline void getClientInfoForMapRequest::set_allocated_clientinfolist(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_.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) + _impl_.descriptortype_ = value; } -// ------------------------------------------------------------------- - -// getClientInfoForMapResponse - -// bytes clientInfoList = 1; -inline void getClientInfoForMapResponse::clear_clientinfolist() { +// uint32 dataSize = 4; +inline void getMapInfoResponse::clear_datasize() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.ClearToEmpty(); -} -inline const std::string& getClientInfoForMapResponse::clientinfolist() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) - return _internal_clientinfolist(); + _impl_.datasize_ = 0u; } -template -inline PROTOBUF_ALWAYS_INLINE void getClientInfoForMapResponse::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.getClientInfoForMapResponse.clientInfoList) +inline ::uint32_t getMapInfoResponse::datasize() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.dataSize) + return _internal_datasize(); } -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 void getMapInfoResponse::set_datasize(::uint32_t value) { + _internal_set_datasize(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.dataSize) } -inline const std::string& getClientInfoForMapResponse::_internal_clientinfolist() const { +inline ::uint32_t getMapInfoResponse::_internal_datasize() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.clientinfolist_.Get(); + return _impl_.datasize_; } -inline void getClientInfoForMapResponse::_internal_set_clientinfolist(const std::string& value) { +inline void getMapInfoResponse::_internal_set_datasize(::uint32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.clientinfolist_.Set(value, GetArena()); + _impl_.datasize_ = value; } -inline std::string* getClientInfoForMapResponse::_internal_mutable_clientinfolist() { + +// bool areImageSaved = 5; +inline void getMapInfoResponse::clear_areimagesaved() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.clientinfolist_.Mutable( GetArena()); + _impl_.areimagesaved_ = false; } -inline std::string* getClientInfoForMapResponse::release_clientinfolist() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getClientInfoForMapResponse.clientInfoList) - return _impl_.clientinfolist_.Release(); +inline bool getMapInfoResponse::areimagesaved() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.areImageSaved) + return _internal_areimagesaved(); } -inline void getClientInfoForMapResponse::set_allocated_clientinfolist(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_.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.getClientInfoForMapResponse.clientInfoList) + _impl_.areimagesaved_ = value; } -// sint32 xpcfGrpcReturnValue = 2; -inline void getClientInfoForMapResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 6; +inline void getMapInfoResponse::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 getMapInfoResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getClientInfoForMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapInfoResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getClientInfoForMapResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoResponse.xpcfGrpcReturnValue) } -inline ::int32_t getClientInfoForMapResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getMapInfoResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getClientInfoForMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapInfoResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getMapRequestRequest +// backupMapRequest // int32 grpcServerCompressionFormat = 1; -inline void getMapRequestRequest::clear_grpcservercompressionformat() { +inline void backupMapRequest::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 backupMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { +inline void backupMapRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.grpcServerCompressionFormat) } -inline ::int32_t getMapRequestRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t backupMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getMapRequestRequest::_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 getMapRequestRequest::clear_accesstoken() { +inline void backupMapRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getMapRequestRequest::accesstoken() const +inline const std::string& backupMapRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::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.getMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.accessToken) } -inline std::string* getMapRequestRequest::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.getMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.accessToken) return _s; } -inline const std::string& getMapRequestRequest::_internal_accesstoken() const { +inline const std::string& backupMapRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getMapRequestRequest::_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* getMapRequestRequest::_internal_mutable_accesstoken() { +inline std::string* backupMapRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getMapRequestRequest::release_accesstoken() { +inline std::string* backupMapRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getMapRequestRequest::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 @@ -17458,49 +19760,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.backupMapRequest.accessToken) } // string mapUUID = 3; -inline void getMapRequestRequest::clear_mapuuid() { +inline void backupMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getMapRequestRequest::mapuuid() const +inline const std::string& backupMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::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.getMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.mapUUID) } -inline std::string* getMapRequestRequest::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.getMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.mapUUID) return _s; } -inline const std::string& getMapRequestRequest::_internal_mapuuid() const { +inline const std::string& backupMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.mapuuid_.Get(); } -inline void getMapRequestRequest::_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* getMapRequestRequest::_internal_mutable_mapuuid() { +inline std::string* backupMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* getMapRequestRequest::release_mapuuid() { +inline std::string* backupMapRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.mapUUID) return _impl_.mapuuid_.Release(); } -inline void getMapRequestRequest::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 @@ -17508,579 +19810,703 @@ 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) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.mapUUID) } -// sint32 keyframeImagesOption = 4; -inline void getMapRequestRequest::clear_keyframeimagesoption() { +// bytes map_information = 4; +inline void backupMapRequest::clear_map_information() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeimagesoption_ = 0; + _impl_.map_information_.ClearToEmpty(); } -inline ::int32_t getMapRequestRequest::keyframeimagesoption() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.keyframeImagesOption) - return _internal_keyframeimagesoption(); +inline const std::string& backupMapRequest::map_information() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.map_information) + return _internal_map_information(); } -inline void getMapRequestRequest::set_keyframeimagesoption(::int32_t value) { - _internal_set_keyframeimagesoption(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestRequest.keyframeImagesOption) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_map_information(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.map_information) } -inline ::int32_t getMapRequestRequest::_internal_keyframeimagesoption() const { +inline std::string* backupMapRequest::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_map_information(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.map_information) + return _s; +} +inline const std::string& backupMapRequest::_internal_map_information() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframeimagesoption_; + return _impl_.map_information_.Get(); } -inline void getMapRequestRequest::_internal_set_keyframeimagesoption(::int32_t value) { +inline void backupMapRequest::_internal_set_map_information(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeimagesoption_ = value; + _impl_.map_information_.Set(value, GetArena()); +} +inline std::string* backupMapRequest::_internal_mutable_map_information() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.map_information_.Mutable( GetArena()); +} +inline std::string* backupMapRequest::release_map_information() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.map_information) + return _impl_.map_information_.Release(); +} +inline void backupMapRequest::set_allocated_map_information(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.map_information_.IsDefault()) { + _impl_.map_information_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.map_information) } -// bytes mapDatastructure = 5; -inline void getMapRequestRequest::clear_mapdatastructure() { +// bytes cameraParameters = 5; +inline void backupMapRequest::clear_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); } -inline const std::string& getMapRequestRequest::mapdatastructure() const +inline const std::string& backupMapRequest::cameraparameters() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) - return _internal_mapdatastructure(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.cameraParameters) + return _internal_cameraparameters(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_mapdatastructure(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_cameraparameters(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_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.cameraParameters) } -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* backupMapRequest::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparameters(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.cameraParameters) return _s; } -inline const std::string& getMapRequestRequest::_internal_mapdatastructure() const { +inline const std::string& backupMapRequest::_internal_cameraparameters() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapdatastructure_.Get(); + return _impl_.cameraparameters_.Get(); } -inline void getMapRequestRequest::_internal_set_mapdatastructure(const std::string& value) { +inline void backupMapRequest::_internal_set_cameraparameters(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.Set(value, GetArena()); + _impl_.cameraparameters_.Set(value, GetArena()); } -inline std::string* getMapRequestRequest::_internal_mutable_mapdatastructure() { +inline std::string* backupMapRequest::_internal_mutable_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapdatastructure_.Mutable( GetArena()); + return _impl_.cameraparameters_.Mutable( GetArena()); } -inline std::string* getMapRequestRequest::release_mapdatastructure() { +inline std::string* backupMapRequest::release_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) - return _impl_.mapdatastructure_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.cameraParameters) + return _impl_.cameraparameters_.Release(); } -inline void getMapRequestRequest::set_allocated_mapdatastructure(std::string* value) { +inline void backupMapRequest::set_allocated_cameraparameters(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetAllocated(value, GetArena()); + _impl_.cameraparameters_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapdatastructure_.IsDefault()) { - _impl_.mapdatastructure_.Set("", GetArena()); + if (_impl_.cameraparameters_.IsDefault()) { + _impl_.cameraparameters_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestRequest.mapDatastructure) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.cameraParameters) } -// ------------------------------------------------------------------- - -// getMapRequestResponse - -// bytes mapDatastructure = 1; -inline void getMapRequestResponse::clear_mapdatastructure() { +// bytes coordinate = 6; +inline void backupMapRequest::clear_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.ClearToEmpty(); + _impl_.coordinate_.ClearToEmpty(); } -inline const std::string& getMapRequestResponse::mapdatastructure() const +inline const std::string& backupMapRequest::coordinate() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) - return _internal_mapdatastructure(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.coordinate) + return _internal_coordinate(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestResponse::set_mapdatastructure(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_coordinate(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_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.coordinate) } -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* backupMapRequest::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_coordinate(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.coordinate) return _s; } -inline const std::string& getMapRequestResponse::_internal_mapdatastructure() const { +inline const std::string& backupMapRequest::_internal_coordinate() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapdatastructure_.Get(); + return _impl_.coordinate_.Get(); } -inline void getMapRequestResponse::_internal_set_mapdatastructure(const std::string& value) { +inline void backupMapRequest::_internal_set_coordinate(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.Set(value, GetArena()); + _impl_.coordinate_.Set(value, GetArena()); } -inline std::string* getMapRequestResponse::_internal_mutable_mapdatastructure() { +inline std::string* backupMapRequest::_internal_mutable_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapdatastructure_.Mutable( GetArena()); + return _impl_.coordinate_.Mutable( GetArena()); } -inline std::string* getMapRequestResponse::release_mapdatastructure() { +inline std::string* backupMapRequest::release_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) - return _impl_.mapdatastructure_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.coordinate) + return _impl_.coordinate_.Release(); } -inline void getMapRequestResponse::set_allocated_mapdatastructure(std::string* value) { +inline void backupMapRequest::set_allocated_coordinate(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetAllocated(value, GetArena()); + _impl_.coordinate_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapdatastructure_.IsDefault()) { - _impl_.mapdatastructure_.Set("", GetArena()); + if (_impl_.coordinate_.IsDefault()) { + _impl_.coordinate_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapRequestResponse.mapDatastructure) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.coordinate) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getMapRequestResponse::clear_xpcfgrpcreturnvalue() { +// bytes covisibility_graph = 7; +inline void backupMapRequest::clear_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.covisibility_graph_.ClearToEmpty(); } -inline ::int32_t getMapRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapRequestResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline const std::string& backupMapRequest::covisibility_graph() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.covisibility_graph) + return _internal_covisibility_graph(); } -inline void getMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapRequestResponse.xpcfGrpcReturnValue) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_covisibility_graph(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.covisibility_graph) } -inline ::int32_t getMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline std::string* backupMapRequest::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_covisibility_graph(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.covisibility_graph) + return _s; +} +inline const std::string& backupMapRequest::_internal_covisibility_graph() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; + return _impl_.covisibility_graph_.Get(); } -inline void getMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void backupMapRequest::_internal_set_covisibility_graph(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + _impl_.covisibility_graph_.Set(value, GetArena()); +} +inline std::string* backupMapRequest::_internal_mutable_covisibility_graph() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.covisibility_graph_.Mutable( GetArena()); +} +inline std::string* backupMapRequest::release_covisibility_graph() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.covisibility_graph) + return _impl_.covisibility_graph_.Release(); +} +inline void backupMapRequest::set_allocated_covisibility_graph(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.covisibility_graph_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.covisibility_graph_.IsDefault()) { + _impl_.covisibility_graph_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.covisibility_graph) } -// ------------------------------------------------------------------- - -// setMapRequestRequest - -// int32 grpcServerCompressionFormat = 1; -inline void setMapRequestRequest::clear_grpcservercompressionformat() { +// bytes identification = 8; +inline void backupMapRequest::clear_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + _impl_.identification_.ClearToEmpty(); } -inline ::int32_t setMapRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline const std::string& backupMapRequest::identification() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.identification) + return _internal_identification(); } -inline void setMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestRequest.grpcServerCompressionFormat) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_identification(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.identification_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.identification) } -inline ::int32_t setMapRequestRequest::_internal_grpcservercompressionformat() const { +inline std::string* backupMapRequest::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_identification(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.identification) + return _s; +} +inline const std::string& backupMapRequest::_internal_identification() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.identification_.Get(); } -inline void setMapRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void backupMapRequest::_internal_set_identification(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.identification_.Set(value, GetArena()); +} +inline std::string* backupMapRequest::_internal_mutable_identification() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.identification_.Mutable( GetArena()); +} +inline std::string* backupMapRequest::release_identification() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.identification) + return _impl_.identification_.Release(); +} +inline void backupMapRequest::set_allocated_identification(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.identification_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.identification_.IsDefault()) { + _impl_.identification_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.identification) } -// string accessToken = 2; -inline void setMapRequestRequest::clear_accesstoken() { +// bytes keyframes = 9; +inline void backupMapRequest::clear_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); + _impl_.keyframes_.ClearToEmpty(); } -inline const std::string& setMapRequestRequest::accesstoken() const +inline const std::string& backupMapRequest::keyframes() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.keyframes) + return _internal_keyframes(); } template -inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_keyframes(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) + _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.keyframes) } -inline std::string* setMapRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setMapRequestRequest.accessToken) +inline std::string* backupMapRequest::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_keyframes(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.keyframes) return _s; } -inline const std::string& setMapRequestRequest::_internal_accesstoken() const { +inline const std::string& backupMapRequest::_internal_keyframes() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.keyframes_.Get(); } -inline void setMapRequestRequest::_internal_set_accesstoken(const std::string& value) { +inline void backupMapRequest::_internal_set_keyframes(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.keyframes_.Set(value, GetArena()); } -inline std::string* setMapRequestRequest::_internal_mutable_accesstoken() { +inline std::string* backupMapRequest::_internal_mutable_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.keyframes_.Mutable( GetArena()); } -inline std::string* setMapRequestRequest::release_accesstoken() { +inline std::string* backupMapRequest::release_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.keyframes) + return _impl_.keyframes_.Release(); } -inline void setMapRequestRequest::set_allocated_accesstoken(std::string* value) { +inline void backupMapRequest::set_allocated_keyframes(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.keyframes_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.keyframes_.IsDefault()) { + _impl_.keyframes_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.keyframes) } -// string mapUUID = 3; -inline void setMapRequestRequest::clear_mapuuid() { +// bytes pointcloud = 10; +inline void backupMapRequest::clear_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.ClearToEmpty(); + _impl_.pointcloud_.ClearToEmpty(); } -inline const std::string& setMapRequestRequest::mapuuid() const +inline const std::string& backupMapRequest::pointcloud() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.pointcloud) + return _internal_pointcloud(); } template -inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_pointcloud(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) + _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.pointcloud) +} +inline std::string* backupMapRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_pointcloud(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.pointcloud) + return _s; +} +inline const std::string& backupMapRequest::_internal_pointcloud() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.pointcloud_.Get(); +} +inline void backupMapRequest::_internal_set_pointcloud(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pointcloud_.Set(value, GetArena()); +} +inline std::string* backupMapRequest::_internal_mutable_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.pointcloud_.Mutable( GetArena()); +} +inline std::string* backupMapRequest::release_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.pointcloud) + return _impl_.pointcloud_.Release(); +} +inline void backupMapRequest::set_allocated_pointcloud(std::string* 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.backupMapRequest.pointcloud) +} + +// ------------------------------------------------------------------- + +// backupMapResponse + +// bytes map_information = 1; +inline void backupMapResponse::clear_map_information() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.ClearToEmpty(); +} +inline const std::string& backupMapResponse::map_information() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.map_information) + return _internal_map_information(); +} +template +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_map_information(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.map_information) } -inline std::string* setMapRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.setMapRequestRequest.mapUUID) +inline std::string* backupMapResponse::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_map_information(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.map_information) return _s; } -inline const std::string& setMapRequestRequest::_internal_mapuuid() const { +inline const std::string& backupMapResponse::_internal_map_information() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.map_information_.Get(); } -inline void setMapRequestRequest::_internal_set_mapuuid(const std::string& value) { +inline void backupMapResponse::_internal_set_map_information(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.map_information_.Set(value, GetArena()); } -inline std::string* setMapRequestRequest::_internal_mutable_mapuuid() { +inline std::string* backupMapResponse::_internal_mutable_map_information() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.map_information_.Mutable( GetArena()); } -inline std::string* setMapRequestRequest::release_mapuuid() { +inline std::string* backupMapResponse::release_map_information() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.map_information) + return _impl_.map_information_.Release(); } -inline void setMapRequestRequest::set_allocated_mapuuid(std::string* value) { +inline void backupMapResponse::set_allocated_map_information(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.map_information_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.map_information_.IsDefault()) { + _impl_.map_information_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.map_information) } -// bytes mapDatastructure = 4; -inline void setMapRequestRequest::clear_mapdatastructure() { +// bytes cameraParameters = 2; +inline void backupMapResponse::clear_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); } -inline const std::string& setMapRequestRequest::mapdatastructure() const +inline const std::string& backupMapResponse::cameraparameters() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) - return _internal_mapdatastructure(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.cameraParameters) + return _internal_cameraparameters(); } template -inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_mapdatastructure(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_cameraparameters(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_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.cameraParameters) } -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* backupMapResponse::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparameters(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.cameraParameters) return _s; } -inline const std::string& setMapRequestRequest::_internal_mapdatastructure() const { +inline const std::string& backupMapResponse::_internal_cameraparameters() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapdatastructure_.Get(); + return _impl_.cameraparameters_.Get(); } -inline void setMapRequestRequest::_internal_set_mapdatastructure(const std::string& value) { +inline void backupMapResponse::_internal_set_cameraparameters(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.Set(value, GetArena()); + _impl_.cameraparameters_.Set(value, GetArena()); } -inline std::string* setMapRequestRequest::_internal_mutable_mapdatastructure() { +inline std::string* backupMapResponse::_internal_mutable_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapdatastructure_.Mutable( GetArena()); + return _impl_.cameraparameters_.Mutable( GetArena()); } -inline std::string* setMapRequestRequest::release_mapdatastructure() { +inline std::string* backupMapResponse::release_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) - return _impl_.mapdatastructure_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.cameraParameters) + return _impl_.cameraparameters_.Release(); } -inline void setMapRequestRequest::set_allocated_mapdatastructure(std::string* value) { +inline void backupMapResponse::set_allocated_cameraparameters(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetAllocated(value, GetArena()); + _impl_.cameraparameters_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapdatastructure_.IsDefault()) { - _impl_.mapdatastructure_.Set("", GetArena()); + if (_impl_.cameraparameters_.IsDefault()) { + _impl_.cameraparameters_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.setMapRequestRequest.mapDatastructure) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.cameraParameters) } -// ------------------------------------------------------------------- - -// setMapRequestResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void setMapRequestResponse::clear_xpcfgrpcreturnvalue() { +// bytes coordinate = 3; +inline void backupMapResponse::clear_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.coordinate_.ClearToEmpty(); } -inline ::int32_t setMapRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.setMapRequestResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline const std::string& backupMapResponse::coordinate() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.coordinate) + return _internal_coordinate(); } -inline void setMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.setMapRequestResponse.xpcfGrpcReturnValue) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_coordinate(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.coordinate) } -inline ::int32_t setMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline std::string* backupMapResponse::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_coordinate(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.coordinate) + return _s; +} +inline const std::string& backupMapResponse::_internal_coordinate() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; + return _impl_.coordinate_.Get(); } -inline void setMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void backupMapResponse::_internal_set_coordinate(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + _impl_.coordinate_.Set(value, GetArena()); } - -// ------------------------------------------------------------------- - -// getPointCloudRequestRequest - -// int32 grpcServerCompressionFormat = 1; -inline void getPointCloudRequestRequest::clear_grpcservercompressionformat() { +inline std::string* backupMapResponse::_internal_mutable_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; -} -inline ::int32_t getPointCloudRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); -} -inline void getPointCloudRequestRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestRequest.grpcServerCompressionFormat) + return _impl_.coordinate_.Mutable( GetArena()); } -inline ::int32_t getPointCloudRequestRequest::_internal_grpcservercompressionformat() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; +inline std::string* backupMapResponse::release_coordinate() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.coordinate) + return _impl_.coordinate_.Release(); } -inline void getPointCloudRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void backupMapResponse::set_allocated_coordinate(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.coordinate_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.coordinate_.IsDefault()) { + _impl_.coordinate_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.coordinate) } -// string accessToken = 2; -inline void getPointCloudRequestRequest::clear_accesstoken() { +// bytes covisibility_graph = 4; +inline void backupMapResponse::clear_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); + _impl_.covisibility_graph_.ClearToEmpty(); } -inline const std::string& getPointCloudRequestRequest::accesstoken() const +inline const std::string& backupMapResponse::covisibility_graph() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) - return _internal_accesstoken(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.covisibility_graph) + return _internal_covisibility_graph(); } template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_covisibility_graph(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) + _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.covisibility_graph) } -inline std::string* getPointCloudRequestRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_accesstoken(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) +inline std::string* backupMapResponse::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_covisibility_graph(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.covisibility_graph) return _s; } -inline const std::string& getPointCloudRequestRequest::_internal_accesstoken() const { +inline const std::string& backupMapResponse::_internal_covisibility_graph() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); + return _impl_.covisibility_graph_.Get(); } -inline void getPointCloudRequestRequest::_internal_set_accesstoken(const std::string& value) { +inline void backupMapResponse::_internal_set_covisibility_graph(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); + _impl_.covisibility_graph_.Set(value, GetArena()); } -inline std::string* getPointCloudRequestRequest::_internal_mutable_accesstoken() { +inline std::string* backupMapResponse::_internal_mutable_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); + return _impl_.covisibility_graph_.Mutable( GetArena()); } -inline std::string* getPointCloudRequestRequest::release_accesstoken() { +inline std::string* backupMapResponse::release_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) - return _impl_.accesstoken_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.covisibility_graph) + return _impl_.covisibility_graph_.Release(); } -inline void getPointCloudRequestRequest::set_allocated_accesstoken(std::string* value) { +inline void backupMapResponse::set_allocated_covisibility_graph(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.SetAllocated(value, GetArena()); + _impl_.covisibility_graph_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.accesstoken_.IsDefault()) { - _impl_.accesstoken_.Set("", GetArena()); + if (_impl_.covisibility_graph_.IsDefault()) { + _impl_.covisibility_graph_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.accessToken) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.covisibility_graph) } -// string mapUUID = 3; -inline void getPointCloudRequestRequest::clear_mapuuid() { +// bytes identification = 5; +inline void backupMapResponse::clear_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); } -inline const std::string& getPointCloudRequestRequest::mapuuid() const +inline const std::string& backupMapResponse::identification() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.identification) + return _internal_identification(); } template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_identification(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_.identification_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.identification) } -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* backupMapResponse::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_identification(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.identification) return _s; } -inline const std::string& getPointCloudRequestRequest::_internal_mapuuid() const { +inline const std::string& backupMapResponse::_internal_identification() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.identification_.Get(); } -inline void getPointCloudRequestRequest::_internal_set_mapuuid(const std::string& value) { +inline void backupMapResponse::_internal_set_identification(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.identification_.Set(value, GetArena()); } -inline std::string* getPointCloudRequestRequest::_internal_mutable_mapuuid() { +inline std::string* backupMapResponse::_internal_mutable_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.identification_.Mutable( GetArena()); } -inline std::string* getPointCloudRequestRequest::release_mapuuid() { +inline std::string* backupMapResponse::release_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.identification) + return _impl_.identification_.Release(); } -inline void getPointCloudRequestRequest::set_allocated_mapuuid(std::string* value) { +inline void backupMapResponse::set_allocated_identification(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.identification_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.identification_.IsDefault()) { + _impl_.identification_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.identification) } -// bytes pointCloud = 4; -inline void getPointCloudRequestRequest::clear_pointcloud() { +// bytes keyframes = 6; +inline void backupMapResponse::clear_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.ClearToEmpty(); + _impl_.keyframes_.ClearToEmpty(); } -inline const std::string& getPointCloudRequestRequest::pointcloud() const +inline const std::string& backupMapResponse::keyframes() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) - return _internal_pointcloud(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.keyframes) + return _internal_keyframes(); } template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_pointcloud(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_keyframes(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) + _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.keyframes) } -inline std::string* getPointCloudRequestRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) +inline std::string* backupMapResponse::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_keyframes(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.keyframes) return _s; } -inline const std::string& getPointCloudRequestRequest::_internal_pointcloud() const { +inline const std::string& backupMapResponse::_internal_keyframes() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pointcloud_.Get(); + return _impl_.keyframes_.Get(); } -inline void getPointCloudRequestRequest::_internal_set_pointcloud(const std::string& value) { +inline void backupMapResponse::_internal_set_keyframes(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.Set(value, GetArena()); + _impl_.keyframes_.Set(value, GetArena()); } -inline std::string* getPointCloudRequestRequest::_internal_mutable_pointcloud() { +inline std::string* backupMapResponse::_internal_mutable_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pointcloud_.Mutable( GetArena()); + return _impl_.keyframes_.Mutable( GetArena()); } -inline std::string* getPointCloudRequestRequest::release_pointcloud() { +inline std::string* backupMapResponse::release_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) - return _impl_.pointcloud_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.keyframes) + return _impl_.keyframes_.Release(); } -inline void getPointCloudRequestRequest::set_allocated_pointcloud(std::string* value) { +inline void backupMapResponse::set_allocated_keyframes(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.SetAllocated(value, GetArena()); + _impl_.keyframes_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.pointcloud_.IsDefault()) { - _impl_.pointcloud_.Set("", GetArena()); + if (_impl_.keyframes_.IsDefault()) { + _impl_.keyframes_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestRequest.pointCloud) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.keyframes) } -// ------------------------------------------------------------------- - -// getPointCloudRequestResponse - -// bytes pointCloud = 1; -inline void getPointCloudRequestResponse::clear_pointcloud() { +// bytes pointcloud = 7; +inline void backupMapResponse::clear_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.pointcloud_.ClearToEmpty(); } -inline const std::string& getPointCloudRequestResponse::pointcloud() const +inline const std::string& backupMapResponse::pointcloud() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.pointcloud) return _internal_pointcloud(); } template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestResponse::set_pointcloud(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::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) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.pointcloud) } -inline std::string* getPointCloudRequestResponse::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* backupMapResponse::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.pointcloud) return _s; } -inline const std::string& getPointCloudRequestResponse::_internal_pointcloud() const { +inline const std::string& backupMapResponse::_internal_pointcloud() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.pointcloud_.Get(); } -inline void getPointCloudRequestResponse::_internal_set_pointcloud(const std::string& value) { +inline void backupMapResponse::_internal_set_pointcloud(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.pointcloud_.Set(value, GetArena()); } -inline std::string* getPointCloudRequestResponse::_internal_mutable_pointcloud() { +inline std::string* backupMapResponse::_internal_mutable_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.pointcloud_.Mutable( GetArena()); } -inline std::string* getPointCloudRequestResponse::release_pointcloud() { +inline std::string* backupMapResponse::release_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.pointcloud) return _impl_.pointcloud_.Release(); } -inline void getPointCloudRequestResponse::set_allocated_pointcloud(std::string* value) { +inline void backupMapResponse::set_allocated_pointcloud(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.pointcloud_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -18088,97 +20514,97 @@ inline void getPointCloudRequestResponse::set_allocated_pointcloud(std::string* _impl_.pointcloud_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getPointCloudRequestResponse.pointCloud) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.pointcloud) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getPointCloudRequestResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 8; +inline void backupMapResponse::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 backupMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getPointCloudRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void backupMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getPointCloudRequestResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.xpcfGrpcReturnValue) } -inline ::int32_t getPointCloudRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t backupMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getPointCloudRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void backupMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getMapInfoRequest +// restoreMapRequest // int32 grpcServerCompressionFormat = 1; -inline void getMapInfoRequest::clear_grpcservercompressionformat() { +inline void restoreMapRequest::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 restoreMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getMapInfoRequest::set_grpcservercompressionformat(::int32_t value) { +inline void restoreMapRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.grpcServerCompressionFormat) } -inline ::int32_t getMapInfoRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t restoreMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getMapInfoRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void restoreMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string accessToken = 2; -inline void getMapInfoRequest::clear_accesstoken() { +inline void restoreMapRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& getMapInfoRequest::accesstoken() const +inline const std::string& restoreMapRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.accessToken) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.accessToken) return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_accesstoken(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::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.restoreMapRequest.accessToken) } -inline std::string* getMapInfoRequest::mutable_accesstoken() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* restoreMapRequest::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.restoreMapRequest.accessToken) return _s; } -inline const std::string& getMapInfoRequest::_internal_accesstoken() const { +inline const std::string& restoreMapRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.accesstoken_.Get(); } -inline void getMapInfoRequest::_internal_set_accesstoken(const std::string& value) { +inline void restoreMapRequest::_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* restoreMapRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* getMapInfoRequest::release_accesstoken() { +inline std::string* restoreMapRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.accessToken) + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.accessToken) return _impl_.accesstoken_.Release(); } -inline void getMapInfoRequest::set_allocated_accesstoken(std::string* value) { +inline void restoreMapRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -18186,357 +20612,431 @@ 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.restoreMapRequest.accessToken) } // string mapUUID = 3; -inline void getMapInfoRequest::clear_mapuuid() { +inline void restoreMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getMapInfoRequest::mapuuid() const +inline const std::string& restoreMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_mapuuid(Arg_&& arg, +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.getMapInfoRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.mapUUID) +} +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_.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:grpcIFrontEnd.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:grpcIFrontEnd.restoreMapRequest.mapUUID) +} + +// bytes map_information = 4; +inline void restoreMapRequest::clear_map_information() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.ClearToEmpty(); +} +inline const std::string& restoreMapRequest::map_information() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.map_information) + return _internal_map_information(); +} +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_map_information(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.map_information) } -inline std::string* getMapInfoRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.getMapInfoRequest.mapUUID) +inline std::string* restoreMapRequest::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_map_information(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.map_information) return _s; } -inline const std::string& getMapInfoRequest::_internal_mapuuid() const { +inline const std::string& restoreMapRequest::_internal_map_information() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.map_information_.Get(); } -inline void getMapInfoRequest::_internal_set_mapuuid(const std::string& value) { +inline void restoreMapRequest::_internal_set_map_information(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.map_information_.Set(value, GetArena()); } -inline std::string* getMapInfoRequest::_internal_mutable_mapuuid() { +inline std::string* restoreMapRequest::_internal_mutable_map_information() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.map_information_.Mutable( GetArena()); } -inline std::string* getMapInfoRequest::release_mapuuid() { +inline std::string* restoreMapRequest::release_map_information() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.map_information) + return _impl_.map_information_.Release(); } -inline void getMapInfoRequest::set_allocated_mapuuid(std::string* value) { +inline void restoreMapRequest::set_allocated_map_information(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.map_information_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.map_information_.IsDefault()) { + _impl_.map_information_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.map_information) } -// string version = 4; -inline void getMapInfoRequest::clear_version() { +// bytes cameraParameters = 5; +inline void restoreMapRequest::clear_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); } -inline const std::string& getMapInfoRequest::version() const +inline const std::string& restoreMapRequest::cameraparameters() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.version) - return _internal_version(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.cameraParameters) + return _internal_cameraparameters(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_version(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_cameraparameters(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_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.cameraParameters) } -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* restoreMapRequest::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparameters(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.cameraParameters) return _s; } -inline const std::string& getMapInfoRequest::_internal_version() const { +inline const std::string& restoreMapRequest::_internal_cameraparameters() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.version_.Get(); + return _impl_.cameraparameters_.Get(); } -inline void getMapInfoRequest::_internal_set_version(const std::string& value) { +inline void restoreMapRequest::_internal_set_cameraparameters(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.Set(value, GetArena()); + _impl_.cameraparameters_.Set(value, GetArena()); } -inline std::string* getMapInfoRequest::_internal_mutable_version() { +inline std::string* restoreMapRequest::_internal_mutable_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.version_.Mutable( GetArena()); + return _impl_.cameraparameters_.Mutable( GetArena()); } -inline std::string* getMapInfoRequest::release_version() { +inline std::string* restoreMapRequest::release_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoRequest.version) - return _impl_.version_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.cameraParameters) + return _impl_.cameraparameters_.Release(); } -inline void getMapInfoRequest::set_allocated_version(std::string* value) { +inline void restoreMapRequest::set_allocated_cameraparameters(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.SetAllocated(value, GetArena()); + _impl_.cameraparameters_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.version_.IsDefault()) { - _impl_.version_.Set("", GetArena()); + if (_impl_.cameraparameters_.IsDefault()) { + _impl_.cameraparameters_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.getMapInfoRequest.version) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.cameraParameters) } -// sint32 globalDescriptorType = 5; -inline void getMapInfoRequest::clear_globaldescriptortype() { +// bytes coordinate = 6; +inline void restoreMapRequest::clear_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = 0; + _impl_.coordinate_.ClearToEmpty(); } -inline ::int32_t getMapInfoRequest::globaldescriptortype() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.globalDescriptorType) - return _internal_globaldescriptortype(); +inline const std::string& restoreMapRequest::coordinate() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.coordinate) + return _internal_coordinate(); } -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 restoreMapRequest::set_coordinate(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.coordinate) } -inline ::int32_t getMapInfoRequest::_internal_globaldescriptortype() const { +inline std::string* restoreMapRequest::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_coordinate(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.coordinate) + return _s; +} +inline const std::string& restoreMapRequest::_internal_coordinate() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.globaldescriptortype_; + return _impl_.coordinate_.Get(); } -inline void getMapInfoRequest::_internal_set_globaldescriptortype(::int32_t value) { +inline void restoreMapRequest::_internal_set_coordinate(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = value; + _impl_.coordinate_.Set(value, GetArena()); } - -// sint32 descriptorType = 6; -inline void getMapInfoRequest::clear_descriptortype() { +inline std::string* restoreMapRequest::_internal_mutable_coordinate() { ::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(); -} -inline void getMapInfoRequest::set_descriptortype(::int32_t value) { - _internal_set_descriptortype(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.descriptorType) + return _impl_.coordinate_.Mutable( GetArena()); } -inline ::int32_t getMapInfoRequest::_internal_descriptortype() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.descriptortype_; +inline std::string* restoreMapRequest::release_coordinate() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.coordinate) + return _impl_.coordinate_.Release(); } -inline void getMapInfoRequest::_internal_set_descriptortype(::int32_t value) { +inline void restoreMapRequest::set_allocated_coordinate(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = value; + _impl_.coordinate_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.coordinate_.IsDefault()) { + _impl_.coordinate_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.coordinate) } -// uint32 dataSize = 7; -inline void getMapInfoRequest::clear_datasize() { +// bytes covisibility_graph = 7; +inline void restoreMapRequest::clear_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = 0u; + _impl_.covisibility_graph_.ClearToEmpty(); } -inline ::uint32_t getMapInfoRequest::datasize() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoRequest.dataSize) - return _internal_datasize(); +inline const std::string& restoreMapRequest::covisibility_graph() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.covisibility_graph) + return _internal_covisibility_graph(); } -inline void getMapInfoRequest::set_datasize(::uint32_t value) { - _internal_set_datasize(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.getMapInfoRequest.dataSize) +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_covisibility_graph(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.covisibility_graph) } -inline ::uint32_t getMapInfoRequest::_internal_datasize() const { +inline std::string* restoreMapRequest::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_covisibility_graph(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.covisibility_graph) + return _s; +} +inline const std::string& restoreMapRequest::_internal_covisibility_graph() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.datasize_; + return _impl_.covisibility_graph_.Get(); } -inline void getMapInfoRequest::_internal_set_datasize(::uint32_t value) { +inline void restoreMapRequest::_internal_set_covisibility_graph(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = value; + _impl_.covisibility_graph_.Set(value, GetArena()); } - -// bool areImageSaved = 8; -inline void getMapInfoRequest::clear_areimagesaved() { +inline std::string* restoreMapRequest::_internal_mutable_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = false; -} -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) + return _impl_.covisibility_graph_.Mutable( GetArena()); } -inline bool getMapInfoRequest::_internal_areimagesaved() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.areimagesaved_; +inline std::string* restoreMapRequest::release_covisibility_graph() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.covisibility_graph) + return _impl_.covisibility_graph_.Release(); } -inline void getMapInfoRequest::_internal_set_areimagesaved(bool value) { +inline void restoreMapRequest::set_allocated_covisibility_graph(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = value; + _impl_.covisibility_graph_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.covisibility_graph_.IsDefault()) { + _impl_.covisibility_graph_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.covisibility_graph) } -// ------------------------------------------------------------------- - -// getMapInfoResponse - -// string version = 1; -inline void getMapInfoResponse::clear_version() { +// bytes identification = 8; +inline void restoreMapRequest::clear_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); } -inline const std::string& getMapInfoResponse::version() const +inline const std::string& restoreMapRequest::identification() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.version) - return _internal_version(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.identification) + return _internal_identification(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoResponse::set_version(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_identification(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_.identification_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.identification) } -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_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_identification(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.identification) return _s; } -inline const std::string& getMapInfoResponse::_internal_version() const { +inline const std::string& restoreMapRequest::_internal_identification() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.version_.Get(); + return _impl_.identification_.Get(); } -inline void getMapInfoResponse::_internal_set_version(const std::string& value) { +inline void restoreMapRequest::_internal_set_identification(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.Set(value, GetArena()); + _impl_.identification_.Set(value, GetArena()); } -inline std::string* getMapInfoResponse::_internal_mutable_version() { +inline std::string* restoreMapRequest::_internal_mutable_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.version_.Mutable( GetArena()); + return _impl_.identification_.Mutable( GetArena()); } -inline std::string* getMapInfoResponse::release_version() { +inline std::string* restoreMapRequest::release_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.getMapInfoResponse.version) - return _impl_.version_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.identification) + return _impl_.identification_.Release(); } -inline void getMapInfoResponse::set_allocated_version(std::string* value) { +inline void restoreMapRequest::set_allocated_identification(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.SetAllocated(value, GetArena()); + _impl_.identification_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.version_.IsDefault()) { - _impl_.version_.Set("", GetArena()); + if (_impl_.identification_.IsDefault()) { + _impl_.identification_.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.identification) } -// sint32 globalDescriptorType = 2; -inline void getMapInfoResponse::clear_globaldescriptortype() { +// bytes keyframes = 9; +inline void restoreMapRequest::clear_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = 0; + _impl_.keyframes_.ClearToEmpty(); } -inline ::int32_t getMapInfoResponse::globaldescriptortype() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.globalDescriptorType) - return _internal_globaldescriptortype(); +inline const std::string& restoreMapRequest::keyframes() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.keyframes) + return _internal_keyframes(); } -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_keyframes(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.keyframes) } -inline ::int32_t getMapInfoResponse::_internal_globaldescriptortype() const { +inline std::string* restoreMapRequest::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_keyframes(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.keyframes) + return _s; +} +inline const std::string& restoreMapRequest::_internal_keyframes() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.globaldescriptortype_; + return _impl_.keyframes_.Get(); } -inline void getMapInfoResponse::_internal_set_globaldescriptortype(::int32_t value) { +inline void restoreMapRequest::_internal_set_keyframes(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = value; + _impl_.keyframes_.Set(value, GetArena()); } - -// sint32 descriptorType = 3; -inline void getMapInfoResponse::clear_descriptortype() { +inline std::string* restoreMapRequest::_internal_mutable_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = 0; + return _impl_.keyframes_.Mutable( GetArena()); } -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) -} -inline ::int32_t getMapInfoResponse::_internal_descriptortype() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.descriptortype_; +inline std::string* restoreMapRequest::release_keyframes() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.keyframes) + return _impl_.keyframes_.Release(); } -inline void getMapInfoResponse::_internal_set_descriptortype(::int32_t value) { +inline void restoreMapRequest::set_allocated_keyframes(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = value; + _impl_.keyframes_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.keyframes_.IsDefault()) { + _impl_.keyframes_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.keyframes) } -// uint32 dataSize = 4; -inline void getMapInfoResponse::clear_datasize() { +// bytes pointcloud = 10; +inline void restoreMapRequest::clear_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = 0u; + _impl_.pointcloud_.ClearToEmpty(); } -inline ::uint32_t getMapInfoResponse::datasize() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.getMapInfoResponse.dataSize) - return _internal_datasize(); +inline const std::string& restoreMapRequest::pointcloud() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.pointcloud) + return _internal_pointcloud(); } -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_pointcloud(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.pointcloud) } -inline ::uint32_t getMapInfoResponse::_internal_datasize() const { +inline std::string* restoreMapRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_pointcloud(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.pointcloud) + return _s; +} +inline const std::string& restoreMapRequest::_internal_pointcloud() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.datasize_; + return _impl_.pointcloud_.Get(); } -inline void getMapInfoResponse::_internal_set_datasize(::uint32_t value) { +inline void restoreMapRequest::_internal_set_pointcloud(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = value; + _impl_.pointcloud_.Set(value, GetArena()); } - -// bool areImageSaved = 5; -inline void getMapInfoResponse::clear_areimagesaved() { +inline std::string* restoreMapRequest::_internal_mutable_pointcloud() { ::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_.pointcloud_.Mutable( GetArena()); } -inline bool getMapInfoResponse::_internal_areimagesaved() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.areimagesaved_; +inline std::string* restoreMapRequest::release_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.pointcloud) + return _impl_.pointcloud_.Release(); } -inline void getMapInfoResponse::_internal_set_areimagesaved(bool value) { +inline void restoreMapRequest::set_allocated_pointcloud(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = value; + _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.restoreMapRequest.pointcloud) } -// 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..372e404 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,14 @@ class requestMapProcessingRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kMapUUIDFieldNumber = 2, - kResultMapUUIDFieldNumber = 3, + kMapInformationFieldNumber = 3, + kCameraParametersFieldNumber = 4, + kCoordinateFieldNumber = 5, + kCovisibilityGraphFieldNumber = 6, + kIdentificationFieldNumber = 7, + kKeyframesFieldNumber = 8, + kPointcloudFieldNumber = 9, kGrpcServerCompressionFormatFieldNumber = 1, - kProcessingTypeFieldNumber = 4, }; // string mapUUID = 2; void clear_mapuuid() ; @@ -830,20 +847,116 @@ 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 map_information = 3; + void clear_map_information() ; + const std::string& map_information() 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_map_information(Arg_&& arg, Args_... args); + std::string* mutable_map_information(); + PROTOBUF_NODISCARD std::string* release_map_information(); + void set_allocated_map_information(std::string* value); private: - const std::string& _internal_resultmapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_resultmapuuid( + const std::string& _internal_map_information() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( const std::string& value); - std::string* _internal_mutable_resultmapuuid(); + std::string* _internal_mutable_map_information(); + + public: + // bytes cameraParameters = 4; + void clear_cameraparameters() ; + const std::string& cameraparameters() const; + template + void set_cameraparameters(Arg_&& arg, Args_... args); + std::string* mutable_cameraparameters(); + PROTOBUF_NODISCARD std::string* release_cameraparameters(); + void set_allocated_cameraparameters(std::string* value); + + private: + const std::string& _internal_cameraparameters() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( + const std::string& value); + std::string* _internal_mutable_cameraparameters(); + + public: + // bytes coordinate = 5; + void clear_coordinate() ; + const std::string& coordinate() const; + template + void set_coordinate(Arg_&& arg, Args_... args); + std::string* mutable_coordinate(); + PROTOBUF_NODISCARD std::string* release_coordinate(); + void set_allocated_coordinate(std::string* value); + + private: + const std::string& _internal_coordinate() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( + const std::string& value); + std::string* _internal_mutable_coordinate(); + + public: + // bytes covisibility_graph = 6; + void clear_covisibility_graph() ; + const std::string& covisibility_graph() const; + template + void set_covisibility_graph(Arg_&& arg, Args_... args); + std::string* mutable_covisibility_graph(); + PROTOBUF_NODISCARD std::string* release_covisibility_graph(); + void set_allocated_covisibility_graph(std::string* value); + + private: + const std::string& _internal_covisibility_graph() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( + const std::string& value); + std::string* _internal_mutable_covisibility_graph(); + + public: + // bytes identification = 7; + void clear_identification() ; + const std::string& identification() const; + template + void set_identification(Arg_&& arg, Args_... args); + std::string* mutable_identification(); + PROTOBUF_NODISCARD std::string* release_identification(); + void set_allocated_identification(std::string* value); + + private: + const std::string& _internal_identification() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( + const std::string& value); + std::string* _internal_mutable_identification(); + + public: + // bytes keyframes = 8; + void clear_keyframes() ; + const std::string& keyframes() const; + template + void set_keyframes(Arg_&& arg, Args_... args); + std::string* mutable_keyframes(); + PROTOBUF_NODISCARD std::string* release_keyframes(); + void set_allocated_keyframes(std::string* value); + + private: + const std::string& _internal_keyframes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( + const std::string& value); + std::string* _internal_mutable_keyframes(); + + public: + // bytes pointcloud = 9; + 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); + + private: + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& value); + std::string* _internal_mutable_pointcloud(); public: // int32 grpcServerCompressionFormat = 1; @@ -856,27 +969,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> + 4, 9, 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; @@ -891,11 +994,16 @@ 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 map_information_; + ::google::protobuf::internal::ArenaStringPtr cameraparameters_; + ::google::protobuf::internal::ArenaStringPtr coordinate_; + ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; + ::google::protobuf::internal::ArenaStringPtr identification_; + ::google::protobuf::internal::ArenaStringPtr keyframes_; + ::google::protobuf::internal::ArenaStringPtr pointcloud_; ::int32_t grpcservercompressionformat_; - ::int32_t processingtype_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER }; @@ -904,23 +1012,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 +1060,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 +1081,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 +1089,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 +1116,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 +1136,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 +1148,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 +1173,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 +1183,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 +1231,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 +1252,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 +1260,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 +1287,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 +1308,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 +1328,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 +1354,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 +1389,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 +1402,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 +1450,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 +1471,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 +1479,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 +1506,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 +1526,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 +1555,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 +1580,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 +1591,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 +1639,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 +1660,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 +1668,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 +1695,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 +1716,7 @@ class getPointCloudRequestRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kMapUUIDFieldNumber = 2, - kPointCloudFieldNumber = 3, + kServiceURLFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, }; // string mapUUID = 2; @@ -1633,20 +1735,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 +1761,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 +1786,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 +1798,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 +1846,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 +1867,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 +1875,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,16 +1902,16 @@ 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) { + 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; @@ -1820,23 +1922,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 +1951,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 +1961,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 +1976,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 +1987,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 +2035,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 +2056,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 +2064,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 +2091,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 +2112,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 +2131,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 +2157,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 +2182,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 +2194,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 +2242,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 +2263,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 +2271,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 +2298,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 +2318,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); + // 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: - ::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); - - 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 +2347,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 +2372,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 +2383,23 @@ class getMapProcessingStatusResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getMapProcessingStatusRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapProcessingStatusRequest) */ { +class getMapRequestRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.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 @@ -2359,16 +2431,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 +2452,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 +2460,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 +2487,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 +2507,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 +2554,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 +2589,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 +2602,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 +2650,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 +2671,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 +2679,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 +2706,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,43 +2726,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); @@ -2706,17 +2771,17 @@ class getMapProcessingDataResponse final : public ::google::protobuf::Message void _internal_set_xpcfgrpcreturnvalue(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapProcessingDataResponse) + // @@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 +2796,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 +2809,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 +2857,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 +2878,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 +2886,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 +2913,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 +2934,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 +2955,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 +3020,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 +3034,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 +3082,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 +3103,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 +3111,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 +3138,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 +3158,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; - 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); + // 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); 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); @@ -3165,17 +3204,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 +3229,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 +3241,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 +3289,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 +3310,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 +3318,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 +3345,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 +3365,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 +3428,17 @@ 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); - - 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) + // @@protoc_insertion_point(class_scope:grpcIMapsManager.getMapProcessingDataRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 7, 0, - 57, 2> + 2, 4, 0, + 66, 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; @@ -3444,14 +3453,11 @@ 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_; - ::int32_t grpcservercompressionformat_; - ::int32_t globaldescriptortype_; - ::int32_t descriptortype_; - ::uint32_t datasize_; - bool areimagesaved_; + 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 }; @@ -3460,23 +3466,23 @@ class getMapInfoRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getAllMapsResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getAllMapsResponse) */ { +class getMapInfoResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapInfoResponse) */ { public: - inline getAllMapsResponse() : getAllMapsResponse(nullptr) {} - ~getAllMapsResponse() override; + inline getMapInfoResponse() : getMapInfoResponse(nullptr) {} + ~getMapInfoResponse() override; template - explicit PROTOBUF_CONSTEXPR getAllMapsResponse( + explicit PROTOBUF_CONSTEXPR getMapInfoResponse( ::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 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 getAllMapsResponse& operator=(getAllMapsResponse&& from) noexcept { + inline getMapInfoResponse& operator=(getMapInfoResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3508,16 +3514,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 getMapInfoResponse& default_instance() { return *internal_default_instance(); } - static inline const getAllMapsResponse* internal_default_instance() { - return reinterpret_cast( - &_getAllMapsResponse_default_instance_); + static inline const getMapInfoResponse* internal_default_instance() { + return reinterpret_cast( + &_getMapInfoResponse_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 = 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()) { @@ -3529,7 +3535,7 @@ class getAllMapsResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getAllMapsResponse* other) { + void UnsafeArenaSwap(getMapInfoResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3537,13 +3543,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); + getMapInfoResponse* 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 getMapInfoResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getAllMapsResponse& from) { getAllMapsResponse::MergeImpl(*this, from); } + void MergeFrom(const getMapInfoResponse& from) { getMapInfoResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3564,16 +3570,16 @@ class getAllMapsResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getAllMapsResponse* other); + void InternalSwap(getMapInfoResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getAllMapsResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapInfoResponse"; } 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 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; @@ -3584,26 +3590,70 @@ class getAllMapsResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapUUIDListFieldNumber = 1, - kXpcfGrpcReturnValueFieldNumber = 2, + kVersionFieldNumber = 1, + kGlobalDescriptorTypeFieldNumber = 2, + kDescriptorTypeFieldNumber = 3, + kDataSizeFieldNumber = 4, + kAreImageSavedFieldNumber = 5, + kXpcfGrpcReturnValueFieldNumber = 6, }; - // bytes mapUUIDList = 1; - void clear_mapuuidlist() ; - const std::string& mapuuidlist() const; + // string version = 1; + void clear_version() ; + const std::string& version() 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_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_mapuuidlist() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuidlist( + const std::string& _internal_version() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_version( const std::string& value); - std::string* _internal_mutable_mapuuidlist(); + 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); @@ -3613,17 +3663,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.getMapInfoResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 1, 2, 0, - 0, 2> + 3, 6, 0, + 51, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_getAllMapsResponse_default_instance_; + &_getMapInfoResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3638,8 +3688,12 @@ 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 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 @@ -3649,23 +3703,23 @@ class getAllMapsResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class getAllMapsRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getAllMapsRequest) */ { +class getMapInfoRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getMapInfoRequest) */ { public: - inline getAllMapsRequest() : getAllMapsRequest(nullptr) {} - ~getAllMapsRequest() override; + inline getMapInfoRequest() : getMapInfoRequest(nullptr) {} + ~getMapInfoRequest() override; template - explicit PROTOBUF_CONSTEXPR getAllMapsRequest( + explicit PROTOBUF_CONSTEXPR getMapInfoRequest( ::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 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 getAllMapsRequest& operator=(getAllMapsRequest&& from) noexcept { + inline getMapInfoRequest& operator=(getMapInfoRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3697,16 +3751,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 getMapInfoRequest& default_instance() { return *internal_default_instance(); } - static inline const getAllMapsRequest* internal_default_instance() { - return reinterpret_cast( - &_getAllMapsRequest_default_instance_); + static inline const getMapInfoRequest* internal_default_instance() { + return reinterpret_cast( + &_getMapInfoRequest_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 = 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()) { @@ -3718,7 +3772,7 @@ class getAllMapsRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(getAllMapsRequest* other) { + void UnsafeArenaSwap(getMapInfoRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3726,13 +3780,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); + getMapInfoRequest* 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 getMapInfoRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const getAllMapsRequest& from) { getAllMapsRequest::MergeImpl(*this, from); } + void MergeFrom(const getMapInfoRequest& from) { getMapInfoRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3753,16 +3807,16 @@ class getAllMapsRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(getAllMapsRequest* other); + void InternalSwap(getMapInfoRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getAllMapsRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getMapInfoRequest"; } 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 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; @@ -3773,23 +3827,44 @@ class getAllMapsRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapUUIDListFieldNumber = 2, + kMapUUIDFieldNumber = 2, + kVersionFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, + kGlobalDescriptorTypeFieldNumber = 4, + kDescriptorTypeFieldNumber = 5, + kDataSizeFieldNumber = 6, + kAreImageSavedFieldNumber = 7, }; - // 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: + // 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; @@ -3802,17 +3877,57 @@ class getAllMapsRequest final : public ::google::protobuf::Message void _internal_set_grpcservercompressionformat(::int32_t value); public: - // @@protoc_insertion_point(class_scope:grpcIMapsManager.getAllMapsRequest) - private: - class _Internal; - friend class ::google::protobuf::internal::TcParser; - static const ::google::protobuf::internal::TcParseTable< - 1, 2, 0, - 0, 2> + // 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_ = - &_getAllMapsRequest_default_instance_; + &_getMapInfoRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3827,9 +3942,14 @@ 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 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 }; @@ -3838,23 +3958,23 @@ class getAllMapsRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class deleteMapResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.deleteMapResponse) */ { +class getAllMapsResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getAllMapsResponse) */ { public: - inline deleteMapResponse() : deleteMapResponse(nullptr) {} - ~deleteMapResponse() override; + inline getAllMapsResponse() : getAllMapsResponse(nullptr) {} + ~getAllMapsResponse() override; template - explicit PROTOBUF_CONSTEXPR deleteMapResponse( + explicit PROTOBUF_CONSTEXPR getAllMapsResponse( ::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 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 deleteMapResponse& operator=(deleteMapResponse&& from) noexcept { + inline getAllMapsResponse& operator=(getAllMapsResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -3886,16 +4006,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 getAllMapsResponse& default_instance() { return *internal_default_instance(); } - static inline const deleteMapResponse* internal_default_instance() { - return reinterpret_cast( - &_deleteMapResponse_default_instance_); + static inline const getAllMapsResponse* internal_default_instance() { + return reinterpret_cast( + &_getAllMapsResponse_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 = 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()) { @@ -3907,7 +4027,7 @@ class deleteMapResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(deleteMapResponse* other) { + void UnsafeArenaSwap(getAllMapsResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -3915,13 +4035,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); + getAllMapsResponse* 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 getAllMapsResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const deleteMapResponse& from) { deleteMapResponse::MergeImpl(*this, from); } + void MergeFrom(const getAllMapsResponse& from) { getAllMapsResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -3942,16 +4062,16 @@ class deleteMapResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(deleteMapResponse* other); + void InternalSwap(getAllMapsResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.deleteMapResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getAllMapsResponse"; } 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 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; @@ -3962,9 +4082,26 @@ class deleteMapResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kXpcfGrpcReturnValueFieldNumber = 1, + kMapUUIDListFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, }; - // sint32 xpcfGrpcReturnValue = 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; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -3974,17 +4111,17 @@ 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.getAllMapsResponse) 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_; + &_getAllMapsResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -3999,7 +4136,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 getAllMapsResponse& from_msg); + ::google::protobuf::internal::ArenaStringPtr mapuuidlist_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -4009,23 +4147,23 @@ class deleteMapResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class deleteMapRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.deleteMapRequest) */ { +class getAllMapsRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.getAllMapsRequest) */ { public: - inline deleteMapRequest() : deleteMapRequest(nullptr) {} - ~deleteMapRequest() override; + inline getAllMapsRequest() : getAllMapsRequest(nullptr) {} + ~getAllMapsRequest() override; template - explicit PROTOBUF_CONSTEXPR deleteMapRequest( + explicit PROTOBUF_CONSTEXPR getAllMapsRequest( ::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 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 deleteMapRequest& operator=(deleteMapRequest&& from) noexcept { + inline getAllMapsRequest& operator=(getAllMapsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4057,16 +4195,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 getAllMapsRequest& default_instance() { return *internal_default_instance(); } - static inline const deleteMapRequest* internal_default_instance() { - return reinterpret_cast( - &_deleteMapRequest_default_instance_); + static inline const getAllMapsRequest* internal_default_instance() { + return reinterpret_cast( + &_getAllMapsRequest_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 = 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()) { @@ -4078,7 +4216,7 @@ class deleteMapRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(deleteMapRequest* other) { + void UnsafeArenaSwap(getAllMapsRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4086,13 +4224,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); + getAllMapsRequest* 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 getAllMapsRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const deleteMapRequest& from) { deleteMapRequest::MergeImpl(*this, from); } + void MergeFrom(const getAllMapsRequest& from) { getAllMapsRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4113,16 +4251,16 @@ class deleteMapRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(deleteMapRequest* other); + void InternalSwap(getAllMapsRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.deleteMapRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.getAllMapsRequest"; } 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 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; @@ -4133,23 +4271,23 @@ class deleteMapRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapUUIDFieldNumber = 2, + kMapUUIDListFieldNumber = 2, kGrpcServerCompressionFormatFieldNumber = 1, }; - // string mapUUID = 2; - void clear_mapuuid() ; - const std::string& mapuuid() const; + // bytes mapUUIDList = 2; + void clear_mapuuidlist() ; + const std::string& mapuuidlist() 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_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_mapuuid() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuid( + const std::string& _internal_mapuuidlist() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_mapuuidlist( const std::string& value); - std::string* _internal_mutable_mapuuid(); + std::string* _internal_mutable_mapuuidlist(); public: // int32 grpcServerCompressionFormat = 1; @@ -4162,17 +4300,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.getAllMapsRequest) private: class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< 1, 2, 0, - 49, 2> + 0, 2> _table_; static constexpr const void* _raw_default_instance_ = - &_deleteMapRequest_default_instance_; + &_getAllMapsRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4187,8 +4325,8 @@ 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); - ::google::protobuf::internal::ArenaStringPtr mapuuid_; + const getAllMapsRequest& from_msg); + ::google::protobuf::internal::ArenaStringPtr mapuuidlist_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -4198,23 +4336,23 @@ class deleteMapRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class decreaseMapClientsResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.decreaseMapClientsResponse) */ { +class deleteMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.deleteMapResponse) */ { public: - inline decreaseMapClientsResponse() : decreaseMapClientsResponse(nullptr) {} - ~decreaseMapClientsResponse() override; + inline deleteMapResponse() : deleteMapResponse(nullptr) {} + ~deleteMapResponse() override; template - explicit PROTOBUF_CONSTEXPR decreaseMapClientsResponse( + explicit PROTOBUF_CONSTEXPR deleteMapResponse( ::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 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 decreaseMapClientsResponse& operator=(decreaseMapClientsResponse&& from) noexcept { + inline deleteMapResponse& operator=(deleteMapResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4246,16 +4384,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 deleteMapResponse& default_instance() { return *internal_default_instance(); } - static inline const decreaseMapClientsResponse* internal_default_instance() { - return reinterpret_cast( - &_decreaseMapClientsResponse_default_instance_); + static inline const deleteMapResponse* internal_default_instance() { + return reinterpret_cast( + &_deleteMapResponse_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 = 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()) { @@ -4267,7 +4405,7 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(decreaseMapClientsResponse* other) { + void UnsafeArenaSwap(deleteMapResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4275,13 +4413,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); + deleteMapResponse* 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 deleteMapResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const decreaseMapClientsResponse& from) { decreaseMapClientsResponse::MergeImpl(*this, from); } + void MergeFrom(const deleteMapResponse& from) { deleteMapResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4302,16 +4440,16 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(decreaseMapClientsResponse* other); + void InternalSwap(deleteMapResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.decreaseMapClientsResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.deleteMapResponse"; } 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 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; @@ -4334,7 +4472,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.deleteMapResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -4344,7 +4482,7 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_decreaseMapClientsResponse_default_instance_; + &_deleteMapResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4359,7 +4497,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 deleteMapResponse& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -4369,23 +4507,23 @@ class decreaseMapClientsResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class decreaseMapClientsRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.decreaseMapClientsRequest) */ { +class deleteMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.deleteMapRequest) */ { public: - inline decreaseMapClientsRequest() : decreaseMapClientsRequest(nullptr) {} - ~decreaseMapClientsRequest() override; + inline deleteMapRequest() : deleteMapRequest(nullptr) {} + ~deleteMapRequest() override; template - explicit PROTOBUF_CONSTEXPR decreaseMapClientsRequest( + explicit PROTOBUF_CONSTEXPR deleteMapRequest( ::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 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 decreaseMapClientsRequest& operator=(decreaseMapClientsRequest&& from) noexcept { + inline deleteMapRequest& operator=(deleteMapRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4417,16 +4555,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 deleteMapRequest& default_instance() { return *internal_default_instance(); } - static inline const decreaseMapClientsRequest* internal_default_instance() { - return reinterpret_cast( - &_decreaseMapClientsRequest_default_instance_); + static inline const deleteMapRequest* internal_default_instance() { + return reinterpret_cast( + &_deleteMapRequest_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 = 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()) { @@ -4438,7 +4576,7 @@ class decreaseMapClientsRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(decreaseMapClientsRequest* other) { + void UnsafeArenaSwap(deleteMapRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4446,13 +4584,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); + deleteMapRequest* 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 deleteMapRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const decreaseMapClientsRequest& from) { decreaseMapClientsRequest::MergeImpl(*this, from); } + void MergeFrom(const deleteMapRequest& from) { deleteMapRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4473,16 +4611,16 @@ class decreaseMapClientsRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(decreaseMapClientsRequest* other); + void InternalSwap(deleteMapRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.decreaseMapClientsRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.deleteMapRequest"; } 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 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; @@ -4522,17 +4660,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.deleteMapRequest) 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_; + &_deleteMapRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4547,7 +4685,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 deleteMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -4558,23 +4696,23 @@ class decreaseMapClientsRequest final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class createMapResponse final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.createMapResponse) */ { +class decreaseMapClientsResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.decreaseMapClientsResponse) */ { public: - inline createMapResponse() : createMapResponse(nullptr) {} - ~createMapResponse() override; + inline decreaseMapClientsResponse() : decreaseMapClientsResponse(nullptr) {} + ~decreaseMapClientsResponse() override; template - explicit PROTOBUF_CONSTEXPR createMapResponse( + explicit PROTOBUF_CONSTEXPR decreaseMapClientsResponse( ::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 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 createMapResponse& operator=(createMapResponse&& from) noexcept { + inline decreaseMapClientsResponse& operator=(decreaseMapClientsResponse&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4606,16 +4744,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 decreaseMapClientsResponse& default_instance() { return *internal_default_instance(); } - static inline const createMapResponse* internal_default_instance() { - return reinterpret_cast( - &_createMapResponse_default_instance_); + static inline const decreaseMapClientsResponse* internal_default_instance() { + return reinterpret_cast( + &_decreaseMapClientsResponse_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 = 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()) { @@ -4627,7 +4765,7 @@ class createMapResponse final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(createMapResponse* other) { + void UnsafeArenaSwap(decreaseMapClientsResponse* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4635,13 +4773,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); + decreaseMapClientsResponse* 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 decreaseMapClientsResponse& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const createMapResponse& from) { createMapResponse::MergeImpl(*this, from); } + void MergeFrom(const decreaseMapClientsResponse& from) { decreaseMapClientsResponse::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4662,16 +4800,16 @@ class createMapResponse final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(createMapResponse* other); + void InternalSwap(decreaseMapClientsResponse* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.createMapResponse"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.decreaseMapClientsResponse"; } 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 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; @@ -4694,7 +4832,7 @@ 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.decreaseMapClientsResponse) private: class _Internal; friend class ::google::protobuf::internal::TcParser; @@ -4704,7 +4842,7 @@ class createMapResponse final : public ::google::protobuf::Message _table_; static constexpr const void* _raw_default_instance_ = - &_createMapResponse_default_instance_; + &_decreaseMapClientsResponse_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4719,7 +4857,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 decreaseMapClientsResponse& from_msg); ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -4729,23 +4867,23 @@ class createMapResponse final : public ::google::protobuf::Message }; // ------------------------------------------------------------------- -class createMapRequest final : public ::google::protobuf::Message -/* @@protoc_insertion_point(class_definition:grpcIMapsManager.createMapRequest) */ { +class decreaseMapClientsRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.decreaseMapClientsRequest) */ { public: - inline createMapRequest() : createMapRequest(nullptr) {} - ~createMapRequest() override; + inline decreaseMapClientsRequest() : decreaseMapClientsRequest(nullptr) {} + ~decreaseMapClientsRequest() override; template - explicit PROTOBUF_CONSTEXPR createMapRequest( + explicit PROTOBUF_CONSTEXPR decreaseMapClientsRequest( ::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 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 createMapRequest& operator=(createMapRequest&& from) noexcept { + inline decreaseMapClientsRequest& operator=(decreaseMapClientsRequest&& from) noexcept { if (this == &from) return *this; if (GetArena() == from.GetArena() #ifdef PROTOBUF_FORCE_COPY_IN_MOVE @@ -4777,16 +4915,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 decreaseMapClientsRequest& default_instance() { return *internal_default_instance(); } - static inline const createMapRequest* internal_default_instance() { - return reinterpret_cast( - &_createMapRequest_default_instance_); + static inline const decreaseMapClientsRequest* internal_default_instance() { + return reinterpret_cast( + &_decreaseMapClientsRequest_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 = 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()) { @@ -4798,7 +4936,7 @@ class createMapRequest final : public ::google::protobuf::Message ::google::protobuf::internal::GenericSwap(this, other); } } - void UnsafeArenaSwap(createMapRequest* other) { + void UnsafeArenaSwap(decreaseMapClientsRequest* other) { if (other == this) return; ABSL_DCHECK(GetArena() == other->GetArena()); InternalSwap(other); @@ -4806,13 +4944,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); + decreaseMapClientsRequest* 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 decreaseMapClientsRequest& from); using ::google::protobuf::Message::MergeFrom; - void MergeFrom(const createMapRequest& from) { createMapRequest::MergeImpl(*this, from); } + void MergeFrom(const decreaseMapClientsRequest& from) { decreaseMapClientsRequest::MergeImpl(*this, from); } private: static void MergeImpl( @@ -4833,16 +4971,16 @@ class createMapRequest final : public ::google::protobuf::Message private: void SharedCtor(::google::protobuf::Arena* arena); void SharedDtor(); - void InternalSwap(createMapRequest* other); + void InternalSwap(decreaseMapClientsRequest* other); private: friend class ::google::protobuf::internal::AnyMetadata; - static ::absl::string_view FullMessageName() { return "grpcIMapsManager.createMapRequest"; } + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.decreaseMapClientsRequest"; } 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 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; @@ -4882,17 +5020,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.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_ = - &_createMapRequest_default_instance_; + &_decreaseMapClientsRequest_default_instance_; friend class ::google::protobuf::MessageLite; friend class ::google::protobuf::Arena; @@ -4907,7 +5045,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 decreaseMapClientsRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; @@ -4916,187 +5054,2295 @@ class createMapRequest final : public ::google::protobuf::Message union { Impl_ _impl_; }; friend struct ::TableStruct_grpcIMapsManagerService_2eproto; }; - -// =================================================================== - - - - -// =================================================================== - - -#ifdef __GNUC__ -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wstrict-aliasing" -#endif // __GNUC__ // ------------------------------------------------------------------- -// createMapRequest +class createMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.createMapResponse) */ { + public: + inline createMapResponse() : createMapResponse(nullptr) {} + ~createMapResponse() override; + template + explicit PROTOBUF_CONSTEXPR createMapResponse( + ::google::protobuf::internal::ConstantInitialized); -// int32 grpcServerCompressionFormat = 1; -inline void createMapRequest::clear_grpcservercompressionformat() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; -} + 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 = 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()) { +#else // PROTOBUF_FORCE_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); } + + 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(createMapResponse* other); + private: + friend class ::google::protobuf::internal::AnyMetadata; + static ::absl::string_view FullMessageName() { return "grpcIMapsManager.createMapResponse"; } + + 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:grpcIMapsManager.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_grpcIMapsManagerService_2eproto; +}; +// ------------------------------------------------------------------- + +class createMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.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 = 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()) { +#else // PROTOBUF_FORCE_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 "grpcIMapsManager.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 { + kMapUUIDFieldNumber = 2, + kGrpcServerCompressionFormatFieldNumber = 1, + }; + // 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: + // 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:grpcIMapsManager.createMapRequest) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 1, 2, 0, + 49, 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 mapuuid_; + ::int32_t grpcservercompressionformat_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIMapsManagerService_2eproto; +}; +// ------------------------------------------------------------------- + +class backupMapResponse final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.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 = 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()) { +#else // PROTOBUF_FORCE_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 "grpcIMapsManager.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 { + kMapInformationFieldNumber = 1, + kCameraParametersFieldNumber = 2, + kCoordinateFieldNumber = 3, + kCovisibilityGraphFieldNumber = 4, + kIdentificationFieldNumber = 5, + kKeyframesFieldNumber = 6, + kPointcloudFieldNumber = 7, + kXpcfGrpcReturnValueFieldNumber = 8, + }; + // bytes map_information = 1; + void clear_map_information() ; + const std::string& map_information() const; + template + void set_map_information(Arg_&& arg, Args_... args); + std::string* mutable_map_information(); + PROTOBUF_NODISCARD std::string* release_map_information(); + void set_allocated_map_information(std::string* value); + + private: + const std::string& _internal_map_information() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( + const std::string& value); + std::string* _internal_mutable_map_information(); + + public: + // bytes cameraParameters = 2; + void clear_cameraparameters() ; + const std::string& cameraparameters() const; + template + void set_cameraparameters(Arg_&& arg, Args_... args); + std::string* mutable_cameraparameters(); + PROTOBUF_NODISCARD std::string* release_cameraparameters(); + void set_allocated_cameraparameters(std::string* value); + + private: + const std::string& _internal_cameraparameters() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( + const std::string& value); + std::string* _internal_mutable_cameraparameters(); + + public: + // bytes coordinate = 3; + void clear_coordinate() ; + const std::string& coordinate() const; + template + void set_coordinate(Arg_&& arg, Args_... args); + std::string* mutable_coordinate(); + PROTOBUF_NODISCARD std::string* release_coordinate(); + void set_allocated_coordinate(std::string* value); + + private: + const std::string& _internal_coordinate() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( + const std::string& value); + std::string* _internal_mutable_coordinate(); + + public: + // bytes covisibility_graph = 4; + void clear_covisibility_graph() ; + const std::string& covisibility_graph() const; + template + void set_covisibility_graph(Arg_&& arg, Args_... args); + std::string* mutable_covisibility_graph(); + PROTOBUF_NODISCARD std::string* release_covisibility_graph(); + void set_allocated_covisibility_graph(std::string* value); + + private: + const std::string& _internal_covisibility_graph() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( + const std::string& value); + std::string* _internal_mutable_covisibility_graph(); + + public: + // bytes identification = 5; + void clear_identification() ; + const std::string& identification() const; + template + void set_identification(Arg_&& arg, Args_... args); + std::string* mutable_identification(); + PROTOBUF_NODISCARD std::string* release_identification(); + void set_allocated_identification(std::string* value); + + private: + const std::string& _internal_identification() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( + const std::string& value); + std::string* _internal_mutable_identification(); + + public: + // bytes keyframes = 6; + void clear_keyframes() ; + const std::string& keyframes() const; + template + void set_keyframes(Arg_&& arg, Args_... args); + std::string* mutable_keyframes(); + PROTOBUF_NODISCARD std::string* release_keyframes(); + void set_allocated_keyframes(std::string* value); + + private: + const std::string& _internal_keyframes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( + const std::string& value); + std::string* _internal_mutable_keyframes(); + + public: + // bytes pointcloud = 7; + 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); + + private: + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& value); + std::string* _internal_mutable_pointcloud(); + + public: + // sint32 xpcfGrpcReturnValue = 8; + 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.backupMapResponse) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 3, 8, 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 map_information_; + ::google::protobuf::internal::ArenaStringPtr cameraparameters_; + ::google::protobuf::internal::ArenaStringPtr coordinate_; + ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; + ::google::protobuf::internal::ArenaStringPtr identification_; + ::google::protobuf::internal::ArenaStringPtr keyframes_; + ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::int32_t xpcfgrpcreturnvalue_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIMapsManagerService_2eproto; +}; +// ------------------------------------------------------------------- + +class backupMapRequest final : public ::google::protobuf::Message +/* @@protoc_insertion_point(class_definition:grpcIMapsManager.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 = 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()) { +#else // PROTOBUF_FORCE_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 "grpcIMapsManager.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 { + kMapUUIDFieldNumber = 2, + kMapInformationFieldNumber = 3, + kCameraParametersFieldNumber = 4, + kCoordinateFieldNumber = 5, + kCovisibilityGraphFieldNumber = 6, + kIdentificationFieldNumber = 7, + kKeyframesFieldNumber = 8, + kPointcloudFieldNumber = 9, + kGrpcServerCompressionFormatFieldNumber = 1, + }; + // 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: + // bytes map_information = 3; + void clear_map_information() ; + const std::string& map_information() const; + template + void set_map_information(Arg_&& arg, Args_... args); + std::string* mutable_map_information(); + PROTOBUF_NODISCARD std::string* release_map_information(); + void set_allocated_map_information(std::string* value); + + private: + const std::string& _internal_map_information() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( + const std::string& value); + std::string* _internal_mutable_map_information(); + + public: + // bytes cameraParameters = 4; + void clear_cameraparameters() ; + const std::string& cameraparameters() const; + template + void set_cameraparameters(Arg_&& arg, Args_... args); + std::string* mutable_cameraparameters(); + PROTOBUF_NODISCARD std::string* release_cameraparameters(); + void set_allocated_cameraparameters(std::string* value); + + private: + const std::string& _internal_cameraparameters() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( + const std::string& value); + std::string* _internal_mutable_cameraparameters(); + + public: + // bytes coordinate = 5; + void clear_coordinate() ; + const std::string& coordinate() const; + template + void set_coordinate(Arg_&& arg, Args_... args); + std::string* mutable_coordinate(); + PROTOBUF_NODISCARD std::string* release_coordinate(); + void set_allocated_coordinate(std::string* value); + + private: + const std::string& _internal_coordinate() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( + const std::string& value); + std::string* _internal_mutable_coordinate(); + + public: + // bytes covisibility_graph = 6; + void clear_covisibility_graph() ; + const std::string& covisibility_graph() const; + template + void set_covisibility_graph(Arg_&& arg, Args_... args); + std::string* mutable_covisibility_graph(); + PROTOBUF_NODISCARD std::string* release_covisibility_graph(); + void set_allocated_covisibility_graph(std::string* value); + + private: + const std::string& _internal_covisibility_graph() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( + const std::string& value); + std::string* _internal_mutable_covisibility_graph(); + + public: + // bytes identification = 7; + void clear_identification() ; + const std::string& identification() const; + template + void set_identification(Arg_&& arg, Args_... args); + std::string* mutable_identification(); + PROTOBUF_NODISCARD std::string* release_identification(); + void set_allocated_identification(std::string* value); + + private: + const std::string& _internal_identification() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( + const std::string& value); + std::string* _internal_mutable_identification(); + + public: + // bytes keyframes = 8; + void clear_keyframes() ; + const std::string& keyframes() const; + template + void set_keyframes(Arg_&& arg, Args_... args); + std::string* mutable_keyframes(); + PROTOBUF_NODISCARD std::string* release_keyframes(); + void set_allocated_keyframes(std::string* value); + + private: + const std::string& _internal_keyframes() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( + const std::string& value); + std::string* _internal_mutable_keyframes(); + + public: + // bytes pointcloud = 9; + 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); + + private: + const std::string& _internal_pointcloud() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& value); + std::string* _internal_mutable_pointcloud(); + + 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:grpcIMapsManager.backupMapRequest) + private: + class _Internal; + friend class ::google::protobuf::internal::TcParser; + static const ::google::protobuf::internal::TcParseTable< + 4, 9, 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 mapuuid_; + ::google::protobuf::internal::ArenaStringPtr map_information_; + ::google::protobuf::internal::ArenaStringPtr cameraparameters_; + ::google::protobuf::internal::ArenaStringPtr coordinate_; + ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; + ::google::protobuf::internal::ArenaStringPtr identification_; + ::google::protobuf::internal::ArenaStringPtr keyframes_; + ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::int32_t grpcservercompressionformat_; + mutable ::google::protobuf::internal::CachedSize _cached_size_; + PROTOBUF_TSAN_DECLARE_MEMBER + }; + union { Impl_ _impl_; }; + friend struct ::TableStruct_grpcIMapsManagerService_2eproto; +}; + +// =================================================================== + + + + +// =================================================================== + + +#ifdef __GNUC__ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wstrict-aliasing" +#endif // __GNUC__ +// ------------------------------------------------------------------- + +// createMapRequest + +// int32 grpcServerCompressionFormat = 1; +inline void createMapRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} inline ::int32_t createMapRequest::grpcservercompressionformat() const { // @@protoc_insertion_point(field_get:grpcIMapsManager.createMapRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void createMapRequest::set_grpcservercompressionformat(::int32_t value) { +inline void createMapRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.createMapRequest.grpcServerCompressionFormat) +} +inline ::int32_t createMapRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void createMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string mapUUID = 2; +inline void createMapRequest::clear_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.ClearToEmpty(); +} +inline const std::string& createMapRequest::mapuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.createMapRequest.mapUUID) + return _internal_mapuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void createMapRequest::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.createMapRequest.mapUUID) +} +inline std::string* createMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.createMapRequest.mapUUID) + return _s; +} +inline const std::string& createMapRequest::_internal_mapuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuid_.Get(); +} +inline void createMapRequest::_internal_set_mapuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(value, GetArena()); +} +inline std::string* createMapRequest::_internal_mutable_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuid_.Mutable( GetArena()); +} +inline std::string* createMapRequest::release_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.createMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); +} +inline void createMapRequest::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.createMapRequest.mapUUID) +} + +// ------------------------------------------------------------------- + +// createMapResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void createMapResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t createMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.createMapResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void createMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.createMapResponse.xpcfGrpcReturnValue) +} +inline ::int32_t createMapResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void createMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// deleteMapRequest + +// int32 grpcServerCompressionFormat = 1; +inline void deleteMapRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t deleteMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.deleteMapRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void deleteMapRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.deleteMapRequest.grpcServerCompressionFormat) +} +inline ::int32_t deleteMapRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void deleteMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string mapUUID = 2; +inline void deleteMapRequest::clear_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.ClearToEmpty(); +} +inline const std::string& deleteMapRequest::mapuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.deleteMapRequest.mapUUID) + return _internal_mapuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void deleteMapRequest::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.deleteMapRequest.mapUUID) +} +inline std::string* deleteMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.deleteMapRequest.mapUUID) + return _s; +} +inline const std::string& deleteMapRequest::_internal_mapuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuid_.Get(); +} +inline void deleteMapRequest::_internal_set_mapuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(value, GetArena()); +} +inline std::string* deleteMapRequest::_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:grpcIMapsManager.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:grpcIMapsManager.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:grpcIMapsManager.deleteMapResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void deleteMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.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; +} + +// ------------------------------------------------------------------- + +// getAllMapsRequest + +// int32 grpcServerCompressionFormat = 1; +inline void getAllMapsRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t getAllMapsRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getAllMapsRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void getAllMapsRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getAllMapsRequest.grpcServerCompressionFormat) +} +inline ::int32_t getAllMapsRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void getAllMapsRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// bytes mapUUIDList = 2; +inline void getAllMapsRequest::clear_mapuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.ClearToEmpty(); +} +inline const std::string& getAllMapsRequest::mapuuidlist() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getAllMapsRequest.mapUUIDList) + return _internal_mapuuidlist(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getAllMapsRequest::set_mapuuidlist(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getAllMapsRequest.mapUUIDList) +} +inline std::string* getAllMapsRequest::mutable_mapuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuidlist(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getAllMapsRequest.mapUUIDList) + return _s; +} +inline const std::string& getAllMapsRequest::_internal_mapuuidlist() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuidlist_.Get(); +} +inline void getAllMapsRequest::_internal_set_mapuuidlist(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.Set(value, GetArena()); +} +inline std::string* getAllMapsRequest::_internal_mutable_mapuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuidlist_.Mutable( GetArena()); +} +inline std::string* getAllMapsRequest::release_mapuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.getAllMapsRequest.mapUUIDList) + return _impl_.mapuuidlist_.Release(); +} +inline void getAllMapsRequest::set_allocated_mapuuidlist(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.mapuuidlist_.IsDefault()) { + _impl_.mapuuidlist_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getAllMapsRequest.mapUUIDList) +} + +// ------------------------------------------------------------------- + +// getAllMapsResponse + +// bytes mapUUIDList = 1; +inline void getAllMapsResponse::clear_mapuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.ClearToEmpty(); +} +inline const std::string& getAllMapsResponse::mapuuidlist() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getAllMapsResponse.mapUUIDList) + return _internal_mapuuidlist(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getAllMapsResponse::set_mapuuidlist(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getAllMapsResponse.mapUUIDList) +} +inline std::string* getAllMapsResponse::mutable_mapuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuidlist(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getAllMapsResponse.mapUUIDList) + return _s; +} +inline const std::string& getAllMapsResponse::_internal_mapuuidlist() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuidlist_.Get(); +} +inline void getAllMapsResponse::_internal_set_mapuuidlist(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.Set(value, GetArena()); +} +inline std::string* getAllMapsResponse::_internal_mutable_mapuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuidlist_.Mutable( GetArena()); +} +inline std::string* getAllMapsResponse::release_mapuuidlist() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.getAllMapsResponse.mapUUIDList) + return _impl_.mapuuidlist_.Release(); +} +inline void getAllMapsResponse::set_allocated_mapuuidlist(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuidlist_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.mapuuidlist_.IsDefault()) { + _impl_.mapuuidlist_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getAllMapsResponse.mapUUIDList) +} + +// sint32 xpcfGrpcReturnValue = 2; +inline void getAllMapsResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t getAllMapsResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getAllMapsResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void getAllMapsResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getAllMapsResponse.xpcfGrpcReturnValue) +} +inline ::int32_t getAllMapsResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void getAllMapsResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// increaseMapClientsRequest + +// int32 grpcServerCompressionFormat = 1; +inline void increaseMapClientsRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t increaseMapClientsRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.increaseMapClientsRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void increaseMapClientsRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.increaseMapClientsRequest.grpcServerCompressionFormat) +} +inline ::int32_t increaseMapClientsRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void increaseMapClientsRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string mapUUID = 2; +inline void increaseMapClientsRequest::clear_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.ClearToEmpty(); +} +inline const std::string& increaseMapClientsRequest::mapuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.increaseMapClientsRequest.mapUUID) + return _internal_mapuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void increaseMapClientsRequest::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.increaseMapClientsRequest.mapUUID) +} +inline std::string* increaseMapClientsRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.increaseMapClientsRequest.mapUUID) + return _s; +} +inline const std::string& increaseMapClientsRequest::_internal_mapuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuid_.Get(); +} +inline void increaseMapClientsRequest::_internal_set_mapuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(value, GetArena()); +} +inline std::string* increaseMapClientsRequest::_internal_mutable_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuid_.Mutable( GetArena()); +} +inline std::string* increaseMapClientsRequest::release_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.increaseMapClientsRequest.mapUUID) + return _impl_.mapuuid_.Release(); +} +inline void increaseMapClientsRequest::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.increaseMapClientsRequest.mapUUID) +} + +// string serviceURL = 3; +inline void increaseMapClientsRequest::clear_serviceurl() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.serviceurl_.ClearToEmpty(); +} +inline const std::string& increaseMapClientsRequest::serviceurl() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.increaseMapClientsRequest.serviceURL) + return _internal_serviceurl(); +} +template +inline PROTOBUF_ALWAYS_INLINE void increaseMapClientsRequest::set_serviceurl(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.serviceurl_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.increaseMapClientsRequest.serviceURL) +} +inline std::string* increaseMapClientsRequest::mutable_serviceurl() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_serviceurl(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.increaseMapClientsRequest.serviceURL) + return _s; +} +inline const std::string& increaseMapClientsRequest::_internal_serviceurl() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.serviceurl_.Get(); +} +inline void increaseMapClientsRequest::_internal_set_serviceurl(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.serviceurl_.Set(value, GetArena()); +} +inline std::string* increaseMapClientsRequest::_internal_mutable_serviceurl() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.serviceurl_.Mutable( GetArena()); +} +inline std::string* increaseMapClientsRequest::release_serviceurl() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.increaseMapClientsRequest.serviceURL) + return _impl_.serviceurl_.Release(); +} +inline void increaseMapClientsRequest::set_allocated_serviceurl(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.serviceurl_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.serviceurl_.IsDefault()) { + _impl_.serviceurl_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.increaseMapClientsRequest.serviceURL) +} + +// ------------------------------------------------------------------- + +// increaseMapClientsResponse + +// string serviceURL = 1; +inline void increaseMapClientsResponse::clear_serviceurl() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.serviceurl_.ClearToEmpty(); +} +inline const std::string& increaseMapClientsResponse::serviceurl() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.increaseMapClientsResponse.serviceURL) + return _internal_serviceurl(); +} +template +inline PROTOBUF_ALWAYS_INLINE void increaseMapClientsResponse::set_serviceurl(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.serviceurl_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.increaseMapClientsResponse.serviceURL) +} +inline std::string* increaseMapClientsResponse::mutable_serviceurl() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_serviceurl(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.increaseMapClientsResponse.serviceURL) + return _s; +} +inline const std::string& increaseMapClientsResponse::_internal_serviceurl() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.serviceurl_.Get(); +} +inline void increaseMapClientsResponse::_internal_set_serviceurl(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.serviceurl_.Set(value, GetArena()); +} +inline std::string* increaseMapClientsResponse::_internal_mutable_serviceurl() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.serviceurl_.Mutable( GetArena()); +} +inline std::string* increaseMapClientsResponse::release_serviceurl() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.increaseMapClientsResponse.serviceURL) + return _impl_.serviceurl_.Release(); +} +inline void increaseMapClientsResponse::set_allocated_serviceurl(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.serviceurl_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.serviceurl_.IsDefault()) { + _impl_.serviceurl_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.increaseMapClientsResponse.serviceURL) +} + +// sint32 xpcfGrpcReturnValue = 2; +inline void increaseMapClientsResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t increaseMapClientsResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.increaseMapClientsResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void increaseMapClientsResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.increaseMapClientsResponse.xpcfGrpcReturnValue) +} +inline ::int32_t increaseMapClientsResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void increaseMapClientsResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// decreaseMapClientsRequest + +// int32 grpcServerCompressionFormat = 1; +inline void decreaseMapClientsRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t decreaseMapClientsRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.decreaseMapClientsRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void decreaseMapClientsRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.decreaseMapClientsRequest.grpcServerCompressionFormat) +} +inline ::int32_t decreaseMapClientsRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void decreaseMapClientsRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string mapUUID = 2; +inline void decreaseMapClientsRequest::clear_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.ClearToEmpty(); +} +inline const std::string& decreaseMapClientsRequest::mapuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.decreaseMapClientsRequest.mapUUID) + return _internal_mapuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void decreaseMapClientsRequest::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.decreaseMapClientsRequest.mapUUID) +} +inline std::string* decreaseMapClientsRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.decreaseMapClientsRequest.mapUUID) + return _s; +} +inline const std::string& decreaseMapClientsRequest::_internal_mapuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuid_.Get(); +} +inline void decreaseMapClientsRequest::_internal_set_mapuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(value, GetArena()); +} +inline std::string* decreaseMapClientsRequest::_internal_mutable_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuid_.Mutable( GetArena()); +} +inline std::string* decreaseMapClientsRequest::release_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.decreaseMapClientsRequest.mapUUID) + return _impl_.mapuuid_.Release(); +} +inline void decreaseMapClientsRequest::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.decreaseMapClientsRequest.mapUUID) +} + +// ------------------------------------------------------------------- + +// decreaseMapClientsResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void decreaseMapClientsResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t decreaseMapClientsResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.decreaseMapClientsResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void decreaseMapClientsResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.decreaseMapClientsResponse.xpcfGrpcReturnValue) +} +inline ::int32_t decreaseMapClientsResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void decreaseMapClientsResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// getMapRequestRequest + +// int32 grpcServerCompressionFormat = 1; +inline void getMapRequestRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t getMapRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void getMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapRequestRequest.grpcServerCompressionFormat) +} +inline ::int32_t getMapRequestRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void getMapRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string mapUUID = 2; +inline void getMapRequestRequest::clear_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.ClearToEmpty(); +} +inline const std::string& getMapRequestRequest::mapuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestRequest.mapUUID) + return _internal_mapuuid(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::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.getMapRequestRequest.mapUUID) +} +inline std::string* getMapRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapRequestRequest.mapUUID) + return _s; +} +inline const std::string& getMapRequestRequest::_internal_mapuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuid_.Get(); +} +inline void getMapRequestRequest::_internal_set_mapuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(value, GetArena()); +} +inline std::string* getMapRequestRequest::_internal_mutable_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuid_.Mutable( GetArena()); +} +inline std::string* getMapRequestRequest::release_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapRequestRequest.mapUUID) + return _impl_.mapuuid_.Release(); +} +inline void getMapRequestRequest::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.getMapRequestRequest.mapUUID) +} + +// sint32 keyframeImagesOption = 3; +inline void getMapRequestRequest::clear_keyframeimagesoption() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.keyframeimagesoption_ = 0; +} +inline ::int32_t getMapRequestRequest::keyframeimagesoption() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestRequest.keyframeImagesOption) + return _internal_keyframeimagesoption(); +} +inline void getMapRequestRequest::set_keyframeimagesoption(::int32_t value) { + _internal_set_keyframeimagesoption(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.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 map = 4; +inline void getMapRequestRequest::clear_map() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_.ClearToEmpty(); +} +inline const std::string& getMapRequestRequest::map() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestRequest.map) + return _internal_map(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_map(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapRequestRequest.map) +} +inline std::string* getMapRequestRequest::mutable_map() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_map(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapRequestRequest.map) + return _s; +} +inline const std::string& getMapRequestRequest::_internal_map() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.map_.Get(); +} +inline void getMapRequestRequest::_internal_set_map(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_.Set(value, GetArena()); +} +inline std::string* getMapRequestRequest::_internal_mutable_map() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.map_.Mutable( GetArena()); +} +inline std::string* getMapRequestRequest::release_map() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapRequestRequest.map) + return _impl_.map_.Release(); +} +inline void getMapRequestRequest::set_allocated_map(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.map_.IsDefault()) { + _impl_.map_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapRequestRequest.map) +} + +// ------------------------------------------------------------------- + +// getMapRequestResponse + +// bytes map = 1; +inline void getMapRequestResponse::clear_map() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_.ClearToEmpty(); +} +inline const std::string& getMapRequestResponse::map() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestResponse.map) + return _internal_map(); +} +template +inline PROTOBUF_ALWAYS_INLINE void getMapRequestResponse::set_map(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapRequestResponse.map) +} +inline std::string* getMapRequestResponse::mutable_map() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_map(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapRequestResponse.map) + return _s; +} +inline const std::string& getMapRequestResponse::_internal_map() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.map_.Get(); +} +inline void getMapRequestResponse::_internal_set_map(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_.Set(value, GetArena()); +} +inline std::string* getMapRequestResponse::_internal_mutable_map() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.map_.Mutable( GetArena()); +} +inline std::string* getMapRequestResponse::release_map() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapRequestResponse.map) + return _impl_.map_.Release(); +} +inline void getMapRequestResponse::set_allocated_map(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.map_.IsDefault()) { + _impl_.map_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapRequestResponse.map) +} + +// sint32 xpcfGrpcReturnValue = 2; +inline void getMapRequestResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t getMapRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void getMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapRequestResponse.xpcfGrpcReturnValue) +} +inline ::int32_t getMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void getMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// setMapRequestRequest + +// int32 grpcServerCompressionFormat = 1; +inline void setMapRequestRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t setMapRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.setMapRequestRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void setMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.setMapRequestRequest.grpcServerCompressionFormat) +} +inline ::int32_t setMapRequestRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; +} +inline void setMapRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = value; +} + +// string mapUUID = 2; +inline void setMapRequestRequest::clear_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.ClearToEmpty(); +} +inline const std::string& setMapRequestRequest::mapuuid() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.setMapRequestRequest.mapUUID) + return _internal_mapuuid(); +} +template +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:grpcIMapsManager.setMapRequestRequest.mapUUID) +} +inline std::string* setMapRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.setMapRequestRequest.mapUUID) + return _s; +} +inline const std::string& setMapRequestRequest::_internal_mapuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuid_.Get(); +} +inline void setMapRequestRequest::_internal_set_mapuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(value, GetArena()); +} +inline std::string* setMapRequestRequest::_internal_mutable_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuid_.Mutable( GetArena()); +} +inline std::string* setMapRequestRequest::release_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.setMapRequestRequest.mapUUID) + return _impl_.mapuuid_.Release(); +} +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 + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.setMapRequestRequest.mapUUID) +} + +// bytes mapDatastructure = 3; +inline void setMapRequestRequest::clear_mapdatastructure() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapdatastructure_.ClearToEmpty(); +} +inline const std::string& setMapRequestRequest::mapdatastructure() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.setMapRequestRequest.mapDatastructure) + return _internal_mapdatastructure(); +} +template +inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_mapdatastructure(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapdatastructure_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.setMapRequestRequest.mapDatastructure) +} +inline std::string* setMapRequestRequest::mutable_mapdatastructure() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapdatastructure(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.setMapRequestRequest.mapDatastructure) + return _s; +} +inline const std::string& setMapRequestRequest::_internal_mapdatastructure() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapdatastructure_.Get(); +} +inline void setMapRequestRequest::_internal_set_mapdatastructure(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapdatastructure_.Set(value, GetArena()); +} +inline std::string* setMapRequestRequest::_internal_mutable_mapdatastructure() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapdatastructure_.Mutable( GetArena()); +} +inline std::string* setMapRequestRequest::release_mapdatastructure() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.setMapRequestRequest.mapDatastructure) + return _impl_.mapdatastructure_.Release(); +} +inline void setMapRequestRequest::set_allocated_mapdatastructure(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapdatastructure_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.mapdatastructure_.IsDefault()) { + _impl_.mapdatastructure_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.setMapRequestRequest.mapDatastructure) +} + +// ------------------------------------------------------------------- + +// setMapRequestResponse + +// sint32 xpcfGrpcReturnValue = 1; +inline void setMapRequestResponse::clear_xpcfgrpcreturnvalue() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = 0; +} +inline ::int32_t setMapRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.setMapRequestResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); +} +inline void setMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.setMapRequestResponse.xpcfGrpcReturnValue) +} +inline ::int32_t setMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.xpcfgrpcreturnvalue_; +} +inline void setMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.xpcfgrpcreturnvalue_ = value; +} + +// ------------------------------------------------------------------- + +// getPointCloudRequestRequest + +// int32 grpcServerCompressionFormat = 1; +inline void getPointCloudRequestRequest::clear_grpcservercompressionformat() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.grpcservercompressionformat_ = 0; +} +inline ::int32_t getPointCloudRequestRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getPointCloudRequestRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void getPointCloudRequestRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.createMapRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIMapsManager.getPointCloudRequestRequest.grpcServerCompressionFormat) } -inline ::int32_t createMapRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getPointCloudRequestRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void createMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getPointCloudRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string mapUUID = 2; -inline void createMapRequest::clear_mapuuid() { +inline void getPointCloudRequestRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& createMapRequest::mapuuid() const +inline const std::string& getPointCloudRequestRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.createMapRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIMapsManager.getPointCloudRequestRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void createMapRequest::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:grpcIMapsManager.createMapRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIMapsManager.getPointCloudRequestRequest.mapUUID) +} +inline std::string* getPointCloudRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_mapuuid(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getPointCloudRequestRequest.mapUUID) + return _s; +} +inline const std::string& getPointCloudRequestRequest::_internal_mapuuid() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.mapuuid_.Get(); +} +inline void getPointCloudRequestRequest::_internal_set_mapuuid(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.mapuuid_.Set(value, GetArena()); +} +inline std::string* getPointCloudRequestRequest::_internal_mutable_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.mapuuid_.Mutable( GetArena()); +} +inline std::string* getPointCloudRequestRequest::release_mapuuid() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.getPointCloudRequestRequest.mapUUID) + return _impl_.mapuuid_.Release(); +} +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 + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getPointCloudRequestRequest.mapUUID) +} + +// bytes pointCloud = 3; +inline void getPointCloudRequestRequest::clear_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pointcloud_.ClearToEmpty(); +} +inline const std::string& getPointCloudRequestRequest::pointcloud() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getPointCloudRequestRequest.pointCloud) + return _internal_pointcloud(); +} +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:grpcIMapsManager.getPointCloudRequestRequest.pointCloud) +} +inline std::string* getPointCloudRequestRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_pointcloud(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getPointCloudRequestRequest.pointCloud) + return _s; +} +inline const std::string& getPointCloudRequestRequest::_internal_pointcloud() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.pointcloud_.Get(); +} +inline void getPointCloudRequestRequest::_internal_set_pointcloud(const std::string& value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pointcloud_.Set(value, GetArena()); +} +inline std::string* getPointCloudRequestRequest::_internal_mutable_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.pointcloud_.Mutable( GetArena()); +} +inline std::string* getPointCloudRequestRequest::release_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.getPointCloudRequestRequest.pointCloud) + return _impl_.pointcloud_.Release(); +} +inline void getPointCloudRequestRequest::set_allocated_pointcloud(std::string* 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:grpcIMapsManager.getPointCloudRequestRequest.pointCloud) +} + +// ------------------------------------------------------------------- + +// getPointCloudRequestResponse + +// bytes pointCloud = 1; +inline void getPointCloudRequestResponse::clear_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pointcloud_.ClearToEmpty(); +} +inline const std::string& getPointCloudRequestResponse::pointcloud() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getPointCloudRequestResponse.pointCloud) + return _internal_pointcloud(); +} +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:grpcIMapsManager.getPointCloudRequestResponse.pointCloud) } -inline std::string* createMapRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.createMapRequest.mapUUID) +inline std::string* getPointCloudRequestResponse::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_pointcloud(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getPointCloudRequestResponse.pointCloud) return _s; } -inline const std::string& createMapRequest::_internal_mapuuid() const { +inline const std::string& getPointCloudRequestResponse::_internal_pointcloud() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.pointcloud_.Get(); } -inline void createMapRequest::_internal_set_mapuuid(const std::string& value) { +inline void getPointCloudRequestResponse::_internal_set_pointcloud(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.pointcloud_.Set(value, GetArena()); } -inline std::string* createMapRequest::_internal_mutable_mapuuid() { +inline std::string* getPointCloudRequestResponse::_internal_mutable_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.pointcloud_.Mutable( GetArena()); } -inline std::string* createMapRequest::release_mapuuid() { +inline std::string* getPointCloudRequestResponse::release_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.createMapRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.getPointCloudRequestResponse.pointCloud) + return _impl_.pointcloud_.Release(); } -inline void createMapRequest::set_allocated_mapuuid(std::string* value) { +inline void getPointCloudRequestResponse::set_allocated_pointcloud(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.pointcloud_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.pointcloud_.IsDefault()) { + _impl_.pointcloud_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.createMapRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getPointCloudRequestResponse.pointCloud) } -// ------------------------------------------------------------------- - -// createMapResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void createMapResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 2; +inline void getPointCloudRequestResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t createMapResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.createMapResponse.xpcfGrpcReturnValue) +inline ::int32_t getPointCloudRequestResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getPointCloudRequestResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void createMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getPointCloudRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.createMapResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIMapsManager.getPointCloudRequestResponse.xpcfGrpcReturnValue) } -inline ::int32_t createMapResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getPointCloudRequestResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void createMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getPointCloudRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// deleteMapRequest +// getMapInfoRequest // int32 grpcServerCompressionFormat = 1; -inline void deleteMapRequest::clear_grpcservercompressionformat() { +inline void getMapInfoRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t deleteMapRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.deleteMapRequest.grpcServerCompressionFormat) +inline ::int32_t getMapInfoRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void deleteMapRequest::set_grpcservercompressionformat(::int32_t value) { +inline void getMapInfoRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.deleteMapRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.grpcServerCompressionFormat) } -inline ::int32_t deleteMapRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t getMapInfoRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void deleteMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getMapInfoRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string mapUUID = 2; -inline void deleteMapRequest::clear_mapuuid() { +inline void getMapInfoRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& deleteMapRequest::mapuuid() const +inline const std::string& getMapInfoRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void deleteMapRequest::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:grpcIMapsManager.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.mapUUID) } -inline std::string* deleteMapRequest::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:grpcIMapsManager.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapInfoRequest.mapUUID) return _s; } -inline const std::string& deleteMapRequest::_internal_mapuuid() const { +inline const std::string& getMapInfoRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.mapuuid_.Get(); } -inline void deleteMapRequest::_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* deleteMapRequest::_internal_mutable_mapuuid() { +inline std::string* getMapInfoRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* deleteMapRequest::release_mapuuid() { +inline std::string* getMapInfoRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.deleteMapRequest.mapUUID) + // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapInfoRequest.mapUUID) return _impl_.mapuuid_.Release(); } -inline void deleteMapRequest::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 @@ -5104,455 +7350,377 @@ inline void deleteMapRequest::set_allocated_mapuuid(std::string* value) { _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.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:grpcIMapsManager.deleteMapResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); -} -inline void deleteMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.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; -} - -// ------------------------------------------------------------------- - -// getAllMapsRequest - -// int32 grpcServerCompressionFormat = 1; -inline void getAllMapsRequest::clear_grpcservercompressionformat() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; -} -inline ::int32_t getAllMapsRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getAllMapsRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); -} -inline void getAllMapsRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getAllMapsRequest.grpcServerCompressionFormat) -} -inline ::int32_t getAllMapsRequest::_internal_grpcservercompressionformat() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; -} -inline void getAllMapsRequest::_internal_set_grpcservercompressionformat(::int32_t value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapInfoRequest.mapUUID) } -// bytes mapUUIDList = 2; -inline void getAllMapsRequest::clear_mapuuidlist() { +// string version = 3; +inline void getMapInfoRequest::clear_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.ClearToEmpty(); + _impl_.version_.ClearToEmpty(); } -inline const std::string& getAllMapsRequest::mapuuidlist() const +inline const std::string& getMapInfoRequest::version() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getAllMapsRequest.mapUUIDList) - return _internal_mapuuidlist(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.version) + return _internal_version(); } template -inline PROTOBUF_ALWAYS_INLINE void getAllMapsRequest::set_mapuuidlist(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_version(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getAllMapsRequest.mapUUIDList) + _impl_.version_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.version) } -inline std::string* getAllMapsRequest::mutable_mapuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuidlist(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getAllMapsRequest.mapUUIDList) +inline std::string* getMapInfoRequest::mutable_version() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_version(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapInfoRequest.version) return _s; } -inline const std::string& getAllMapsRequest::_internal_mapuuidlist() const { +inline const std::string& getMapInfoRequest::_internal_version() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuidlist_.Get(); + return _impl_.version_.Get(); } -inline void getAllMapsRequest::_internal_set_mapuuidlist(const std::string& value) { +inline void getMapInfoRequest::_internal_set_version(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.Set(value, GetArena()); + _impl_.version_.Set(value, GetArena()); } -inline std::string* getAllMapsRequest::_internal_mutable_mapuuidlist() { +inline std::string* getMapInfoRequest::_internal_mutable_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuidlist_.Mutable( GetArena()); + return _impl_.version_.Mutable( GetArena()); } -inline std::string* getAllMapsRequest::release_mapuuidlist() { +inline std::string* getMapInfoRequest::release_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getAllMapsRequest.mapUUIDList) - return _impl_.mapuuidlist_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapInfoRequest.version) + return _impl_.version_.Release(); } -inline void getAllMapsRequest::set_allocated_mapuuidlist(std::string* value) { +inline void getMapInfoRequest::set_allocated_version(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.SetAllocated(value, GetArena()); + _impl_.version_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuidlist_.IsDefault()) { - _impl_.mapuuidlist_.Set("", GetArena()); + if (_impl_.version_.IsDefault()) { + _impl_.version_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getAllMapsRequest.mapUUIDList) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapInfoRequest.version) } -// ------------------------------------------------------------------- - -// getAllMapsResponse - -// bytes mapUUIDList = 1; -inline void getAllMapsResponse::clear_mapuuidlist() { +// sint32 globalDescriptorType = 4; +inline void getMapInfoRequest::clear_globaldescriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.ClearToEmpty(); -} -inline const std::string& getAllMapsResponse::mapuuidlist() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getAllMapsResponse.mapUUIDList) - return _internal_mapuuidlist(); + _impl_.globaldescriptortype_ = 0; } -template -inline PROTOBUF_ALWAYS_INLINE void getAllMapsResponse::set_mapuuidlist(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getAllMapsResponse.mapUUIDList) +inline ::int32_t getMapInfoRequest::globaldescriptortype() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.globalDescriptorType) + return _internal_globaldescriptortype(); } -inline std::string* getAllMapsResponse::mutable_mapuuidlist() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuidlist(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getAllMapsResponse.mapUUIDList) - return _s; +inline void getMapInfoRequest::set_globaldescriptortype(::int32_t value) { + _internal_set_globaldescriptortype(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.globalDescriptorType) } -inline const std::string& getAllMapsResponse::_internal_mapuuidlist() const { +inline ::int32_t getMapInfoRequest::_internal_globaldescriptortype() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuidlist_.Get(); + return _impl_.globaldescriptortype_; } -inline void getAllMapsResponse::_internal_set_mapuuidlist(const std::string& value) { +inline void getMapInfoRequest::_internal_set_globaldescriptortype(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.Set(value, GetArena()); + _impl_.globaldescriptortype_ = value; } -inline std::string* getAllMapsResponse::_internal_mutable_mapuuidlist() { + +// sint32 descriptorType = 5; +inline void getMapInfoRequest::clear_descriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuidlist_.Mutable( GetArena()); + _impl_.descriptortype_ = 0; } -inline std::string* getAllMapsResponse::release_mapuuidlist() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getAllMapsResponse.mapUUIDList) - return _impl_.mapuuidlist_.Release(); +inline ::int32_t getMapInfoRequest::descriptortype() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.descriptorType) + return _internal_descriptortype(); +} +inline void getMapInfoRequest::set_descriptortype(::int32_t value) { + _internal_set_descriptortype(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.descriptorType) } -inline void getAllMapsResponse::set_allocated_mapuuidlist(std::string* value) { +inline ::int32_t getMapInfoRequest::_internal_descriptortype() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.descriptortype_; +} +inline void getMapInfoRequest::_internal_set_descriptortype(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuidlist_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuidlist_.IsDefault()) { - _impl_.mapuuidlist_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getAllMapsResponse.mapUUIDList) + _impl_.descriptortype_ = value; } -// sint32 xpcfGrpcReturnValue = 2; -inline void getAllMapsResponse::clear_xpcfgrpcreturnvalue() { +// uint32 dataSize = 6; +inline void getMapInfoRequest::clear_datasize() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.datasize_ = 0u; } -inline ::int32_t getAllMapsResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getAllMapsResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline ::uint32_t getMapInfoRequest::datasize() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.dataSize) + return _internal_datasize(); } -inline void getAllMapsResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getAllMapsResponse.xpcfGrpcReturnValue) +inline void getMapInfoRequest::set_datasize(::uint32_t value) { + _internal_set_datasize(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.dataSize) } -inline ::int32_t getAllMapsResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::uint32_t getMapInfoRequest::_internal_datasize() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; + return _impl_.datasize_; } -inline void getAllMapsResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapInfoRequest::_internal_set_datasize(::uint32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + _impl_.datasize_ = value; } -// ------------------------------------------------------------------- - -// increaseMapClientsRequest - -// int32 grpcServerCompressionFormat = 1; -inline void increaseMapClientsRequest::clear_grpcservercompressionformat() { +// bool areImageSaved = 7; +inline void getMapInfoRequest::clear_areimagesaved() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + _impl_.areimagesaved_ = false; } -inline ::int32_t increaseMapClientsRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.increaseMapClientsRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline bool getMapInfoRequest::areimagesaved() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.areImageSaved) + return _internal_areimagesaved(); } -inline void increaseMapClientsRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.increaseMapClientsRequest.grpcServerCompressionFormat) +inline void getMapInfoRequest::set_areimagesaved(bool value) { + _internal_set_areimagesaved(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.areImageSaved) } -inline ::int32_t increaseMapClientsRequest::_internal_grpcservercompressionformat() const { +inline bool getMapInfoRequest::_internal_areimagesaved() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.areimagesaved_; } -inline void increaseMapClientsRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void getMapInfoRequest::_internal_set_areimagesaved(bool value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.areimagesaved_ = value; } -// string mapUUID = 2; -inline void increaseMapClientsRequest::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& increaseMapClientsRequest::mapuuid() const +inline const std::string& getMapInfoResponse::version() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.increaseMapClientsRequest.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.version) + return _internal_version(); } template -inline PROTOBUF_ALWAYS_INLINE void increaseMapClientsRequest::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:grpcIMapsManager.increaseMapClientsRequest.mapUUID) + _impl_.version_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoResponse.version) } -inline std::string* increaseMapClientsRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.increaseMapClientsRequest.mapUUID) +inline std::string* getMapInfoResponse::mutable_version() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_version(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapInfoResponse.version) return _s; } -inline const std::string& increaseMapClientsRequest::_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 increaseMapClientsRequest::_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* increaseMapClientsRequest::_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* increaseMapClientsRequest::release_mapuuid() { +inline std::string* getMapInfoResponse::release_version() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.increaseMapClientsRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapInfoResponse.version) + return _impl_.version_.Release(); } -inline void increaseMapClientsRequest::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:grpcIMapsManager.increaseMapClientsRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapInfoResponse.version) } -// string serviceURL = 3; -inline void increaseMapClientsRequest::clear_serviceurl() { +// sint32 globalDescriptorType = 2; +inline void getMapInfoResponse::clear_globaldescriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.serviceurl_.ClearToEmpty(); -} -inline const std::string& increaseMapClientsRequest::serviceurl() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.increaseMapClientsRequest.serviceURL) - return _internal_serviceurl(); + _impl_.globaldescriptortype_ = 0; } -template -inline PROTOBUF_ALWAYS_INLINE void increaseMapClientsRequest::set_serviceurl(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.serviceurl_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.increaseMapClientsRequest.serviceURL) +inline ::int32_t getMapInfoResponse::globaldescriptortype() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.globalDescriptorType) + return _internal_globaldescriptortype(); } -inline std::string* increaseMapClientsRequest::mutable_serviceurl() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_serviceurl(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.increaseMapClientsRequest.serviceURL) - return _s; +inline void getMapInfoResponse::set_globaldescriptortype(::int32_t value) { + _internal_set_globaldescriptortype(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoResponse.globalDescriptorType) } -inline const std::string& increaseMapClientsRequest::_internal_serviceurl() const { +inline ::int32_t getMapInfoResponse::_internal_globaldescriptortype() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.serviceurl_.Get(); + return _impl_.globaldescriptortype_; } -inline void increaseMapClientsRequest::_internal_set_serviceurl(const std::string& value) { +inline void getMapInfoResponse::_internal_set_globaldescriptortype(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.serviceurl_.Set(value, GetArena()); + _impl_.globaldescriptortype_ = value; } -inline std::string* increaseMapClientsRequest::_internal_mutable_serviceurl() { + +// sint32 descriptorType = 3; +inline void getMapInfoResponse::clear_descriptortype() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.serviceurl_.Mutable( GetArena()); + _impl_.descriptortype_ = 0; } -inline std::string* increaseMapClientsRequest::release_serviceurl() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.increaseMapClientsRequest.serviceURL) - return _impl_.serviceurl_.Release(); +inline ::int32_t getMapInfoResponse::descriptortype() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.descriptorType) + return _internal_descriptortype(); } -inline void increaseMapClientsRequest::set_allocated_serviceurl(std::string* value) { +inline void getMapInfoResponse::set_descriptortype(::int32_t value) { + _internal_set_descriptortype(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.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_.serviceurl_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.serviceurl_.IsDefault()) { - _impl_.serviceurl_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.increaseMapClientsRequest.serviceURL) + _impl_.descriptortype_ = value; } -// ------------------------------------------------------------------- - -// increaseMapClientsResponse - -// string serviceURL = 1; -inline void increaseMapClientsResponse::clear_serviceurl() { +// uint32 dataSize = 4; +inline void getMapInfoResponse::clear_datasize() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.serviceurl_.ClearToEmpty(); -} -inline const std::string& increaseMapClientsResponse::serviceurl() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.increaseMapClientsResponse.serviceURL) - return _internal_serviceurl(); + _impl_.datasize_ = 0u; } -template -inline PROTOBUF_ALWAYS_INLINE void increaseMapClientsResponse::set_serviceurl(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.serviceurl_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.increaseMapClientsResponse.serviceURL) +inline ::uint32_t getMapInfoResponse::datasize() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.dataSize) + return _internal_datasize(); } -inline std::string* increaseMapClientsResponse::mutable_serviceurl() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_serviceurl(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.increaseMapClientsResponse.serviceURL) - return _s; +inline void getMapInfoResponse::set_datasize(::uint32_t value) { + _internal_set_datasize(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoResponse.dataSize) } -inline const std::string& increaseMapClientsResponse::_internal_serviceurl() const { +inline ::uint32_t getMapInfoResponse::_internal_datasize() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.serviceurl_.Get(); + return _impl_.datasize_; } -inline void increaseMapClientsResponse::_internal_set_serviceurl(const std::string& value) { +inline void getMapInfoResponse::_internal_set_datasize(::uint32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.serviceurl_.Set(value, GetArena()); + _impl_.datasize_ = value; } -inline std::string* increaseMapClientsResponse::_internal_mutable_serviceurl() { + +// bool areImageSaved = 5; +inline void getMapInfoResponse::clear_areimagesaved() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.serviceurl_.Mutable( GetArena()); + _impl_.areimagesaved_ = false; } -inline std::string* increaseMapClientsResponse::release_serviceurl() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.increaseMapClientsResponse.serviceURL) - return _impl_.serviceurl_.Release(); +inline bool getMapInfoResponse::areimagesaved() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.areImageSaved) + return _internal_areimagesaved(); } -inline void increaseMapClientsResponse::set_allocated_serviceurl(std::string* value) { +inline void getMapInfoResponse::set_areimagesaved(bool value) { + _internal_set_areimagesaved(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.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_.serviceurl_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.serviceurl_.IsDefault()) { - _impl_.serviceurl_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.increaseMapClientsResponse.serviceURL) + _impl_.areimagesaved_ = value; } -// sint32 xpcfGrpcReturnValue = 2; -inline void increaseMapClientsResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 6; +inline void getMapInfoResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t increaseMapClientsResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.increaseMapClientsResponse.xpcfGrpcReturnValue) +inline ::int32_t getMapInfoResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void increaseMapClientsResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapInfoResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.increaseMapClientsResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoResponse.xpcfGrpcReturnValue) } -inline ::int32_t increaseMapClientsResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t getMapInfoResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void increaseMapClientsResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void getMapInfoResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// decreaseMapClientsRequest +// backupMapRequest // int32 grpcServerCompressionFormat = 1; -inline void decreaseMapClientsRequest::clear_grpcservercompressionformat() { +inline void backupMapRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t decreaseMapClientsRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.decreaseMapClientsRequest.grpcServerCompressionFormat) +inline ::int32_t backupMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void decreaseMapClientsRequest::set_grpcservercompressionformat(::int32_t value) { +inline void backupMapRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.decreaseMapClientsRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.grpcServerCompressionFormat) } -inline ::int32_t decreaseMapClientsRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t backupMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void decreaseMapClientsRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void backupMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string mapUUID = 2; -inline void decreaseMapClientsRequest::clear_mapuuid() { +inline void backupMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& decreaseMapClientsRequest::mapuuid() const +inline const std::string& backupMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.decreaseMapClientsRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void decreaseMapClientsRequest::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:grpcIMapsManager.decreaseMapClientsRequest.mapUUID) + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.mapUUID) } -inline std::string* decreaseMapClientsRequest::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:grpcIMapsManager.decreaseMapClientsRequest.mapUUID) + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.mapUUID) return _s; } -inline const std::string& decreaseMapClientsRequest::_internal_mapuuid() const { +inline const std::string& backupMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.mapuuid_.Get(); } -inline void decreaseMapClientsRequest::_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* decreaseMapClientsRequest::_internal_mutable_mapuuid() { +inline std::string* backupMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* decreaseMapClientsRequest::release_mapuuid() { +inline std::string* backupMapRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.decreaseMapClientsRequest.mapUUID) + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.mapUUID) return _impl_.mapuuid_.Release(); } -inline void decreaseMapClientsRequest::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 @@ -5560,581 +7728,703 @@ inline void decreaseMapClientsRequest::set_allocated_mapuuid(std::string* value) _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.decreaseMapClientsRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.mapUUID) } -// ------------------------------------------------------------------- - -// decreaseMapClientsResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void decreaseMapClientsResponse::clear_xpcfgrpcreturnvalue() { +// bytes map_information = 3; +inline void backupMapRequest::clear_map_information() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.map_information_.ClearToEmpty(); } -inline ::int32_t decreaseMapClientsResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.decreaseMapClientsResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline const std::string& backupMapRequest::map_information() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.map_information) + return _internal_map_information(); } -inline void decreaseMapClientsResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.decreaseMapClientsResponse.xpcfGrpcReturnValue) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_map_information(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.map_information) } -inline ::int32_t decreaseMapClientsResponse::_internal_xpcfgrpcreturnvalue() const { +inline std::string* backupMapRequest::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_map_information(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.map_information) + return _s; +} +inline const std::string& backupMapRequest::_internal_map_information() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; + return _impl_.map_information_.Get(); } -inline void decreaseMapClientsResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void backupMapRequest::_internal_set_map_information(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + _impl_.map_information_.Set(value, GetArena()); +} +inline std::string* backupMapRequest::_internal_mutable_map_information() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.map_information_.Mutable( GetArena()); +} +inline std::string* backupMapRequest::release_map_information() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.map_information) + return _impl_.map_information_.Release(); +} +inline void backupMapRequest::set_allocated_map_information(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.map_information_.IsDefault()) { + _impl_.map_information_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.map_information) } -// ------------------------------------------------------------------- - -// getMapRequestRequest - -// int32 grpcServerCompressionFormat = 1; -inline void getMapRequestRequest::clear_grpcservercompressionformat() { +// bytes cameraParameters = 4; +inline void backupMapRequest::clear_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + _impl_.cameraparameters_.ClearToEmpty(); } -inline ::int32_t getMapRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline const std::string& backupMapRequest::cameraparameters() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.cameraParameters) + return _internal_cameraparameters(); } -inline void getMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapRequestRequest.grpcServerCompressionFormat) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_cameraparameters(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.cameraParameters) } -inline ::int32_t getMapRequestRequest::_internal_grpcservercompressionformat() const { +inline std::string* backupMapRequest::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparameters(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.cameraParameters) + return _s; +} +inline const std::string& backupMapRequest::_internal_cameraparameters() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.cameraparameters_.Get(); } -inline void getMapRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void backupMapRequest::_internal_set_cameraparameters(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.cameraparameters_.Set(value, GetArena()); +} +inline std::string* backupMapRequest::_internal_mutable_cameraparameters() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.cameraparameters_.Mutable( GetArena()); +} +inline std::string* backupMapRequest::release_cameraparameters() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.cameraParameters) + return _impl_.cameraparameters_.Release(); +} +inline void backupMapRequest::set_allocated_cameraparameters(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.cameraparameters_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.cameraparameters_.IsDefault()) { + _impl_.cameraparameters_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.cameraParameters) } -// string mapUUID = 2; -inline void getMapRequestRequest::clear_mapuuid() { +// bytes coordinate = 5; +inline void backupMapRequest::clear_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.ClearToEmpty(); + _impl_.coordinate_.ClearToEmpty(); } -inline const std::string& getMapRequestRequest::mapuuid() const +inline const std::string& backupMapRequest::coordinate() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestRequest.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.coordinate) + return _internal_coordinate(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_coordinate(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapRequestRequest.mapUUID) + _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.coordinate) } -inline std::string* getMapRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapRequestRequest.mapUUID) +inline std::string* backupMapRequest::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_coordinate(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.coordinate) return _s; } -inline const std::string& getMapRequestRequest::_internal_mapuuid() const { +inline const std::string& backupMapRequest::_internal_coordinate() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.coordinate_.Get(); } -inline void getMapRequestRequest::_internal_set_mapuuid(const std::string& value) { +inline void backupMapRequest::_internal_set_coordinate(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.coordinate_.Set(value, GetArena()); } -inline std::string* getMapRequestRequest::_internal_mutable_mapuuid() { +inline std::string* backupMapRequest::_internal_mutable_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.coordinate_.Mutable( GetArena()); } -inline std::string* getMapRequestRequest::release_mapuuid() { +inline std::string* backupMapRequest::release_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapRequestRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.coordinate) + return _impl_.coordinate_.Release(); } -inline void getMapRequestRequest::set_allocated_mapuuid(std::string* value) { +inline void backupMapRequest::set_allocated_coordinate(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.coordinate_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.coordinate_.IsDefault()) { + _impl_.coordinate_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.coordinate) } -// sint32 keyframeImagesOption = 3; -inline void getMapRequestRequest::clear_keyframeimagesoption() { +// bytes covisibility_graph = 6; +inline void backupMapRequest::clear_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeimagesoption_ = 0; + _impl_.covisibility_graph_.ClearToEmpty(); } -inline ::int32_t getMapRequestRequest::keyframeimagesoption() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestRequest.keyframeImagesOption) - return _internal_keyframeimagesoption(); +inline const std::string& backupMapRequest::covisibility_graph() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.covisibility_graph) + return _internal_covisibility_graph(); } -inline void getMapRequestRequest::set_keyframeimagesoption(::int32_t value) { - _internal_set_keyframeimagesoption(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapRequestRequest.keyframeImagesOption) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_covisibility_graph(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.covisibility_graph) } -inline ::int32_t getMapRequestRequest::_internal_keyframeimagesoption() const { +inline std::string* backupMapRequest::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_covisibility_graph(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.covisibility_graph) + return _s; +} +inline const std::string& backupMapRequest::_internal_covisibility_graph() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframeimagesoption_; + return _impl_.covisibility_graph_.Get(); } -inline void getMapRequestRequest::_internal_set_keyframeimagesoption(::int32_t value) { +inline void backupMapRequest::_internal_set_covisibility_graph(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframeimagesoption_ = value; + _impl_.covisibility_graph_.Set(value, GetArena()); +} +inline std::string* backupMapRequest::_internal_mutable_covisibility_graph() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.covisibility_graph_.Mutable( GetArena()); +} +inline std::string* backupMapRequest::release_covisibility_graph() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.covisibility_graph) + return _impl_.covisibility_graph_.Release(); +} +inline void backupMapRequest::set_allocated_covisibility_graph(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.covisibility_graph_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.covisibility_graph_.IsDefault()) { + _impl_.covisibility_graph_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.covisibility_graph) } -// bytes map = 4; -inline void getMapRequestRequest::clear_map() { +// bytes identification = 7; +inline void backupMapRequest::clear_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); } -inline const std::string& getMapRequestRequest::map() const +inline const std::string& backupMapRequest::identification() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestRequest.map) - return _internal_map(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.identification) + return _internal_identification(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestRequest::set_map(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_identification(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapRequestRequest.map) + _impl_.identification_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.identification) } -inline std::string* getMapRequestRequest::mutable_map() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_map(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapRequestRequest.map) +inline std::string* backupMapRequest::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_identification(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.identification) return _s; } -inline const std::string& getMapRequestRequest::_internal_map() const { +inline const std::string& backupMapRequest::_internal_identification() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.map_.Get(); + return _impl_.identification_.Get(); } -inline void getMapRequestRequest::_internal_set_map(const std::string& value) { +inline void backupMapRequest::_internal_set_identification(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_.Set(value, GetArena()); + _impl_.identification_.Set(value, GetArena()); } -inline std::string* getMapRequestRequest::_internal_mutable_map() { +inline std::string* backupMapRequest::_internal_mutable_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.map_.Mutable( GetArena()); + return _impl_.identification_.Mutable( GetArena()); } -inline std::string* getMapRequestRequest::release_map() { +inline std::string* backupMapRequest::release_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapRequestRequest.map) - return _impl_.map_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.identification) + return _impl_.identification_.Release(); } -inline void getMapRequestRequest::set_allocated_map(std::string* value) { +inline void backupMapRequest::set_allocated_identification(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_.SetAllocated(value, GetArena()); + _impl_.identification_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.map_.IsDefault()) { - _impl_.map_.Set("", GetArena()); + if (_impl_.identification_.IsDefault()) { + _impl_.identification_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapRequestRequest.map) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.identification) } -// ------------------------------------------------------------------- - -// getMapRequestResponse - -// bytes map = 1; -inline void getMapRequestResponse::clear_map() { +// bytes keyframes = 8; +inline void backupMapRequest::clear_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_.ClearToEmpty(); + _impl_.keyframes_.ClearToEmpty(); } -inline const std::string& getMapRequestResponse::map() const +inline const std::string& backupMapRequest::keyframes() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestResponse.map) - return _internal_map(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.keyframes) + return _internal_keyframes(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapRequestResponse::set_map(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_keyframes(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapRequestResponse.map) + _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.keyframes) } -inline std::string* getMapRequestResponse::mutable_map() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_map(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapRequestResponse.map) +inline std::string* backupMapRequest::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_keyframes(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.keyframes) return _s; } -inline const std::string& getMapRequestResponse::_internal_map() const { +inline const std::string& backupMapRequest::_internal_keyframes() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.map_.Get(); + return _impl_.keyframes_.Get(); } -inline void getMapRequestResponse::_internal_set_map(const std::string& value) { +inline void backupMapRequest::_internal_set_keyframes(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_.Set(value, GetArena()); + _impl_.keyframes_.Set(value, GetArena()); } -inline std::string* getMapRequestResponse::_internal_mutable_map() { +inline std::string* backupMapRequest::_internal_mutable_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.map_.Mutable( GetArena()); + return _impl_.keyframes_.Mutable( GetArena()); } -inline std::string* getMapRequestResponse::release_map() { +inline std::string* backupMapRequest::release_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapRequestResponse.map) - return _impl_.map_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.keyframes) + return _impl_.keyframes_.Release(); } -inline void getMapRequestResponse::set_allocated_map(std::string* value) { +inline void backupMapRequest::set_allocated_keyframes(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_.SetAllocated(value, GetArena()); + _impl_.keyframes_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.map_.IsDefault()) { - _impl_.map_.Set("", GetArena()); + if (_impl_.keyframes_.IsDefault()) { + _impl_.keyframes_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapRequestResponse.map) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.keyframes) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getMapRequestResponse::clear_xpcfgrpcreturnvalue() { +// bytes pointcloud = 9; +inline void backupMapRequest::clear_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.pointcloud_.ClearToEmpty(); } -inline ::int32_t getMapRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapRequestResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline const std::string& backupMapRequest::pointcloud() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.pointcloud) + return _internal_pointcloud(); } -inline void getMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapRequestResponse.xpcfGrpcReturnValue) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_pointcloud(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.pointcloud) } -inline ::int32_t getMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline std::string* backupMapRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_pointcloud(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.pointcloud) + return _s; +} +inline const std::string& backupMapRequest::_internal_pointcloud() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; + return _impl_.pointcloud_.Get(); } -inline void getMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void backupMapRequest::_internal_set_pointcloud(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + _impl_.pointcloud_.Set(value, GetArena()); +} +inline std::string* backupMapRequest::_internal_mutable_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.pointcloud_.Mutable( GetArena()); +} +inline std::string* backupMapRequest::release_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.pointcloud) + return _impl_.pointcloud_.Release(); +} +inline void backupMapRequest::set_allocated_pointcloud(std::string* 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:grpcIMapsManager.backupMapRequest.pointcloud) } // ------------------------------------------------------------------- -// setMapRequestRequest +// backupMapResponse -// int32 grpcServerCompressionFormat = 1; -inline void setMapRequestRequest::clear_grpcservercompressionformat() { +// bytes map_information = 1; +inline void backupMapResponse::clear_map_information() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; + _impl_.map_information_.ClearToEmpty(); } -inline ::int32_t setMapRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.setMapRequestRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); +inline const std::string& backupMapResponse::map_information() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.map_information) + return _internal_map_information(); } -inline void setMapRequestRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.setMapRequestRequest.grpcServerCompressionFormat) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_map_information(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.map_information) } -inline ::int32_t setMapRequestRequest::_internal_grpcservercompressionformat() const { +inline std::string* backupMapResponse::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_map_information(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.map_information) + return _s; +} +inline const std::string& backupMapResponse::_internal_map_information() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; + return _impl_.map_information_.Get(); } -inline void setMapRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void backupMapResponse::_internal_set_map_information(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.map_information_.Set(value, GetArena()); +} +inline std::string* backupMapResponse::_internal_mutable_map_information() { + ::google::protobuf::internal::TSanWrite(&_impl_); + return _impl_.map_information_.Mutable( GetArena()); +} +inline std::string* backupMapResponse::release_map_information() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.map_information) + return _impl_.map_information_.Release(); +} +inline void backupMapResponse::set_allocated_map_information(std::string* value) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.map_information_.IsDefault()) { + _impl_.map_information_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.map_information) } -// string mapUUID = 2; -inline void setMapRequestRequest::clear_mapuuid() { +// bytes cameraParameters = 2; +inline void backupMapResponse::clear_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); } -inline const std::string& setMapRequestRequest::mapuuid() const +inline const std::string& backupMapResponse::cameraparameters() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.setMapRequestRequest.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.cameraParameters) + return _internal_cameraparameters(); } template -inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_cameraparameters(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.setMapRequestRequest.mapUUID) + _impl_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.cameraParameters) } -inline std::string* setMapRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.setMapRequestRequest.mapUUID) +inline std::string* backupMapResponse::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparameters(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.cameraParameters) return _s; } -inline const std::string& setMapRequestRequest::_internal_mapuuid() const { +inline const std::string& backupMapResponse::_internal_cameraparameters() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.cameraparameters_.Get(); } -inline void setMapRequestRequest::_internal_set_mapuuid(const std::string& value) { +inline void backupMapResponse::_internal_set_cameraparameters(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.cameraparameters_.Set(value, GetArena()); } -inline std::string* setMapRequestRequest::_internal_mutable_mapuuid() { +inline std::string* backupMapResponse::_internal_mutable_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.cameraparameters_.Mutable( GetArena()); } -inline std::string* setMapRequestRequest::release_mapuuid() { +inline std::string* backupMapResponse::release_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.setMapRequestRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.cameraParameters) + return _impl_.cameraparameters_.Release(); } -inline void setMapRequestRequest::set_allocated_mapuuid(std::string* value) { +inline void backupMapResponse::set_allocated_cameraparameters(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.cameraparameters_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.cameraparameters_.IsDefault()) { + _impl_.cameraparameters_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.setMapRequestRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.cameraParameters) } -// bytes mapDatastructure = 3; -inline void setMapRequestRequest::clear_mapdatastructure() { +// bytes coordinate = 3; +inline void backupMapResponse::clear_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.ClearToEmpty(); + _impl_.coordinate_.ClearToEmpty(); } -inline const std::string& setMapRequestRequest::mapdatastructure() const +inline const std::string& backupMapResponse::coordinate() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.setMapRequestRequest.mapDatastructure) - return _internal_mapdatastructure(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.coordinate) + return _internal_coordinate(); } template -inline PROTOBUF_ALWAYS_INLINE void setMapRequestRequest::set_mapdatastructure(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_coordinate(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.setMapRequestRequest.mapDatastructure) + _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.coordinate) } -inline std::string* setMapRequestRequest::mutable_mapdatastructure() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapdatastructure(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.setMapRequestRequest.mapDatastructure) +inline std::string* backupMapResponse::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_coordinate(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.coordinate) return _s; } -inline const std::string& setMapRequestRequest::_internal_mapdatastructure() const { +inline const std::string& backupMapResponse::_internal_coordinate() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapdatastructure_.Get(); + return _impl_.coordinate_.Get(); } -inline void setMapRequestRequest::_internal_set_mapdatastructure(const std::string& value) { +inline void backupMapResponse::_internal_set_coordinate(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.Set(value, GetArena()); + _impl_.coordinate_.Set(value, GetArena()); } -inline std::string* setMapRequestRequest::_internal_mutable_mapdatastructure() { +inline std::string* backupMapResponse::_internal_mutable_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapdatastructure_.Mutable( GetArena()); + return _impl_.coordinate_.Mutable( GetArena()); } -inline std::string* setMapRequestRequest::release_mapdatastructure() { +inline std::string* backupMapResponse::release_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.setMapRequestRequest.mapDatastructure) - return _impl_.mapdatastructure_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.coordinate) + return _impl_.coordinate_.Release(); } -inline void setMapRequestRequest::set_allocated_mapdatastructure(std::string* value) { +inline void backupMapResponse::set_allocated_coordinate(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapdatastructure_.SetAllocated(value, GetArena()); + _impl_.coordinate_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapdatastructure_.IsDefault()) { - _impl_.mapdatastructure_.Set("", GetArena()); + if (_impl_.coordinate_.IsDefault()) { + _impl_.coordinate_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.setMapRequestRequest.mapDatastructure) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.coordinate) } -// ------------------------------------------------------------------- - -// setMapRequestResponse - -// sint32 xpcfGrpcReturnValue = 1; -inline void setMapRequestResponse::clear_xpcfgrpcreturnvalue() { +// bytes covisibility_graph = 4; +inline void backupMapResponse::clear_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; + _impl_.covisibility_graph_.ClearToEmpty(); } -inline ::int32_t setMapRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.setMapRequestResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); +inline const std::string& backupMapResponse::covisibility_graph() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.covisibility_graph) + return _internal_covisibility_graph(); } -inline void setMapRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.setMapRequestResponse.xpcfGrpcReturnValue) +template +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_covisibility_graph(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.covisibility_graph) } -inline ::int32_t setMapRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline std::string* backupMapResponse::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_covisibility_graph(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.covisibility_graph) + return _s; +} +inline const std::string& backupMapResponse::_internal_covisibility_graph() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.xpcfgrpcreturnvalue_; + return _impl_.covisibility_graph_.Get(); } -inline void setMapRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void backupMapResponse::_internal_set_covisibility_graph(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = value; + _impl_.covisibility_graph_.Set(value, GetArena()); } - -// ------------------------------------------------------------------- - -// getPointCloudRequestRequest - -// int32 grpcServerCompressionFormat = 1; -inline void getPointCloudRequestRequest::clear_grpcservercompressionformat() { +inline std::string* backupMapResponse::_internal_mutable_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = 0; -} -inline ::int32_t getPointCloudRequestRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getPointCloudRequestRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); -} -inline void getPointCloudRequestRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getPointCloudRequestRequest.grpcServerCompressionFormat) + return _impl_.covisibility_graph_.Mutable( GetArena()); } -inline ::int32_t getPointCloudRequestRequest::_internal_grpcservercompressionformat() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.grpcservercompressionformat_; +inline std::string* backupMapResponse::release_covisibility_graph() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.covisibility_graph) + return _impl_.covisibility_graph_.Release(); } -inline void getPointCloudRequestRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void backupMapResponse::set_allocated_covisibility_graph(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.grpcservercompressionformat_ = value; + _impl_.covisibility_graph_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.covisibility_graph_.IsDefault()) { + _impl_.covisibility_graph_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.covisibility_graph) } -// string mapUUID = 2; -inline void getPointCloudRequestRequest::clear_mapuuid() { +// bytes identification = 5; +inline void backupMapResponse::clear_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); } -inline const std::string& getPointCloudRequestRequest::mapuuid() const +inline const std::string& backupMapResponse::identification() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getPointCloudRequestRequest.mapUUID) - return _internal_mapuuid(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.identification) + return _internal_identification(); } template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_mapuuid(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_identification(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getPointCloudRequestRequest.mapUUID) + _impl_.identification_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.identification) } -inline std::string* getPointCloudRequestRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getPointCloudRequestRequest.mapUUID) +inline std::string* backupMapResponse::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_identification(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.identification) return _s; } -inline const std::string& getPointCloudRequestRequest::_internal_mapuuid() const { +inline const std::string& backupMapResponse::_internal_identification() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.identification_.Get(); } -inline void getPointCloudRequestRequest::_internal_set_mapuuid(const std::string& value) { +inline void backupMapResponse::_internal_set_identification(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.identification_.Set(value, GetArena()); } -inline std::string* getPointCloudRequestRequest::_internal_mutable_mapuuid() { +inline std::string* backupMapResponse::_internal_mutable_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.identification_.Mutable( GetArena()); } -inline std::string* getPointCloudRequestRequest::release_mapuuid() { +inline std::string* backupMapResponse::release_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getPointCloudRequestRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.identification) + return _impl_.identification_.Release(); } -inline void getPointCloudRequestRequest::set_allocated_mapuuid(std::string* value) { +inline void backupMapResponse::set_allocated_identification(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.identification_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.identification_.IsDefault()) { + _impl_.identification_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getPointCloudRequestRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.identification) } -// bytes pointCloud = 3; -inline void getPointCloudRequestRequest::clear_pointcloud() { +// bytes keyframes = 6; +inline void backupMapResponse::clear_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.ClearToEmpty(); + _impl_.keyframes_.ClearToEmpty(); } -inline const std::string& getPointCloudRequestRequest::pointcloud() const +inline const std::string& backupMapResponse::keyframes() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getPointCloudRequestRequest.pointCloud) - return _internal_pointcloud(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.keyframes) + return _internal_keyframes(); } template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestRequest::set_pointcloud(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_keyframes(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getPointCloudRequestRequest.pointCloud) + _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.keyframes) } -inline std::string* getPointCloudRequestRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getPointCloudRequestRequest.pointCloud) +inline std::string* backupMapResponse::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_keyframes(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.keyframes) return _s; } -inline const std::string& getPointCloudRequestRequest::_internal_pointcloud() const { +inline const std::string& backupMapResponse::_internal_keyframes() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pointcloud_.Get(); + return _impl_.keyframes_.Get(); } -inline void getPointCloudRequestRequest::_internal_set_pointcloud(const std::string& value) { +inline void backupMapResponse::_internal_set_keyframes(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.Set(value, GetArena()); + _impl_.keyframes_.Set(value, GetArena()); } -inline std::string* getPointCloudRequestRequest::_internal_mutable_pointcloud() { +inline std::string* backupMapResponse::_internal_mutable_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pointcloud_.Mutable( GetArena()); + return _impl_.keyframes_.Mutable( GetArena()); } -inline std::string* getPointCloudRequestRequest::release_pointcloud() { +inline std::string* backupMapResponse::release_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getPointCloudRequestRequest.pointCloud) - return _impl_.pointcloud_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.keyframes) + return _impl_.keyframes_.Release(); } -inline void getPointCloudRequestRequest::set_allocated_pointcloud(std::string* value) { +inline void backupMapResponse::set_allocated_keyframes(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.SetAllocated(value, GetArena()); + _impl_.keyframes_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.pointcloud_.IsDefault()) { - _impl_.pointcloud_.Set("", GetArena()); + if (_impl_.keyframes_.IsDefault()) { + _impl_.keyframes_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getPointCloudRequestRequest.pointCloud) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.keyframes) } -// ------------------------------------------------------------------- - -// getPointCloudRequestResponse - -// bytes pointCloud = 1; -inline void getPointCloudRequestResponse::clear_pointcloud() { +// bytes pointcloud = 7; +inline void backupMapResponse::clear_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.pointcloud_.ClearToEmpty(); } -inline const std::string& getPointCloudRequestResponse::pointcloud() const +inline const std::string& backupMapResponse::pointcloud() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getPointCloudRequestResponse.pointCloud) + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.pointcloud) return _internal_pointcloud(); } template -inline PROTOBUF_ALWAYS_INLINE void getPointCloudRequestResponse::set_pointcloud(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_pointcloud(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getPointCloudRequestResponse.pointCloud) + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.pointcloud) } -inline std::string* getPointCloudRequestResponse::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { +inline std::string* backupMapResponse::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getPointCloudRequestResponse.pointCloud) + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.pointcloud) return _s; } -inline const std::string& getPointCloudRequestResponse::_internal_pointcloud() const { +inline const std::string& backupMapResponse::_internal_pointcloud() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.pointcloud_.Get(); } -inline void getPointCloudRequestResponse::_internal_set_pointcloud(const std::string& value) { +inline void backupMapResponse::_internal_set_pointcloud(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.pointcloud_.Set(value, GetArena()); } -inline std::string* getPointCloudRequestResponse::_internal_mutable_pointcloud() { +inline std::string* backupMapResponse::_internal_mutable_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); return _impl_.pointcloud_.Mutable( GetArena()); } -inline std::string* getPointCloudRequestResponse::release_pointcloud() { +inline std::string* backupMapResponse::release_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getPointCloudRequestResponse.pointCloud) + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.pointcloud) return _impl_.pointcloud_.Release(); } -inline void getPointCloudRequestResponse::set_allocated_pointcloud(std::string* value) { +inline void backupMapResponse::set_allocated_pointcloud(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.pointcloud_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING @@ -6142,405 +8432,479 @@ inline void getPointCloudRequestResponse::set_allocated_pointcloud(std::string* _impl_.pointcloud_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getPointCloudRequestResponse.pointCloud) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.pointcloud) } -// sint32 xpcfGrpcReturnValue = 2; -inline void getPointCloudRequestResponse::clear_xpcfgrpcreturnvalue() { +// sint32 xpcfGrpcReturnValue = 8; +inline void backupMapResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = 0; } -inline ::int32_t getPointCloudRequestResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getPointCloudRequestResponse.xpcfGrpcReturnValue) +inline ::int32_t backupMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.xpcfGrpcReturnValue) return _internal_xpcfgrpcreturnvalue(); } -inline void getPointCloudRequestResponse::set_xpcfgrpcreturnvalue(::int32_t value) { +inline void backupMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getPointCloudRequestResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.xpcfGrpcReturnValue) } -inline ::int32_t getPointCloudRequestResponse::_internal_xpcfgrpcreturnvalue() const { +inline ::int32_t backupMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.xpcfgrpcreturnvalue_; } -inline void getPointCloudRequestResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { +inline void backupMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.xpcfgrpcreturnvalue_ = value; } // ------------------------------------------------------------------- -// getMapInfoRequest +// restoreMapRequest // int32 grpcServerCompressionFormat = 1; -inline void getMapInfoRequest::clear_grpcservercompressionformat() { +inline void restoreMapRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = 0; } -inline ::int32_t getMapInfoRequest::grpcservercompressionformat() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.grpcServerCompressionFormat) +inline ::int32_t restoreMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.grpcServerCompressionFormat) return _internal_grpcservercompressionformat(); } -inline void getMapInfoRequest::set_grpcservercompressionformat(::int32_t value) { +inline void restoreMapRequest::set_grpcservercompressionformat(::int32_t value) { _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.grpcServerCompressionFormat) + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.grpcServerCompressionFormat) } -inline ::int32_t getMapInfoRequest::_internal_grpcservercompressionformat() const { +inline ::int32_t restoreMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); return _impl_.grpcservercompressionformat_; } -inline void getMapInfoRequest::_internal_set_grpcservercompressionformat(::int32_t value) { +inline void restoreMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.grpcservercompressionformat_ = value; } // string mapUUID = 2; -inline void getMapInfoRequest::clear_mapuuid() { +inline void restoreMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& getMapInfoRequest::mapuuid() const +inline const std::string& restoreMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.mapUUID) + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.mapUUID) return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_mapuuid(Arg_&& arg, +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.getMapInfoRequest.mapUUID) + // @@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 map_information = 3; +inline void restoreMapRequest::clear_map_information() { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.ClearToEmpty(); +} +inline const std::string& restoreMapRequest::map_information() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.map_information) + return _internal_map_information(); +} +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_map_information(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.map_information) } -inline std::string* getMapInfoRequest::mutable_mapuuid() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_mapuuid(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapInfoRequest.mapUUID) +inline std::string* restoreMapRequest::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_map_information(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.map_information) return _s; } -inline const std::string& getMapInfoRequest::_internal_mapuuid() const { +inline const std::string& restoreMapRequest::_internal_map_information() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.mapuuid_.Get(); + return _impl_.map_information_.Get(); } -inline void getMapInfoRequest::_internal_set_mapuuid(const std::string& value) { +inline void restoreMapRequest::_internal_set_map_information(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.Set(value, GetArena()); + _impl_.map_information_.Set(value, GetArena()); } -inline std::string* getMapInfoRequest::_internal_mutable_mapuuid() { +inline std::string* restoreMapRequest::_internal_mutable_map_information() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.mapuuid_.Mutable( GetArena()); + return _impl_.map_information_.Mutable( GetArena()); } -inline std::string* getMapInfoRequest::release_mapuuid() { +inline std::string* restoreMapRequest::release_map_information() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapInfoRequest.mapUUID) - return _impl_.mapuuid_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.map_information) + return _impl_.map_information_.Release(); } -inline void getMapInfoRequest::set_allocated_mapuuid(std::string* value) { +inline void restoreMapRequest::set_allocated_map_information(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.mapuuid_.SetAllocated(value, GetArena()); + _impl_.map_information_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.mapuuid_.IsDefault()) { - _impl_.mapuuid_.Set("", GetArena()); + if (_impl_.map_information_.IsDefault()) { + _impl_.map_information_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapInfoRequest.mapUUID) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.map_information) } -// string version = 3; -inline void getMapInfoRequest::clear_version() { +// bytes cameraParameters = 4; +inline void restoreMapRequest::clear_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); } -inline const std::string& getMapInfoRequest::version() const +inline const std::string& restoreMapRequest::cameraparameters() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.version) - return _internal_version(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.cameraParameters) + return _internal_cameraparameters(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoRequest::set_version(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_cameraparameters(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.version) + _impl_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.cameraParameters) } -inline std::string* getMapInfoRequest::mutable_version() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_version(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapInfoRequest.version) +inline std::string* restoreMapRequest::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_cameraparameters(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.cameraParameters) return _s; } -inline const std::string& getMapInfoRequest::_internal_version() const { +inline const std::string& restoreMapRequest::_internal_cameraparameters() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.version_.Get(); + return _impl_.cameraparameters_.Get(); } -inline void getMapInfoRequest::_internal_set_version(const std::string& value) { +inline void restoreMapRequest::_internal_set_cameraparameters(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.Set(value, GetArena()); + _impl_.cameraparameters_.Set(value, GetArena()); } -inline std::string* getMapInfoRequest::_internal_mutable_version() { +inline std::string* restoreMapRequest::_internal_mutable_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.version_.Mutable( GetArena()); + return _impl_.cameraparameters_.Mutable( GetArena()); } -inline std::string* getMapInfoRequest::release_version() { +inline std::string* restoreMapRequest::release_cameraparameters() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapInfoRequest.version) - return _impl_.version_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.cameraParameters) + return _impl_.cameraparameters_.Release(); } -inline void getMapInfoRequest::set_allocated_version(std::string* value) { +inline void restoreMapRequest::set_allocated_cameraparameters(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.SetAllocated(value, GetArena()); + _impl_.cameraparameters_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.version_.IsDefault()) { - _impl_.version_.Set("", GetArena()); + if (_impl_.cameraparameters_.IsDefault()) { + _impl_.cameraparameters_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapInfoRequest.version) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.cameraParameters) } -// sint32 globalDescriptorType = 4; -inline void getMapInfoRequest::clear_globaldescriptortype() { +// bytes coordinate = 5; +inline void restoreMapRequest::clear_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = 0; + _impl_.coordinate_.ClearToEmpty(); } -inline ::int32_t getMapInfoRequest::globaldescriptortype() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.globalDescriptorType) - return _internal_globaldescriptortype(); +inline const std::string& restoreMapRequest::coordinate() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.coordinate) + return _internal_coordinate(); } -inline void getMapInfoRequest::set_globaldescriptortype(::int32_t value) { - _internal_set_globaldescriptortype(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.globalDescriptorType) +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_coordinate(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.coordinate) } -inline ::int32_t getMapInfoRequest::_internal_globaldescriptortype() const { +inline std::string* restoreMapRequest::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_coordinate(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.coordinate) + return _s; +} +inline const std::string& restoreMapRequest::_internal_coordinate() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.globaldescriptortype_; + return _impl_.coordinate_.Get(); } -inline void getMapInfoRequest::_internal_set_globaldescriptortype(::int32_t value) { +inline void restoreMapRequest::_internal_set_coordinate(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = value; + _impl_.coordinate_.Set(value, GetArena()); } - -// sint32 descriptorType = 5; -inline void getMapInfoRequest::clear_descriptortype() { +inline std::string* restoreMapRequest::_internal_mutable_coordinate() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = 0; -} -inline ::int32_t getMapInfoRequest::descriptortype() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.descriptorType) - return _internal_descriptortype(); -} -inline void getMapInfoRequest::set_descriptortype(::int32_t value) { - _internal_set_descriptortype(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.descriptorType) + return _impl_.coordinate_.Mutable( GetArena()); } -inline ::int32_t getMapInfoRequest::_internal_descriptortype() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.descriptortype_; +inline std::string* restoreMapRequest::release_coordinate() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.coordinate) + return _impl_.coordinate_.Release(); } -inline void getMapInfoRequest::_internal_set_descriptortype(::int32_t value) { +inline void restoreMapRequest::set_allocated_coordinate(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = value; + _impl_.coordinate_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.coordinate_.IsDefault()) { + _impl_.coordinate_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.coordinate) } -// uint32 dataSize = 6; -inline void getMapInfoRequest::clear_datasize() { +// bytes covisibility_graph = 6; +inline void restoreMapRequest::clear_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = 0u; + _impl_.covisibility_graph_.ClearToEmpty(); } -inline ::uint32_t getMapInfoRequest::datasize() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.dataSize) - return _internal_datasize(); +inline const std::string& restoreMapRequest::covisibility_graph() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.covisibility_graph) + return _internal_covisibility_graph(); } -inline void getMapInfoRequest::set_datasize(::uint32_t value) { - _internal_set_datasize(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.dataSize) +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_covisibility_graph(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.covisibility_graph) } -inline ::uint32_t getMapInfoRequest::_internal_datasize() const { +inline std::string* restoreMapRequest::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_covisibility_graph(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.covisibility_graph) + return _s; +} +inline const std::string& restoreMapRequest::_internal_covisibility_graph() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.datasize_; + return _impl_.covisibility_graph_.Get(); } -inline void getMapInfoRequest::_internal_set_datasize(::uint32_t value) { +inline void restoreMapRequest::_internal_set_covisibility_graph(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = value; + _impl_.covisibility_graph_.Set(value, GetArena()); } - -// bool areImageSaved = 7; -inline void getMapInfoRequest::clear_areimagesaved() { +inline std::string* restoreMapRequest::_internal_mutable_covisibility_graph() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = false; -} -inline bool getMapInfoRequest::areimagesaved() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoRequest.areImageSaved) - return _internal_areimagesaved(); -} -inline void getMapInfoRequest::set_areimagesaved(bool value) { - _internal_set_areimagesaved(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoRequest.areImageSaved) + return _impl_.covisibility_graph_.Mutable( GetArena()); } -inline bool getMapInfoRequest::_internal_areimagesaved() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.areimagesaved_; +inline std::string* restoreMapRequest::release_covisibility_graph() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.covisibility_graph) + return _impl_.covisibility_graph_.Release(); } -inline void getMapInfoRequest::_internal_set_areimagesaved(bool value) { +inline void restoreMapRequest::set_allocated_covisibility_graph(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = value; + _impl_.covisibility_graph_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.covisibility_graph_.IsDefault()) { + _impl_.covisibility_graph_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.covisibility_graph) } -// ------------------------------------------------------------------- - -// getMapInfoResponse - -// string version = 1; -inline void getMapInfoResponse::clear_version() { +// bytes identification = 7; +inline void restoreMapRequest::clear_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); } -inline const std::string& getMapInfoResponse::version() const +inline const std::string& restoreMapRequest::identification() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.version) - return _internal_version(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.identification) + return _internal_identification(); } template -inline PROTOBUF_ALWAYS_INLINE void getMapInfoResponse::set_version(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_identification(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.Set(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoResponse.version) + _impl_.identification_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.identification) } -inline std::string* getMapInfoResponse::mutable_version() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_version(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.getMapInfoResponse.version) +inline std::string* restoreMapRequest::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_identification(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.identification) return _s; } -inline const std::string& getMapInfoResponse::_internal_version() const { +inline const std::string& restoreMapRequest::_internal_identification() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.version_.Get(); + return _impl_.identification_.Get(); } -inline void getMapInfoResponse::_internal_set_version(const std::string& value) { +inline void restoreMapRequest::_internal_set_identification(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.Set(value, GetArena()); + _impl_.identification_.Set(value, GetArena()); } -inline std::string* getMapInfoResponse::_internal_mutable_version() { +inline std::string* restoreMapRequest::_internal_mutable_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.version_.Mutable( GetArena()); + return _impl_.identification_.Mutable( GetArena()); } -inline std::string* getMapInfoResponse::release_version() { +inline std::string* restoreMapRequest::release_identification() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.getMapInfoResponse.version) - return _impl_.version_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.identification) + return _impl_.identification_.Release(); } -inline void getMapInfoResponse::set_allocated_version(std::string* value) { +inline void restoreMapRequest::set_allocated_identification(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.version_.SetAllocated(value, GetArena()); + _impl_.identification_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.version_.IsDefault()) { - _impl_.version_.Set("", GetArena()); + if (_impl_.identification_.IsDefault()) { + _impl_.identification_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.getMapInfoResponse.version) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.identification) } -// sint32 globalDescriptorType = 2; -inline void getMapInfoResponse::clear_globaldescriptortype() { +// bytes keyframes = 8; +inline void restoreMapRequest::clear_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = 0; + _impl_.keyframes_.ClearToEmpty(); } -inline ::int32_t getMapInfoResponse::globaldescriptortype() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.globalDescriptorType) - return _internal_globaldescriptortype(); +inline const std::string& restoreMapRequest::keyframes() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.keyframes) + return _internal_keyframes(); } -inline void getMapInfoResponse::set_globaldescriptortype(::int32_t value) { - _internal_set_globaldescriptortype(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoResponse.globalDescriptorType) +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_keyframes(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.keyframes) } -inline ::int32_t getMapInfoResponse::_internal_globaldescriptortype() const { +inline std::string* restoreMapRequest::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_keyframes(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.keyframes) + return _s; +} +inline const std::string& restoreMapRequest::_internal_keyframes() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.globaldescriptortype_; + return _impl_.keyframes_.Get(); } -inline void getMapInfoResponse::_internal_set_globaldescriptortype(::int32_t value) { +inline void restoreMapRequest::_internal_set_keyframes(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.globaldescriptortype_ = value; + _impl_.keyframes_.Set(value, GetArena()); } - -// sint32 descriptorType = 3; -inline void getMapInfoResponse::clear_descriptortype() { +inline std::string* restoreMapRequest::_internal_mutable_keyframes() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = 0; + return _impl_.keyframes_.Mutable( GetArena()); } -inline ::int32_t getMapInfoResponse::descriptortype() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.descriptorType) - return _internal_descriptortype(); -} -inline void getMapInfoResponse::set_descriptortype(::int32_t value) { - _internal_set_descriptortype(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoResponse.descriptorType) -} -inline ::int32_t getMapInfoResponse::_internal_descriptortype() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.descriptortype_; +inline std::string* restoreMapRequest::release_keyframes() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.keyframes) + return _impl_.keyframes_.Release(); } -inline void getMapInfoResponse::_internal_set_descriptortype(::int32_t value) { +inline void restoreMapRequest::set_allocated_keyframes(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.descriptortype_ = value; + _impl_.keyframes_.SetAllocated(value, GetArena()); + #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING + if (_impl_.keyframes_.IsDefault()) { + _impl_.keyframes_.Set("", GetArena()); + } + #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.keyframes) } -// uint32 dataSize = 4; -inline void getMapInfoResponse::clear_datasize() { +// bytes pointcloud = 9; +inline void restoreMapRequest::clear_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = 0u; + _impl_.pointcloud_.ClearToEmpty(); } -inline ::uint32_t getMapInfoResponse::datasize() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.dataSize) - return _internal_datasize(); +inline const std::string& restoreMapRequest::pointcloud() const + ABSL_ATTRIBUTE_LIFETIME_BOUND { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.pointcloud) + return _internal_pointcloud(); } -inline void getMapInfoResponse::set_datasize(::uint32_t value) { - _internal_set_datasize(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoResponse.dataSize) +template +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_pointcloud(Arg_&& arg, + Args_... args) { + ::google::protobuf::internal::TSanWrite(&_impl_); + _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.pointcloud) } -inline ::uint32_t getMapInfoResponse::_internal_datasize() const { +inline std::string* restoreMapRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_pointcloud(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.pointcloud) + return _s; +} +inline const std::string& restoreMapRequest::_internal_pointcloud() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.datasize_; + return _impl_.pointcloud_.Get(); } -inline void getMapInfoResponse::_internal_set_datasize(::uint32_t value) { +inline void restoreMapRequest::_internal_set_pointcloud(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.datasize_ = value; + _impl_.pointcloud_.Set(value, GetArena()); } - -// bool areImageSaved = 5; -inline void getMapInfoResponse::clear_areimagesaved() { +inline std::string* restoreMapRequest::_internal_mutable_pointcloud() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = false; -} -inline bool getMapInfoResponse::areimagesaved() const { - // @@protoc_insertion_point(field_get:grpcIMapsManager.getMapInfoResponse.areImageSaved) - return _internal_areimagesaved(); -} -inline void getMapInfoResponse::set_areimagesaved(bool value) { - _internal_set_areimagesaved(value); - // @@protoc_insertion_point(field_set:grpcIMapsManager.getMapInfoResponse.areImageSaved) + return _impl_.pointcloud_.Mutable( GetArena()); } -inline bool getMapInfoResponse::_internal_areimagesaved() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.areimagesaved_; +inline std::string* restoreMapRequest::release_pointcloud() { + ::google::protobuf::internal::TSanWrite(&_impl_); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.pointcloud) + return _impl_.pointcloud_.Release(); } -inline void getMapInfoResponse::_internal_set_areimagesaved(bool value) { +inline void restoreMapRequest::set_allocated_pointcloud(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.areimagesaved_ = value; + _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:grpcIMapsManager.restoreMapRequest.pointcloud) } -// 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:grpcIMapsManager.getMapInfoResponse.xpcfGrpcReturnValue) +inline ::int32_t restoreMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.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:grpcIMapsManager.getMapInfoResponse.xpcfGrpcReturnValue) + // @@protoc_insertion_point(field_set:grpcIMapsManager.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/proto/grpcIFrontEndService.proto b/gen/proto/grpcIFrontEndService.proto index 5cc4784..b7f36b8 100644 --- a/gen/proto/grpcIFrontEndService.proto +++ b/gen/proto/grpcIFrontEndService.proto @@ -369,6 +369,51 @@ bool areImageSaved = 5; sint32 xpcfGrpcReturnValue = 6; } +message backupMapRequest +{ +int32 grpcServerCompressionFormat = 1; +string accessToken = 2; +string mapUUID = 3; +bytes map_information = 4; +bytes cameraParameters = 5; +bytes coordinate = 6; +bytes covisibility_graph = 7; +bytes identification = 8; +bytes keyframes = 9; +bytes pointcloud = 10; +} + +message backupMapResponse +{ +bytes map_information = 1; +bytes cameraParameters = 2; +bytes coordinate = 3; +bytes covisibility_graph = 4; +bytes identification = 5; +bytes keyframes = 6; +bytes pointcloud = 7; +sint32 xpcfGrpcReturnValue = 8; +} + +message restoreMapRequest +{ +int32 grpcServerCompressionFormat = 1; +string accessToken = 2; +string mapUUID = 3; +bytes map_information = 4; +bytes cameraParameters = 5; +bytes coordinate = 6; +bytes covisibility_graph = 7; +bytes identification = 8; +bytes keyframes = 9; +bytes pointcloud = 10; +} + +message restoreMapResponse +{ +sint32 xpcfGrpcReturnValue = 1; +} + message requestMapProcessingRequest { int32 grpcServerCompressionFormat = 1; @@ -443,6 +488,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..4ab63da 100644 --- a/gen/proto/grpcIMapsManagerService.proto +++ b/gen/proto/grpcIMapsManagerService.proto @@ -122,6 +122,49 @@ bool areImageSaved = 5; sint32 xpcfGrpcReturnValue = 6; } +message backupMapRequest +{ +int32 grpcServerCompressionFormat = 1; +string mapUUID = 2; +bytes map_information = 3; +bytes cameraParameters = 4; +bytes coordinate = 5; +bytes covisibility_graph = 6; +bytes identification = 7; +bytes keyframes = 8; +bytes pointcloud = 9; +} + +message backupMapResponse +{ +bytes map_information = 1; +bytes cameraParameters = 2; +bytes coordinate = 3; +bytes covisibility_graph = 4; +bytes identification = 5; +bytes keyframes = 6; +bytes pointcloud = 7; +sint32 xpcfGrpcReturnValue = 8; +} + +message restoreMapRequest +{ +int32 grpcServerCompressionFormat = 1; +string mapUUID = 2; +bytes map_information = 3; +bytes cameraParameters = 4; +bytes coordinate = 5; +bytes covisibility_graph = 6; +bytes identification = 7; +bytes keyframes = 8; +bytes pointcloud = 9; +} + +message restoreMapResponse +{ +sint32 xpcfGrpcReturnValue = 1; +} + message requestMapProcessingRequest { int32 grpcServerCompressionFormat = 1; @@ -177,6 +220,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..3c26d05 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,89 @@ SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::getMapInfo(std::string const& a } +SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::backupMap(std::string const& accessToken, std::string const& mapUUID, std::vector& map_information, std::vector& cameraParameters, std::vector& coordinate, std::vector& covisibility_graph, std::vector& identification, std::vector& keyframes, std::vector& pointcloud) 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_map_information(xpcf::serialize>(map_information)); + reqIn.set_cameraparameters(xpcf::serialize>(cameraParameters)); + reqIn.set_coordinate(xpcf::serialize>(coordinate)); + reqIn.set_covisibility_graph(xpcf::serialize>(covisibility_graph)); + reqIn.set_identification(xpcf::serialize>(identification)); + reqIn.set_keyframes(xpcf::serialize>(keyframes)); + reqIn.set_pointcloud(xpcf::serialize>(pointcloud)); + #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())); + } + + map_information = xpcf::deserialize>(respOut.map_information()); + cameraParameters = xpcf::deserialize>(respOut.cameraparameters()); + coordinate = xpcf::deserialize>(respOut.coordinate()); + covisibility_graph = xpcf::deserialize>(respOut.covisibility_graph()); + identification = xpcf::deserialize>(respOut.identification()); + keyframes = xpcf::deserialize>(respOut.keyframes()); + pointcloud = xpcf::deserialize>(respOut.pointcloud()); + return static_cast(respOut.xpcfgrpcreturnvalue()); +} + + +SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::restoreMap(std::string const& accessToken, std::string const& mapUUID, std::vector const& map_information, std::vector const& cameraParameters, std::vector const& coordinate, std::vector const& covisibility_graph, std::vector const& identification, std::vector const& keyframes, std::vector const& pointcloud) +{ + ::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_map_information(xpcf::serialize>(map_information)); + reqIn.set_cameraparameters(xpcf::serialize>(cameraParameters)); + reqIn.set_coordinate(xpcf::serialize>(coordinate)); + reqIn.set_covisibility_graph(xpcf::serialize>(covisibility_graph)); + reqIn.set_identification(xpcf::serialize>(identification)); + reqIn.set_keyframes(xpcf::serialize>(keyframes)); + reqIn.set_pointcloud(xpcf::serialize>(pointcloud)); + #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..43acf3d 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,75 @@ ::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 map_information = xpcf::deserialize>(request->map_information()); + std::vector cameraParameters = xpcf::deserialize>(request->cameraparameters()); + std::vector coordinate = xpcf::deserialize>(request->coordinate()); + std::vector covisibility_graph = xpcf::deserialize>(request->covisibility_graph()); + std::vector identification = xpcf::deserialize>(request->identification()); + std::vector keyframes = xpcf::deserialize>(request->keyframes()); + std::vector pointcloud = xpcf::deserialize>(request->pointcloud()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->backupMap(accessToken, mapUUID, map_information, cameraParameters, coordinate, covisibility_graph, identification, keyframes, pointcloud); + response->set_map_information(xpcf::serialize>(map_information)); + response->set_cameraparameters(xpcf::serialize>(cameraParameters)); + response->set_coordinate(xpcf::serialize>(coordinate)); + response->set_covisibility_graph(xpcf::serialize>(covisibility_graph)); + response->set_identification(xpcf::serialize>(identification)); + response->set_keyframes(xpcf::serialize>(keyframes)); + response->set_pointcloud(xpcf::serialize>(pointcloud)); + 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 map_information = xpcf::deserialize>(request->map_information()); + std::vector cameraParameters = xpcf::deserialize>(request->cameraparameters()); + std::vector coordinate = xpcf::deserialize>(request->coordinate()); + std::vector covisibility_graph = xpcf::deserialize>(request->covisibility_graph()); + std::vector identification = xpcf::deserialize>(request->identification()); + std::vector keyframes = xpcf::deserialize>(request->keyframes()); + std::vector pointcloud = xpcf::deserialize>(request->pointcloud()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->restoreMap(accessToken, mapUUID, map_information, cameraParameters, coordinate, covisibility_graph, identification, keyframes, pointcloud); + 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..77131ab 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,87 @@ SolAR::FrameworkReturnCode IMapsManager_grpcProxy::getMapInfo(std::string const } +SolAR::FrameworkReturnCode IMapsManager_grpcProxy::backupMap(std::string const& mapUUID, std::vector& map_information, std::vector& cameraParameters, std::vector& coordinate, std::vector& covisibility_graph, std::vector& identification, std::vector& keyframes, std::vector& pointcloud) 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_map_information(xpcf::serialize>(map_information)); + reqIn.set_cameraparameters(xpcf::serialize>(cameraParameters)); + reqIn.set_coordinate(xpcf::serialize>(coordinate)); + reqIn.set_covisibility_graph(xpcf::serialize>(covisibility_graph)); + reqIn.set_identification(xpcf::serialize>(identification)); + reqIn.set_keyframes(xpcf::serialize>(keyframes)); + reqIn.set_pointcloud(xpcf::serialize>(pointcloud)); + #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())); + } + + map_information = xpcf::deserialize>(respOut.map_information()); + cameraParameters = xpcf::deserialize>(respOut.cameraparameters()); + coordinate = xpcf::deserialize>(respOut.coordinate()); + covisibility_graph = xpcf::deserialize>(respOut.covisibility_graph()); + identification = xpcf::deserialize>(respOut.identification()); + keyframes = xpcf::deserialize>(respOut.keyframes()); + pointcloud = xpcf::deserialize>(respOut.pointcloud()); + return static_cast(respOut.xpcfgrpcreturnvalue()); +} + + +SolAR::FrameworkReturnCode IMapsManager_grpcProxy::restoreMap(std::string const& mapUUID, std::vector const& map_information, std::vector const& cameraParameters, std::vector const& coordinate, std::vector const& covisibility_graph, std::vector const& identification, std::vector const& keyframes, std::vector const& pointcloud) +{ + ::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_map_information(xpcf::serialize>(map_information)); + reqIn.set_cameraparameters(xpcf::serialize>(cameraParameters)); + reqIn.set_coordinate(xpcf::serialize>(coordinate)); + reqIn.set_covisibility_graph(xpcf::serialize>(covisibility_graph)); + reqIn.set_identification(xpcf::serialize>(identification)); + reqIn.set_keyframes(xpcf::serialize>(keyframes)); + reqIn.set_pointcloud(xpcf::serialize>(pointcloud)); + #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..98c1db9 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,73 @@ ::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 map_information = xpcf::deserialize>(request->map_information()); + std::vector cameraParameters = xpcf::deserialize>(request->cameraparameters()); + std::vector coordinate = xpcf::deserialize>(request->coordinate()); + std::vector covisibility_graph = xpcf::deserialize>(request->covisibility_graph()); + std::vector identification = xpcf::deserialize>(request->identification()); + std::vector keyframes = xpcf::deserialize>(request->keyframes()); + std::vector pointcloud = xpcf::deserialize>(request->pointcloud()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->backupMap(mapUUID, map_information, cameraParameters, coordinate, covisibility_graph, identification, keyframes, pointcloud); + response->set_map_information(xpcf::serialize>(map_information)); + response->set_cameraparameters(xpcf::serialize>(cameraParameters)); + response->set_coordinate(xpcf::serialize>(coordinate)); + response->set_covisibility_graph(xpcf::serialize>(covisibility_graph)); + response->set_identification(xpcf::serialize>(identification)); + response->set_keyframes(xpcf::serialize>(keyframes)); + response->set_pointcloud(xpcf::serialize>(pointcloud)); + 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 map_information = xpcf::deserialize>(request->map_information()); + std::vector cameraParameters = xpcf::deserialize>(request->cameraparameters()); + std::vector coordinate = xpcf::deserialize>(request->coordinate()); + std::vector covisibility_graph = xpcf::deserialize>(request->covisibility_graph()); + std::vector identification = xpcf::deserialize>(request->identification()); + std::vector keyframes = xpcf::deserialize>(request->keyframes()); + std::vector pointcloud = xpcf::deserialize>(request->pointcloud()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->restoreMap(mapUUID, map_information, cameraParameters, coordinate, covisibility_graph, identification, keyframes, pointcloud); + 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..1823ee6 100644 --- a/gen/src/grpcIFrontEndService.pb.cc +++ b/gen/src/grpcIFrontEndService.pb.cc @@ -351,6 +351,71 @@ 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()), + map_information_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + cameraparameters_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + coordinate_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + covisibility_graph_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + identification_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + keyframes_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + pointcloud_( + &::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 +1498,92 @@ struct createMapRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 createMapRequestDefaultTypeInternal _createMapRequest_default_instance_; + +inline constexpr backupMapResponse::Impl_::Impl_( + ::_pbi::ConstantInitialized) noexcept + : map_information_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + cameraparameters_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + coordinate_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + covisibility_graph_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + identification_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + keyframes_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + pointcloud_( + &::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()), + map_information_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + cameraparameters_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + coordinate_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + covisibility_graph_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + identification_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + keyframes_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + pointcloud_( + &::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 +2158,67 @@ 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_.map_information_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.cameraparameters_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.coordinate_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.covisibility_graph_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.identification_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.keyframes_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.pointcloud_), + ~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_.map_information_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.cameraparameters_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.coordinate_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.covisibility_graph_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.identification_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.keyframes_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.pointcloud_), + 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_.map_information_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.cameraparameters_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.coordinate_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.covisibility_graph_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.identification_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.keyframes_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.pointcloud_), + ~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 +2344,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)}, + {583, -1, -1, sizeof(::grpcIFrontEnd::backupMapResponse)}, + {599, -1, -1, sizeof(::grpcIFrontEnd::restoreMapRequest)}, + {617, -1, -1, sizeof(::grpcIFrontEnd::restoreMapResponse)}, + {626, -1, -1, sizeof(::grpcIFrontEnd::requestMapProcessingRequest)}, + {639, -1, -1, sizeof(::grpcIFrontEnd::requestMapProcessingResponse)}, + {648, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingStatusRequest)}, + {662, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingStatusResponse)}, + {674, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingDataRequest)}, + {687, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingDataResponse)}, }; static const ::_pb::Message* const file_default_instances[] = { &::grpcIFrontEnd::_registerClientRequest_default_instance_._instance, @@ -2190,6 +2406,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 +2556,122 @@ 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" + "pcReturnValue\030\006 \001(\021\"\377\001\n\020backupMapRequest" "\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" + "\013accessToken\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\027\n\017m" + "ap_information\030\004 \001(\014\022\030\n\020cameraParameters" + "\030\005 \001(\014\022\022\n\ncoordinate\030\006 \001(\014\022\032\n\022covisibili" + "ty_graph\030\007 \001(\014\022\026\n\016identification\030\010 \001(\014\022\021" + "\n\tkeyframes\030\t \001(\014\022\022\n\npointcloud\030\n \001(\014\"\322\001" + "\n\021backupMapResponse\022\027\n\017map_information\030\001" + " \001(\014\022\030\n\020cameraParameters\030\002 \001(\014\022\022\n\ncoordi" + "nate\030\003 \001(\014\022\032\n\022covisibility_graph\030\004 \001(\014\022\026" + "\n\016identification\030\005 \001(\014\022\021\n\tkeyframes\030\006 \001(" + "\014\022\022\n\npointcloud\030\007 \001(\014\022\033\n\023xpcfGrpcReturnV" + "alue\030\010 \001(\021\"\200\002\n\021restoreMapRequest\022#\n\033grpc" + "ServerCompressionFormat\030\001 \001(\005\022\023\n\013accessT" + "oken\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\027\n\017map_infor" + "mation\030\004 \001(\014\022\030\n\020cameraParameters\030\005 \001(\014\022\022" + "\n\ncoordinate\030\006 \001(\014\022\032\n\022covisibility_graph" + "\030\007 \001(\014\022\026\n\016identification\030\010 \001(\014\022\021\n\tkeyfra" + "mes\030\t \001(\014\022\022\n\npointcloud\030\n \001(\014\"1\n\022restore" + "MapResponse\022\033\n\023xpcfGrpcReturnValue\030\001 \001(\021" + "\"\227\001\n\033requestMapProcessingRequest\022#\n\033grpc" + "ServerCompressionFormat\030\001 \001(\005\022\023\n\013accessT" + "oken\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\025\n\rresultMap" + "UUID\030\004 \001(\t\022\026\n\016processingType\030\005 \001(\021\";\n\034re" + "questMapProcessingResponse\022\033\n\023xpcfGrpcRe" + "turnValue\030\001 \001(\021\"\252\001\n\035getMapProcessingStat" + "usRequest\022#\n\033grpcServerCompressionFormat" + "\030\001 \001(\005\022\023\n\013accessToken\030\002 \001(\t\022\025\n\rresultMap" + "UUID\030\003 \001(\t\022\016\n\006status\030\004 \001(\021\022\026\n\016processing" + "Type\030\005 \001(\021\022\020\n\010progress\030\006 \001(\002\"w\n\036getMapPr" + "ocessingStatusResponse\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\"\231\001\n\033getMap" + "ProcessingDataRequest\022#\n\033grpcServerCompr" + "essionFormat\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\034getMapProce" + "ssingDataResponse\022\022\n\npointCloud\030\001 \001(\014\022\025\n" + "\rkeyframePoses\030\002 \001(\014\022\033\n\023xpcfGrpcReturnVa" + "lue\030\003 \001(\0212\351\027\n\024grpcIFrontEndService\022_\n\016re" + "gisterClient\022$.grpcIFrontEnd.registerCli" + "entRequest\032%.grpcIFrontEnd.registerClien" + "tResponse\"\000\022e\n\020unregisterClient\022&.grpcIF" + "rontEnd.unregisterClientRequest\032\'.grpcIF" + "rontEnd.unregisterClientResponse\"\000\022h\n\021ge" + "tAllClientsUUID\022\'.grpcIFrontEnd.getAllCl" + "ientsUUIDRequest\032(.grpcIFrontEnd.getAllC" + "lientsUUIDResponse\"\000\022\\\n\rgetDeviceInfo\022#." + "grpcIFrontEnd.getDeviceInfoRequest\032$.grp" + "cIFrontEnd.getDeviceInfoResponse\"\000\022S\n\nin" + "it_grpc0\022 .grpcIFrontEnd.init_grpc0Reque" + "st\032!.grpcIFrontEnd.init_grpc0Response\"\000\022" + "S\n\ninit_grpc1\022 .grpcIFrontEnd.init_grpc1" + "Request\032!.grpcIFrontEnd.init_grpc1Respon" + "se\"\000\022D\n\005start\022\033.grpcIFrontEnd.startReque" + "st\032\034.grpcIFrontEnd.startResponse\"\000\022A\n\004st" + "op\022\032.grpcIFrontEnd.stopRequest\032\033.grpcIFr" + "ontEnd.stopResponse\"\000\022h\n\021getProcessingMo" + "de\022\'.grpcIFrontEnd.getProcessingModeRequ" + "est\032(.grpcIFrontEnd.getProcessingModeRes" + "ponse\"\000\022\200\001\n\031setCameraParameters_grpc0\022/." + "grpcIFrontEnd.setCameraParameters_grpc0R" + "equest\0320.grpcIFrontEnd.setCameraParamete" + "rs_grpc0Response\"\000\022\200\001\n\031setCameraParamete" + "rs_grpc1\022/.grpcIFrontEnd.setCameraParame" + "ters_grpc1Request\0320.grpcIFrontEnd.setCam" + "eraParameters_grpc1Response\"\000\022\203\001\n\032setRec" + "tificationParameters\0220.grpcIFrontEnd.set" + "RectificationParametersRequest\0321.grpcIFr" + "ontEnd.setRectificationParametersRespons" + "e\"\000\022n\n\023getCameraParameters\022).grpcIFrontE" + "nd.getCameraParametersRequest\032*.grpcIFro" + "ntEnd.getCameraParametersResponse\"\000\022n\n\023i" + "mageProcessRequest\022).grpcIFrontEnd.image" + "ProcessRequestRequest\032*.grpcIFrontEnd.im" + "ageProcessRequestResponse\"\000\022t\n\025getMappin" + "gDataRequest\022+.grpcIFrontEnd.getMappingD" + "ataRequestRequest\032,.grpcIFrontEnd.getMap" + "pingDataRequestResponse\"\000\022\\\n\rgetClientPo" + "se\022#.grpcIFrontEnd.getClientPoseRequest\032" + "$.grpcIFrontEnd.getClientPoseResponse\"\000\022" + "P\n\tcreateMap\022\037.grpcIFrontEnd.createMapRe" + "quest\032 .grpcIFrontEnd.createMapResponse\"" + "\000\022P\n\tdeleteMap\022\037.grpcIFrontEnd.deleteMap" + "Request\032 .grpcIFrontEnd.deleteMapRespons" + "e\"\000\022_\n\016getAllMapsUUID\022$.grpcIFrontEnd.ge" + "tAllMapsUUIDRequest\032%.grpcIFrontEnd.getA" + "llMapsUUIDResponse\"\000\022e\n\020getClientMapUUID" + "\022&.grpcIFrontEnd.getClientMapUUIDRequest" + "\032\'.grpcIFrontEnd.getClientMapUUIDRespons" + "e\"\000\022n\n\023getClientInfoForMap\022).grpcIFrontE" + "nd.getClientInfoForMapRequest\032*.grpcIFro" + "ntEnd.getClientInfoForMapResponse\"\000\022\\\n\rg" + "etMapRequest\022#.grpcIFrontEnd.getMapReque" + "stRequest\032$.grpcIFrontEnd.getMapRequestR" + "esponse\"\000\022\\\n\rsetMapRequest\022#.grpcIFrontE" + "nd.setMapRequestRequest\032$.grpcIFrontEnd." + "setMapRequestResponse\"\000\022q\n\024getPointCloud" + "Request\022*.grpcIFrontEnd.getPointCloudReq" + "uestRequest\032+.grpcIFrontEnd.getPointClou" + "dRequestResponse\"\000\022S\n\ngetMapInfo\022 .grpcI" + "FrontEnd.getMapInfoRequest\032!.grpcIFrontE" + "nd.getMapInfoResponse\"\000\022P\n\tbackupMap\022\037.g" + "rpcIFrontEnd.backupMapRequest\032 .grpcIFro" + "ntEnd.backupMapResponse\"\000\022S\n\nrestoreMap\022" + " .grpcIFrontEnd.restoreMapRequest\032!.grpc" + "IFrontEnd.restoreMapResponse\"\000\022q\n\024reques" + "tMapProcessing\022*.grpcIFrontEnd.requestMa" + "pProcessingRequest\032+.grpcIFrontEnd.reque" + "stMapProcessingResponse\"\000\022w\n\026getMapProce" + "ssingStatus\022,.grpcIFrontEnd.getMapProces" + "singStatusRequest\032-.grpcIFrontEnd.getMap" + "ProcessingStatusResponse\"\000\022q\n\024getMapProc" + "essingData\022*.grpcIFrontEnd.getMapProcess" + "ingDataRequest\032+.grpcIFrontEnd.getMapPro" + "cessingDataResponse\"\000b\006proto3" }; static const ::_pbi::DescriptorTable* const descriptor_table_grpcIFrontEndService_2eproto_deps[1] = { @@ -2438,13 +2681,13 @@ static ::absl::once_flag descriptor_table_grpcIFrontEndService_2eproto_once; PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_grpcIFrontEndService_2eproto = { false, false, - 9161, + 10109, 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 +15239,1420 @@ ::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_), + map_information_(arena, from.map_information_), + cameraparameters_(arena, from.cameraparameters_), + coordinate_(arena, from.coordinate_), + covisibility_graph_(arena, from.covisibility_graph_), + identification_(arena, from.identification_), + keyframes_(arena, from.keyframes_), + pointcloud_(arena, from.pointcloud_), + _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), + map_information_(arena), + cameraparameters_(arena), + coordinate_(arena), + covisibility_graph_(arena), + identification_(arena), + keyframes_(arena), + pointcloud_(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_.map_information_.Destroy(); + _impl_.cameraparameters_.Destroy(); + _impl_.coordinate_.Destroy(); + _impl_.covisibility_graph_.Destroy(); + _impl_.identification_.Destroy(); + _impl_.keyframes_.Destroy(); + _impl_.pointcloud_.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<4, 10, 0, 65, 2> backupMapRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 10, 120, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294966272, // skipmap + offsetof(decltype(_table_), field_entries), + 10, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + &_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 + }, {{ + {::_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 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_)}}, + // bytes map_information = 4; + {::_pbi::TcParser::FastBS1, + {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.map_information_)}}, + // bytes cameraParameters = 5; + {::_pbi::TcParser::FastBS1, + {42, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.cameraparameters_)}}, + // bytes coordinate = 6; + {::_pbi::TcParser::FastBS1, + {50, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.coordinate_)}}, + // bytes covisibility_graph = 7; + {::_pbi::TcParser::FastBS1, + {58, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.covisibility_graph_)}}, + // bytes identification = 8; + {::_pbi::TcParser::FastBS1, + {66, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.identification_)}}, + // bytes keyframes = 9; + {::_pbi::TcParser::FastBS1, + {74, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.keyframes_)}}, + // bytes pointcloud = 10; + {::_pbi::TcParser::FastBS1, + {82, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.pointcloud_)}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 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 map_information = 4; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.map_information_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes cameraParameters = 5; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.cameraparameters_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes coordinate = 6; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.coordinate_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes covisibility_graph = 7; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.covisibility_graph_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes identification = 8; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.identification_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes keyframes = 9; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.keyframes_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes pointcloud = 10; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.pointcloud_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + }}, + // no aux_entries + {{ + "\36\0\13\7\0\0\0\0\0\0\0\0\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_.map_information_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); + _impl_.coordinate_.ClearToEmpty(); + _impl_.covisibility_graph_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); + _impl_.keyframes_.ClearToEmpty(); + _impl_.pointcloud_.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 map_information = 4; + if (!this->_internal_map_information().empty()) { + const std::string& _s = this->_internal_map_information(); + target = stream->WriteBytesMaybeAliased(4, _s, target); + } + + // bytes cameraParameters = 5; + if (!this->_internal_cameraparameters().empty()) { + const std::string& _s = this->_internal_cameraparameters(); + target = stream->WriteBytesMaybeAliased(5, _s, target); + } + + // bytes coordinate = 6; + if (!this->_internal_coordinate().empty()) { + const std::string& _s = this->_internal_coordinate(); + target = stream->WriteBytesMaybeAliased(6, _s, target); + } + + // bytes covisibility_graph = 7; + if (!this->_internal_covisibility_graph().empty()) { + const std::string& _s = this->_internal_covisibility_graph(); + target = stream->WriteBytesMaybeAliased(7, _s, target); + } + + // bytes identification = 8; + if (!this->_internal_identification().empty()) { + const std::string& _s = this->_internal_identification(); + target = stream->WriteBytesMaybeAliased(8, _s, target); + } + + // bytes keyframes = 9; + if (!this->_internal_keyframes().empty()) { + const std::string& _s = this->_internal_keyframes(); + target = stream->WriteBytesMaybeAliased(9, _s, target); + } + + // bytes pointcloud = 10; + if (!this->_internal_pointcloud().empty()) { + const std::string& _s = this->_internal_pointcloud(); + target = stream->WriteBytesMaybeAliased(10, _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 map_information = 4; + if (!this->_internal_map_information().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_map_information()); + } + + // bytes cameraParameters = 5; + if (!this->_internal_cameraparameters().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_cameraparameters()); + } + + // bytes coordinate = 6; + if (!this->_internal_coordinate().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_coordinate()); + } + + // bytes covisibility_graph = 7; + if (!this->_internal_covisibility_graph().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_covisibility_graph()); + } + + // bytes identification = 8; + if (!this->_internal_identification().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_identification()); + } + + // bytes keyframes = 9; + if (!this->_internal_keyframes().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_keyframes()); + } + + // bytes pointcloud = 10; + if (!this->_internal_pointcloud().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_pointcloud()); + } + + // 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_map_information().empty()) { + _this->_internal_set_map_information(from._internal_map_information()); + } + if (!from._internal_cameraparameters().empty()) { + _this->_internal_set_cameraparameters(from._internal_cameraparameters()); + } + if (!from._internal_coordinate().empty()) { + _this->_internal_set_coordinate(from._internal_coordinate()); + } + if (!from._internal_covisibility_graph().empty()) { + _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); + } + if (!from._internal_identification().empty()) { + _this->_internal_set_identification(from._internal_identification()); + } + if (!from._internal_keyframes().empty()) { + _this->_internal_set_keyframes(from._internal_keyframes()); + } + if (!from._internal_pointcloud().empty()) { + _this->_internal_set_pointcloud(from._internal_pointcloud()); + } + 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_.map_information_, &other->_impl_.map_information_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, 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) + : map_information_(arena, from.map_information_), + cameraparameters_(arena, from.cameraparameters_), + coordinate_(arena, from.coordinate_), + covisibility_graph_(arena, from.covisibility_graph_), + identification_(arena, from.identification_), + keyframes_(arena, from.keyframes_), + pointcloud_(arena, from.pointcloud_), + _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) + : map_information_(arena), + cameraparameters_(arena), + coordinate_(arena), + covisibility_graph_(arena), + identification_(arena), + keyframes_(arena), + pointcloud_(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_.map_information_.Destroy(); + _impl_.cameraparameters_.Destroy(); + _impl_.coordinate_.Destroy(); + _impl_.covisibility_graph_.Destroy(); + _impl_.identification_.Destroy(); + _impl_.keyframes_.Destroy(); + _impl_.pointcloud_.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<3, 8, 0, 0, 2> backupMapResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 8, 56, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967040, // skipmap + offsetof(decltype(_table_), field_entries), + 8, // 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 = 8; + {::_pbi::TcParser::FastZ32S1, + {64, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, + // bytes map_information = 1; + {::_pbi::TcParser::FastBS1, + {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.map_information_)}}, + // bytes cameraParameters = 2; + {::_pbi::TcParser::FastBS1, + {18, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.cameraparameters_)}}, + // bytes coordinate = 3; + {::_pbi::TcParser::FastBS1, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.coordinate_)}}, + // bytes covisibility_graph = 4; + {::_pbi::TcParser::FastBS1, + {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.covisibility_graph_)}}, + // bytes identification = 5; + {::_pbi::TcParser::FastBS1, + {42, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.identification_)}}, + // bytes keyframes = 6; + {::_pbi::TcParser::FastBS1, + {50, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.keyframes_)}}, + // bytes pointcloud = 7; + {::_pbi::TcParser::FastBS1, + {58, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.pointcloud_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // bytes map_information = 1; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.map_information_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes cameraParameters = 2; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.cameraparameters_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes coordinate = 3; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.coordinate_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes covisibility_graph = 4; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.covisibility_graph_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes identification = 5; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.identification_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes keyframes = 6; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.keyframes_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes pointcloud = 7; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.pointcloud_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // sint32 xpcfGrpcReturnValue = 8; + {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_.map_information_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); + _impl_.coordinate_.ClearToEmpty(); + _impl_.covisibility_graph_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); + _impl_.keyframes_.ClearToEmpty(); + _impl_.pointcloud_.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 map_information = 1; + if (!this->_internal_map_information().empty()) { + const std::string& _s = this->_internal_map_information(); + target = stream->WriteBytesMaybeAliased(1, _s, target); + } + + // bytes cameraParameters = 2; + if (!this->_internal_cameraparameters().empty()) { + const std::string& _s = this->_internal_cameraparameters(); + target = stream->WriteBytesMaybeAliased(2, _s, target); + } + + // bytes coordinate = 3; + if (!this->_internal_coordinate().empty()) { + const std::string& _s = this->_internal_coordinate(); + target = stream->WriteBytesMaybeAliased(3, _s, target); + } + + // bytes covisibility_graph = 4; + if (!this->_internal_covisibility_graph().empty()) { + const std::string& _s = this->_internal_covisibility_graph(); + target = stream->WriteBytesMaybeAliased(4, _s, target); + } + + // bytes identification = 5; + if (!this->_internal_identification().empty()) { + const std::string& _s = this->_internal_identification(); + target = stream->WriteBytesMaybeAliased(5, _s, target); + } + + // bytes keyframes = 6; + if (!this->_internal_keyframes().empty()) { + const std::string& _s = this->_internal_keyframes(); + target = stream->WriteBytesMaybeAliased(6, _s, target); + } + + // bytes pointcloud = 7; + if (!this->_internal_pointcloud().empty()) { + const std::string& _s = this->_internal_pointcloud(); + target = stream->WriteBytesMaybeAliased(7, _s, target); + } + + // sint32 xpcfGrpcReturnValue = 8; + if (this->_internal_xpcfgrpcreturnvalue() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 8, 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 map_information = 1; + if (!this->_internal_map_information().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_map_information()); + } + + // bytes cameraParameters = 2; + if (!this->_internal_cameraparameters().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_cameraparameters()); + } + + // bytes coordinate = 3; + if (!this->_internal_coordinate().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_coordinate()); + } + + // bytes covisibility_graph = 4; + if (!this->_internal_covisibility_graph().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_covisibility_graph()); + } + + // bytes identification = 5; + if (!this->_internal_identification().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_identification()); + } + + // bytes keyframes = 6; + if (!this->_internal_keyframes().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_keyframes()); + } + + // bytes pointcloud = 7; + if (!this->_internal_pointcloud().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_pointcloud()); + } + + // sint32 xpcfGrpcReturnValue = 8; + 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_map_information().empty()) { + _this->_internal_set_map_information(from._internal_map_information()); + } + if (!from._internal_cameraparameters().empty()) { + _this->_internal_set_cameraparameters(from._internal_cameraparameters()); + } + if (!from._internal_coordinate().empty()) { + _this->_internal_set_coordinate(from._internal_coordinate()); + } + if (!from._internal_covisibility_graph().empty()) { + _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); + } + if (!from._internal_identification().empty()) { + _this->_internal_set_identification(from._internal_identification()); + } + if (!from._internal_keyframes().empty()) { + _this->_internal_set_keyframes(from._internal_keyframes()); + } + if (!from._internal_pointcloud().empty()) { + _this->_internal_set_pointcloud(from._internal_pointcloud()); + } + 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_.map_information_, &other->_impl_.map_information_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, 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_), + map_information_(arena, from.map_information_), + cameraparameters_(arena, from.cameraparameters_), + coordinate_(arena, from.coordinate_), + covisibility_graph_(arena, from.covisibility_graph_), + identification_(arena, from.identification_), + keyframes_(arena, from.keyframes_), + pointcloud_(arena, from.pointcloud_), + _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), + map_information_(arena), + cameraparameters_(arena), + coordinate_(arena), + covisibility_graph_(arena), + identification_(arena), + keyframes_(arena), + pointcloud_(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_.map_information_.Destroy(); + _impl_.cameraparameters_.Destroy(); + _impl_.coordinate_.Destroy(); + _impl_.covisibility_graph_.Destroy(); + _impl_.identification_.Destroy(); + _impl_.keyframes_.Destroy(); + _impl_.pointcloud_.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<4, 10, 0, 66, 2> restoreMapRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 10, 120, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294966272, // skipmap + offsetof(decltype(_table_), field_entries), + 10, // num_field_entries + 0, // num_aux_entries + offsetof(decltype(_table_), field_names), // no aux_entries + &_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 + }, {{ + {::_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 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_)}}, + // bytes map_information = 4; + {::_pbi::TcParser::FastBS1, + {34, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.map_information_)}}, + // bytes cameraParameters = 5; + {::_pbi::TcParser::FastBS1, + {42, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.cameraparameters_)}}, + // bytes coordinate = 6; + {::_pbi::TcParser::FastBS1, + {50, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.coordinate_)}}, + // bytes covisibility_graph = 7; + {::_pbi::TcParser::FastBS1, + {58, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.covisibility_graph_)}}, + // bytes identification = 8; + {::_pbi::TcParser::FastBS1, + {66, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.identification_)}}, + // bytes keyframes = 9; + {::_pbi::TcParser::FastBS1, + {74, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.keyframes_)}}, + // bytes pointcloud = 10; + {::_pbi::TcParser::FastBS1, + {82, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.pointcloud_)}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 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 map_information = 4; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.map_information_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes cameraParameters = 5; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.cameraparameters_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes coordinate = 6; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.coordinate_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes covisibility_graph = 7; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.covisibility_graph_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes identification = 8; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.identification_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes keyframes = 9; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.keyframes_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes pointcloud = 10; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.pointcloud_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + }}, + // no aux_entries + {{ + "\37\0\13\7\0\0\0\0\0\0\0\0\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_.map_information_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); + _impl_.coordinate_.ClearToEmpty(); + _impl_.covisibility_graph_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); + _impl_.keyframes_.ClearToEmpty(); + _impl_.pointcloud_.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 map_information = 4; + if (!this->_internal_map_information().empty()) { + const std::string& _s = this->_internal_map_information(); + target = stream->WriteBytesMaybeAliased(4, _s, target); + } + + // bytes cameraParameters = 5; + if (!this->_internal_cameraparameters().empty()) { + const std::string& _s = this->_internal_cameraparameters(); + target = stream->WriteBytesMaybeAliased(5, _s, target); + } + + // bytes coordinate = 6; + if (!this->_internal_coordinate().empty()) { + const std::string& _s = this->_internal_coordinate(); + target = stream->WriteBytesMaybeAliased(6, _s, target); + } + + // bytes covisibility_graph = 7; + if (!this->_internal_covisibility_graph().empty()) { + const std::string& _s = this->_internal_covisibility_graph(); + target = stream->WriteBytesMaybeAliased(7, _s, target); + } + + // bytes identification = 8; + if (!this->_internal_identification().empty()) { + const std::string& _s = this->_internal_identification(); + target = stream->WriteBytesMaybeAliased(8, _s, target); + } + + // bytes keyframes = 9; + if (!this->_internal_keyframes().empty()) { + const std::string& _s = this->_internal_keyframes(); + target = stream->WriteBytesMaybeAliased(9, _s, target); + } + + // bytes pointcloud = 10; + if (!this->_internal_pointcloud().empty()) { + const std::string& _s = this->_internal_pointcloud(); + target = stream->WriteBytesMaybeAliased(10, _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 map_information = 4; + if (!this->_internal_map_information().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_map_information()); + } + + // bytes cameraParameters = 5; + if (!this->_internal_cameraparameters().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_cameraparameters()); + } + + // bytes coordinate = 6; + if (!this->_internal_coordinate().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_coordinate()); + } + + // bytes covisibility_graph = 7; + if (!this->_internal_covisibility_graph().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_covisibility_graph()); + } + + // bytes identification = 8; + if (!this->_internal_identification().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_identification()); + } + + // bytes keyframes = 9; + if (!this->_internal_keyframes().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_keyframes()); + } + + // bytes pointcloud = 10; + if (!this->_internal_pointcloud().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_pointcloud()); + } + + // 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_map_information().empty()) { + _this->_internal_set_map_information(from._internal_map_information()); + } + if (!from._internal_cameraparameters().empty()) { + _this->_internal_set_cameraparameters(from._internal_cameraparameters()); + } + if (!from._internal_coordinate().empty()) { + _this->_internal_set_coordinate(from._internal_coordinate()); + } + if (!from._internal_covisibility_graph().empty()) { + _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); + } + if (!from._internal_identification().empty()) { + _this->_internal_set_identification(from._internal_identification()); + } + if (!from._internal_keyframes().empty()) { + _this->_internal_set_keyframes(from._internal_keyframes()); + } + if (!from._internal_pointcloud().empty()) { + _this->_internal_set_pointcloud(from._internal_pointcloud()); + } + 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_.map_information_, &other->_impl_.map_information_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, 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..f7f5af2 100644 --- a/gen/src/grpcIMapsManagerService.pb.cc +++ b/gen/src/grpcIMapsManagerService.pb.cc @@ -69,6 +69,68 @@ 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()), + map_information_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + cameraparameters_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + coordinate_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + covisibility_graph_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + identification_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + keyframes_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + pointcloud_( + &::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 +639,89 @@ struct createMapRequestDefaultTypeInternal { PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 createMapRequestDefaultTypeInternal _createMapRequest_default_instance_; + +inline constexpr backupMapResponse::Impl_::Impl_( + ::_pbi::ConstantInitialized) noexcept + : map_information_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + cameraparameters_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + coordinate_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + covisibility_graph_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + identification_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + keyframes_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + pointcloud_( + &::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()), + map_information_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + cameraparameters_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + coordinate_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + covisibility_graph_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + identification_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + keyframes_( + &::google::protobuf::internal::fixed_address_empty_string, + ::_pbi::ConstantInitialized()), + pointcloud_( + &::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 +921,65 @@ 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_.map_information_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.cameraparameters_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.coordinate_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.covisibility_graph_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.identification_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.keyframes_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.pointcloud_), + ~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_.map_information_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.cameraparameters_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.coordinate_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.covisibility_graph_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.identification_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.keyframes_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.pointcloud_), + 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_.map_information_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.cameraparameters_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.coordinate_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.covisibility_graph_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.identification_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.keyframes_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.pointcloud_), + ~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 +1070,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)}, + {207, -1, -1, sizeof(::grpcIMapsManager::backupMapResponse)}, + {223, -1, -1, sizeof(::grpcIMapsManager::restoreMapRequest)}, + {240, -1, -1, sizeof(::grpcIMapsManager::restoreMapResponse)}, + {249, -1, -1, sizeof(::grpcIMapsManager::requestMapProcessingRequest)}, + {261, -1, -1, sizeof(::grpcIMapsManager::requestMapProcessingResponse)}, + {270, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingStatusRequest)}, + {283, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingStatusResponse)}, + {295, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingDataRequest)}, + {307, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingDataResponse)}, }; static const ::_pb::Message* const file_default_instances[] = { &::grpcIMapsManager::_createMapRequest_default_instance_._instance, @@ -892,6 +1100,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 +1155,80 @@ 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" + "\006 \001(\021\"\352\001\n\020backupMapRequest\022#\n\033grpcServer" + "CompressionFormat\030\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t" + "\022\027\n\017map_information\030\003 \001(\014\022\030\n\020cameraParam" + "eters\030\004 \001(\014\022\022\n\ncoordinate\030\005 \001(\014\022\032\n\022covis" + "ibility_graph\030\006 \001(\014\022\026\n\016identification\030\007 " + "\001(\014\022\021\n\tkeyframes\030\010 \001(\014\022\022\n\npointcloud\030\t \001" + "(\014\"\322\001\n\021backupMapResponse\022\027\n\017map_informat" + "ion\030\001 \001(\014\022\030\n\020cameraParameters\030\002 \001(\014\022\022\n\nc" + "oordinate\030\003 \001(\014\022\032\n\022covisibility_graph\030\004 " + "\001(\014\022\026\n\016identification\030\005 \001(\014\022\021\n\tkeyframes" + "\030\006 \001(\014\022\022\n\npointcloud\030\007 \001(\014\022\033\n\023xpcfGrpcRe" + "turnValue\030\010 \001(\021\"\353\001\n\021restoreMapRequest\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" + "pUUID\030\002 \001(\t\022\027\n\017map_information\030\003 \001(\014\022\030\n\020" + "cameraParameters\030\004 \001(\014\022\022\n\ncoordinate\030\005 \001" + "(\014\022\032\n\022covisibility_graph\030\006 \001(\014\022\026\n\016identi" + "fication\030\007 \001(\014\022\021\n\tkeyframes\030\010 \001(\014\022\022\n\npoi" + "ntcloud\030\t \001(\014\"1\n\022restoreMapResponse\022\033\n\023x" + "pcfGrpcReturnValue\030\001 \001(\021\"\202\001\n\033requestMapP" + "rocessingRequest\022#\n\033grpcServerCompressio" + "nFormat\030\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t\022\025\n\rresult" + "MapUUID\030\003 \001(\t\022\026\n\016processingType\030\004 \001(\021\";\n" + "\034requestMapProcessingResponse\022\033\n\023xpcfGrp" + "cReturnValue\030\001 \001(\021\"\225\001\n\035getMapProcessingS" + "tatusRequest\022#\n\033grpcServerCompressionFor" + "mat\030\001 \001(\005\022\025\n\rresultMapUUID\030\002 \001(\t\022\016\n\006stat" + "us\030\003 \001(\021\022\026\n\016processingType\030\004 \001(\021\022\020\n\010prog" + "ress\030\005 \001(\002\"w\n\036getMapProcessingStatusResp" + "onse\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\023xpcfGrpcReturn" + "Value\030\004 \001(\021\"\204\001\n\033getMapProcessingDataRequ" + "est\022#\n\033grpcServerCompressionFormat\030\001 \001(\005" + "\022\025\n\rresultMapUUID\030\002 \001(\t\022\022\n\npointCloud\030\003 " + "\001(\014\022\025\n\rkeyframePoses\030\004 \001(\014\"f\n\034getMapProc" + "essingDataResponse\022\022\n\npointCloud\030\001 \001(\014\022\025" + "\n\rkeyframePoses\030\002 \001(\014\022\033\n\023xpcfGrpcReturnV" + "alue\030\003 \001(\0212\312\013\n\027grpcIMapsManagerService\022V" + "\n\tcreateMap\022\".grpcIMapsManager.createMap" + "Request\032#.grpcIMapsManager.createMapResp" + "onse\"\000\022V\n\tdeleteMap\022\".grpcIMapsManager.d" + "eleteMapRequest\032#.grpcIMapsManager.delet" + "eMapResponse\"\000\022Y\n\ngetAllMaps\022#.grpcIMaps" + "Manager.getAllMapsRequest\032$.grpcIMapsMan" + "ager.getAllMapsResponse\"\000\022q\n\022increaseMap" + "Clients\022+.grpcIMapsManager.increaseMapCl" + "ientsRequest\032,.grpcIMapsManager.increase" + "MapClientsResponse\"\000\022q\n\022decreaseMapClien" + "ts\022+.grpcIMapsManager.decreaseMapClients" + "Request\032,.grpcIMapsManager.decreaseMapCl" + "ientsResponse\"\000\022b\n\rgetMapRequest\022&.grpcI" + "MapsManager.getMapRequestRequest\032\'.grpcI" + "MapsManager.getMapRequestResponse\"\000\022b\n\rs" + "etMapRequest\022&.grpcIMapsManager.setMapRe" + "questRequest\032\'.grpcIMapsManager.setMapRe" + "questResponse\"\000\022w\n\024getPointCloudRequest\022" + "-.grpcIMapsManager.getPointCloudRequestR" + "equest\032..grpcIMapsManager.getPointCloudR" + "equestResponse\"\000\022Y\n\ngetMapInfo\022#.grpcIMa" + "psManager.getMapInfoRequest\032$.grpcIMapsM" + "anager.getMapInfoResponse\"\000\022V\n\tbackupMap" + "\022\".grpcIMapsManager.backupMapRequest\032#.g" + "rpcIMapsManager.backupMapResponse\"\000\022Y\n\nr" + "estoreMap\022#.grpcIMapsManager.restoreMapR" + "equest\032$.grpcIMapsManager.restoreMapResp" + "onse\"\000\022w\n\024requestMapProcessing\022-.grpcIMa" + "psManager.requestMapProcessingRequest\032.." + "grpcIMapsManager.requestMapProcessingRes" + "ponse\"\000\022}\n\026getMapProcessingStatus\022/.grpc" + "IMapsManager.getMapProcessingStatusReque" + "st\0320.grpcIMapsManager.getMapProcessingSt" + "atusResponse\"\000\022w\n\024getMapProcessingData\022-" + ".grpcIMapsManager.getMapProcessingDataRe" + "quest\032..grpcIMapsManager.getMapProcessin" + "gDataResponse\"\000b\006proto3" }; static const ::_pbi::DescriptorTable* const descriptor_table_grpcIMapsManagerService_2eproto_deps[1] = { @@ -1003,13 +1238,13 @@ static ::absl::once_flag descriptor_table_grpcIMapsManagerService_2eproto_once; PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_grpcIMapsManagerService_2eproto = { false, false, - 3705, + 4623, 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 +5380,1364 @@ ::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_), + map_information_(arena, from.map_information_), + cameraparameters_(arena, from.cameraparameters_), + coordinate_(arena, from.coordinate_), + covisibility_graph_(arena, from.covisibility_graph_), + identification_(arena, from.identification_), + keyframes_(arena, from.keyframes_), + pointcloud_(arena, from.pointcloud_), + _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), + map_information_(arena), + cameraparameters_(arena), + coordinate_(arena), + covisibility_graph_(arena), + identification_(arena), + keyframes_(arena), + pointcloud_(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_.map_information_.Destroy(); + _impl_.cameraparameters_.Destroy(); + _impl_.coordinate_.Destroy(); + _impl_.covisibility_graph_.Destroy(); + _impl_.identification_.Destroy(); + _impl_.keyframes_.Destroy(); + _impl_.pointcloud_.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<4, 9, 0, 57, 2> backupMapRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 9, 120, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294966784, // skipmap + offsetof(decltype(_table_), field_entries), + 9, // 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 map_information = 3; + {::_pbi::TcParser::FastBS1, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.map_information_)}}, + // bytes cameraParameters = 4; + {::_pbi::TcParser::FastBS1, + {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.cameraparameters_)}}, + // bytes coordinate = 5; + {::_pbi::TcParser::FastBS1, + {42, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.coordinate_)}}, + // bytes covisibility_graph = 6; + {::_pbi::TcParser::FastBS1, + {50, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.covisibility_graph_)}}, + // bytes identification = 7; + {::_pbi::TcParser::FastBS1, + {58, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.identification_)}}, + // bytes keyframes = 8; + {::_pbi::TcParser::FastBS1, + {66, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.keyframes_)}}, + // bytes pointcloud = 9; + {::_pbi::TcParser::FastBS1, + {74, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.pointcloud_)}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 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 map_information = 3; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.map_information_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes cameraParameters = 4; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.cameraparameters_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes coordinate = 5; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.coordinate_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes covisibility_graph = 6; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.covisibility_graph_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes identification = 7; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.identification_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes keyframes = 8; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.keyframes_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes pointcloud = 9; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.pointcloud_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + }}, + // no aux_entries + {{ + "\41\0\7\0\0\0\0\0\0\0\0\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_.map_information_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); + _impl_.coordinate_.ClearToEmpty(); + _impl_.covisibility_graph_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); + _impl_.keyframes_.ClearToEmpty(); + _impl_.pointcloud_.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 map_information = 3; + if (!this->_internal_map_information().empty()) { + const std::string& _s = this->_internal_map_information(); + target = stream->WriteBytesMaybeAliased(3, _s, target); + } + + // bytes cameraParameters = 4; + if (!this->_internal_cameraparameters().empty()) { + const std::string& _s = this->_internal_cameraparameters(); + target = stream->WriteBytesMaybeAliased(4, _s, target); + } + + // bytes coordinate = 5; + if (!this->_internal_coordinate().empty()) { + const std::string& _s = this->_internal_coordinate(); + target = stream->WriteBytesMaybeAliased(5, _s, target); + } + + // bytes covisibility_graph = 6; + if (!this->_internal_covisibility_graph().empty()) { + const std::string& _s = this->_internal_covisibility_graph(); + target = stream->WriteBytesMaybeAliased(6, _s, target); + } + + // bytes identification = 7; + if (!this->_internal_identification().empty()) { + const std::string& _s = this->_internal_identification(); + target = stream->WriteBytesMaybeAliased(7, _s, target); + } + + // bytes keyframes = 8; + if (!this->_internal_keyframes().empty()) { + const std::string& _s = this->_internal_keyframes(); + target = stream->WriteBytesMaybeAliased(8, _s, target); + } + + // bytes pointcloud = 9; + if (!this->_internal_pointcloud().empty()) { + const std::string& _s = this->_internal_pointcloud(); + target = stream->WriteBytesMaybeAliased(9, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end: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 map_information = 3; + if (!this->_internal_map_information().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_map_information()); + } + + // bytes cameraParameters = 4; + if (!this->_internal_cameraparameters().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_cameraparameters()); + } + + // bytes coordinate = 5; + if (!this->_internal_coordinate().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_coordinate()); + } + + // bytes covisibility_graph = 6; + if (!this->_internal_covisibility_graph().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_covisibility_graph()); + } + + // bytes identification = 7; + if (!this->_internal_identification().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_identification()); + } + + // bytes keyframes = 8; + if (!this->_internal_keyframes().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_keyframes()); + } + + // bytes pointcloud = 9; + if (!this->_internal_pointcloud().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_pointcloud()); + } + + // 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_map_information().empty()) { + _this->_internal_set_map_information(from._internal_map_information()); + } + if (!from._internal_cameraparameters().empty()) { + _this->_internal_set_cameraparameters(from._internal_cameraparameters()); + } + if (!from._internal_coordinate().empty()) { + _this->_internal_set_coordinate(from._internal_coordinate()); + } + if (!from._internal_covisibility_graph().empty()) { + _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); + } + if (!from._internal_identification().empty()) { + _this->_internal_set_identification(from._internal_identification()); + } + if (!from._internal_keyframes().empty()) { + _this->_internal_set_keyframes(from._internal_keyframes()); + } + if (!from._internal_pointcloud().empty()) { + _this->_internal_set_pointcloud(from._internal_pointcloud()); + } + 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_.map_information_, &other->_impl_.map_information_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, 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) + : map_information_(arena, from.map_information_), + cameraparameters_(arena, from.cameraparameters_), + coordinate_(arena, from.coordinate_), + covisibility_graph_(arena, from.covisibility_graph_), + identification_(arena, from.identification_), + keyframes_(arena, from.keyframes_), + pointcloud_(arena, from.pointcloud_), + _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) + : map_information_(arena), + cameraparameters_(arena), + coordinate_(arena), + covisibility_graph_(arena), + identification_(arena), + keyframes_(arena), + pointcloud_(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_.map_information_.Destroy(); + _impl_.cameraparameters_.Destroy(); + _impl_.coordinate_.Destroy(); + _impl_.covisibility_graph_.Destroy(); + _impl_.identification_.Destroy(); + _impl_.keyframes_.Destroy(); + _impl_.pointcloud_.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<3, 8, 0, 0, 2> backupMapResponse::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 8, 56, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294967040, // skipmap + offsetof(decltype(_table_), field_entries), + 8, // 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 = 8; + {::_pbi::TcParser::FastZ32S1, + {64, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, + // bytes map_information = 1; + {::_pbi::TcParser::FastBS1, + {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.map_information_)}}, + // bytes cameraParameters = 2; + {::_pbi::TcParser::FastBS1, + {18, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.cameraparameters_)}}, + // bytes coordinate = 3; + {::_pbi::TcParser::FastBS1, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.coordinate_)}}, + // bytes covisibility_graph = 4; + {::_pbi::TcParser::FastBS1, + {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.covisibility_graph_)}}, + // bytes identification = 5; + {::_pbi::TcParser::FastBS1, + {42, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.identification_)}}, + // bytes keyframes = 6; + {::_pbi::TcParser::FastBS1, + {50, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.keyframes_)}}, + // bytes pointcloud = 7; + {::_pbi::TcParser::FastBS1, + {58, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.pointcloud_)}}, + }}, {{ + 65535, 65535 + }}, {{ + // bytes map_information = 1; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.map_information_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes cameraParameters = 2; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.cameraparameters_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes coordinate = 3; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.coordinate_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes covisibility_graph = 4; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.covisibility_graph_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes identification = 5; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.identification_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes keyframes = 6; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.keyframes_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes pointcloud = 7; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.pointcloud_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // sint32 xpcfGrpcReturnValue = 8; + {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_.map_information_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); + _impl_.coordinate_.ClearToEmpty(); + _impl_.covisibility_graph_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); + _impl_.keyframes_.ClearToEmpty(); + _impl_.pointcloud_.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 map_information = 1; + if (!this->_internal_map_information().empty()) { + const std::string& _s = this->_internal_map_information(); + target = stream->WriteBytesMaybeAliased(1, _s, target); + } + + // bytes cameraParameters = 2; + if (!this->_internal_cameraparameters().empty()) { + const std::string& _s = this->_internal_cameraparameters(); + target = stream->WriteBytesMaybeAliased(2, _s, target); + } + + // bytes coordinate = 3; + if (!this->_internal_coordinate().empty()) { + const std::string& _s = this->_internal_coordinate(); + target = stream->WriteBytesMaybeAliased(3, _s, target); + } + + // bytes covisibility_graph = 4; + if (!this->_internal_covisibility_graph().empty()) { + const std::string& _s = this->_internal_covisibility_graph(); + target = stream->WriteBytesMaybeAliased(4, _s, target); + } + + // bytes identification = 5; + if (!this->_internal_identification().empty()) { + const std::string& _s = this->_internal_identification(); + target = stream->WriteBytesMaybeAliased(5, _s, target); + } + + // bytes keyframes = 6; + if (!this->_internal_keyframes().empty()) { + const std::string& _s = this->_internal_keyframes(); + target = stream->WriteBytesMaybeAliased(6, _s, target); + } + + // bytes pointcloud = 7; + if (!this->_internal_pointcloud().empty()) { + const std::string& _s = this->_internal_pointcloud(); + target = stream->WriteBytesMaybeAliased(7, _s, target); + } + + // sint32 xpcfGrpcReturnValue = 8; + if (this->_internal_xpcfgrpcreturnvalue() != 0) { + target = stream->EnsureSpace(target); + target = ::_pbi::WireFormatLite::WriteSInt32ToArray( + 8, 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 map_information = 1; + if (!this->_internal_map_information().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_map_information()); + } + + // bytes cameraParameters = 2; + if (!this->_internal_cameraparameters().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_cameraparameters()); + } + + // bytes coordinate = 3; + if (!this->_internal_coordinate().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_coordinate()); + } + + // bytes covisibility_graph = 4; + if (!this->_internal_covisibility_graph().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_covisibility_graph()); + } + + // bytes identification = 5; + if (!this->_internal_identification().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_identification()); + } + + // bytes keyframes = 6; + if (!this->_internal_keyframes().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_keyframes()); + } + + // bytes pointcloud = 7; + if (!this->_internal_pointcloud().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_pointcloud()); + } + + // sint32 xpcfGrpcReturnValue = 8; + 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_map_information().empty()) { + _this->_internal_set_map_information(from._internal_map_information()); + } + if (!from._internal_cameraparameters().empty()) { + _this->_internal_set_cameraparameters(from._internal_cameraparameters()); + } + if (!from._internal_coordinate().empty()) { + _this->_internal_set_coordinate(from._internal_coordinate()); + } + if (!from._internal_covisibility_graph().empty()) { + _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); + } + if (!from._internal_identification().empty()) { + _this->_internal_set_identification(from._internal_identification()); + } + if (!from._internal_keyframes().empty()) { + _this->_internal_set_keyframes(from._internal_keyframes()); + } + if (!from._internal_pointcloud().empty()) { + _this->_internal_set_pointcloud(from._internal_pointcloud()); + } + 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_.map_information_, &other->_impl_.map_information_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, 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_), + map_information_(arena, from.map_information_), + cameraparameters_(arena, from.cameraparameters_), + coordinate_(arena, from.coordinate_), + covisibility_graph_(arena, from.covisibility_graph_), + identification_(arena, from.identification_), + keyframes_(arena, from.keyframes_), + pointcloud_(arena, from.pointcloud_), + _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), + map_information_(arena), + cameraparameters_(arena), + coordinate_(arena), + covisibility_graph_(arena), + identification_(arena), + keyframes_(arena), + pointcloud_(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_.map_information_.Destroy(); + _impl_.cameraparameters_.Destroy(); + _impl_.coordinate_.Destroy(); + _impl_.covisibility_graph_.Destroy(); + _impl_.identification_.Destroy(); + _impl_.keyframes_.Destroy(); + _impl_.pointcloud_.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<4, 9, 0, 58, 2> restoreMapRequest::_table_ = { + { + 0, // no _has_bits_ + 0, // no _extensions_ + 9, 120, // max_field_number, fast_idx_mask + offsetof(decltype(_table_), field_lookup_table), + 4294966784, // skipmap + offsetof(decltype(_table_), field_entries), + 9, // 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 map_information = 3; + {::_pbi::TcParser::FastBS1, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.map_information_)}}, + // bytes cameraParameters = 4; + {::_pbi::TcParser::FastBS1, + {34, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.cameraparameters_)}}, + // bytes coordinate = 5; + {::_pbi::TcParser::FastBS1, + {42, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.coordinate_)}}, + // bytes covisibility_graph = 6; + {::_pbi::TcParser::FastBS1, + {50, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.covisibility_graph_)}}, + // bytes identification = 7; + {::_pbi::TcParser::FastBS1, + {58, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.identification_)}}, + // bytes keyframes = 8; + {::_pbi::TcParser::FastBS1, + {66, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.keyframes_)}}, + // bytes pointcloud = 9; + {::_pbi::TcParser::FastBS1, + {74, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.pointcloud_)}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + {::_pbi::TcParser::MiniParse, {}}, + }}, {{ + 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 map_information = 3; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.map_information_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes cameraParameters = 4; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.cameraparameters_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes coordinate = 5; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.coordinate_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes covisibility_graph = 6; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.covisibility_graph_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes identification = 7; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.identification_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes keyframes = 8; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.keyframes_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + // bytes pointcloud = 9; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.pointcloud_), 0, 0, + (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, + }}, + // no aux_entries + {{ + "\42\0\7\0\0\0\0\0\0\0\0\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_.map_information_.ClearToEmpty(); + _impl_.cameraparameters_.ClearToEmpty(); + _impl_.coordinate_.ClearToEmpty(); + _impl_.covisibility_graph_.ClearToEmpty(); + _impl_.identification_.ClearToEmpty(); + _impl_.keyframes_.ClearToEmpty(); + _impl_.pointcloud_.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 map_information = 3; + if (!this->_internal_map_information().empty()) { + const std::string& _s = this->_internal_map_information(); + target = stream->WriteBytesMaybeAliased(3, _s, target); + } + + // bytes cameraParameters = 4; + if (!this->_internal_cameraparameters().empty()) { + const std::string& _s = this->_internal_cameraparameters(); + target = stream->WriteBytesMaybeAliased(4, _s, target); + } + + // bytes coordinate = 5; + if (!this->_internal_coordinate().empty()) { + const std::string& _s = this->_internal_coordinate(); + target = stream->WriteBytesMaybeAliased(5, _s, target); + } + + // bytes covisibility_graph = 6; + if (!this->_internal_covisibility_graph().empty()) { + const std::string& _s = this->_internal_covisibility_graph(); + target = stream->WriteBytesMaybeAliased(6, _s, target); + } + + // bytes identification = 7; + if (!this->_internal_identification().empty()) { + const std::string& _s = this->_internal_identification(); + target = stream->WriteBytesMaybeAliased(7, _s, target); + } + + // bytes keyframes = 8; + if (!this->_internal_keyframes().empty()) { + const std::string& _s = this->_internal_keyframes(); + target = stream->WriteBytesMaybeAliased(8, _s, target); + } + + // bytes pointcloud = 9; + if (!this->_internal_pointcloud().empty()) { + const std::string& _s = this->_internal_pointcloud(); + target = stream->WriteBytesMaybeAliased(9, _s, target); + } + + if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { + target = + ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( + _internal_metadata_.unknown_fields<::google::protobuf::UnknownFieldSet>(::google::protobuf::UnknownFieldSet::default_instance), target, stream); + } + // @@protoc_insertion_point(serialize_to_array_end: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 map_information = 3; + if (!this->_internal_map_information().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_map_information()); + } + + // bytes cameraParameters = 4; + if (!this->_internal_cameraparameters().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_cameraparameters()); + } + + // bytes coordinate = 5; + if (!this->_internal_coordinate().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_coordinate()); + } + + // bytes covisibility_graph = 6; + if (!this->_internal_covisibility_graph().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_covisibility_graph()); + } + + // bytes identification = 7; + if (!this->_internal_identification().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_identification()); + } + + // bytes keyframes = 8; + if (!this->_internal_keyframes().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_keyframes()); + } + + // bytes pointcloud = 9; + if (!this->_internal_pointcloud().empty()) { + total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( + this->_internal_pointcloud()); + } + + // 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_map_information().empty()) { + _this->_internal_set_map_information(from._internal_map_information()); + } + if (!from._internal_cameraparameters().empty()) { + _this->_internal_set_cameraparameters(from._internal_cameraparameters()); + } + if (!from._internal_coordinate().empty()) { + _this->_internal_set_coordinate(from._internal_coordinate()); + } + if (!from._internal_covisibility_graph().empty()) { + _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); + } + if (!from._internal_identification().empty()) { + _this->_internal_set_identification(from._internal_identification()); + } + if (!from._internal_keyframes().empty()) { + _this->_internal_set_keyframes(from._internal_keyframes()); + } + if (!from._internal_pointcloud().empty()) { + _this->_internal_set_pointcloud(from._internal_pointcloud()); + } + 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_.map_information_, &other->_impl_.map_information_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, 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 From 15ba8cfb627e1da6b9493bf95c26245a33b43f2a Mon Sep 17 00:00:00 2001 From: ccutullic Date: Thu, 7 May 2026 15:38:23 +0200 Subject: [PATCH 2/3] feat: regenerate gRPC stubs to match backup/restore map methods changes --- gen/interfaces/IFrontEnd_grpcProxy.h | 4 +- gen/interfaces/IMapsManager_grpcProxy.h | 4 +- gen/interfaces/grpcIFrontEndService.pb.h | 1646 +++---------------- gen/interfaces/grpcIMapsManagerService.pb.h | 1586 ++---------------- gen/proto/grpcIFrontEndService.proto | 26 +- gen/proto/grpcIMapsManagerService.proto | 26 +- gen/src/IFrontEnd_grpcProxy.cpp | 28 +- gen/src/IFrontEnd_grpcServer.cpp | 28 +- gen/src/IMapsManager_grpcProxy.cpp | 28 +- gen/src/IMapsManager_grpcServer.cpp | 28 +- gen/src/grpcIFrontEndService.pb.cc | 952 +++-------- gen/src/grpcIMapsManagerService.pb.cc | 864 ++-------- 12 files changed, 770 insertions(+), 4450 deletions(-) diff --git a/gen/interfaces/IFrontEnd_grpcProxy.h b/gen/interfaces/IFrontEnd_grpcProxy.h index 28e21c2..70765cb 100644 --- a/gen/interfaces/IFrontEnd_grpcProxy.h +++ b/gen/interfaces/IFrontEnd_grpcProxy.h @@ -47,8 +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& map_information, std::vector& cameraParameters, std::vector& coordinate, std::vector& covisibility_graph, std::vector& identification, std::vector& keyframes, std::vector& pointcloud) const override; - SolAR::FrameworkReturnCode restoreMap(std::string const& accessToken, std::string const& mapUUID, std::vector const& map_information, std::vector const& cameraParameters, std::vector const& coordinate, std::vector const& covisibility_graph, std::vector const& identification, std::vector const& keyframes, std::vector const& pointcloud) override; + SolAR::FrameworkReturnCode backupMap(std::string const& accessToken, std::string const& mapUUID, std::vector& compressed_zip_data) const override; + SolAR::FrameworkReturnCode restoreMap(std::string const& accessToken, std::string const& mapUUID, std::vector const& compressed_zip_data) 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/IMapsManager_grpcProxy.h b/gen/interfaces/IMapsManager_grpcProxy.h index a4252b0..292a756 100644 --- a/gen/interfaces/IMapsManager_grpcProxy.h +++ b/gen/interfaces/IMapsManager_grpcProxy.h @@ -31,8 +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& map_information, std::vector& cameraParameters, std::vector& coordinate, std::vector& covisibility_graph, std::vector& identification, std::vector& keyframes, std::vector& pointcloud) const override; - SolAR::FrameworkReturnCode restoreMap(std::string const& mapUUID, std::vector const& map_information, std::vector const& cameraParameters, std::vector const& coordinate, std::vector const& covisibility_graph, std::vector const& identification, std::vector const& keyframes, std::vector const& pointcloud) override; + SolAR::FrameworkReturnCode backupMap(std::string const& mapUUID, std::vector& compressed_zip_data) const override; + SolAR::FrameworkReturnCode restoreMap(std::string const& mapUUID, std::vector const& compressed_zip_data) 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/grpcIFrontEndService.pb.h b/gen/interfaces/grpcIFrontEndService.pb.h index 68542c7..c9388a3 100644 --- a/gen/interfaces/grpcIFrontEndService.pb.h +++ b/gen/interfaces/grpcIFrontEndService.pb.h @@ -3295,13 +3295,7 @@ class restoreMapRequest final : public ::google::protobuf::Message enum : int { kAccessTokenFieldNumber = 2, kMapUUIDFieldNumber = 3, - kMapInformationFieldNumber = 4, - kCameraParametersFieldNumber = 5, - kCoordinateFieldNumber = 6, - kCovisibilityGraphFieldNumber = 7, - kIdentificationFieldNumber = 8, - kKeyframesFieldNumber = 9, - kPointcloudFieldNumber = 10, + kCompressedZipDataFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, }; // string accessToken = 2; @@ -3336,116 +3330,20 @@ class restoreMapRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // bytes map_information = 4; - void clear_map_information() ; - const std::string& map_information() const; + // bytes compressed_zip_data = 4; + void clear_compressed_zip_data() ; + const std::string& compressed_zip_data() const; template - void set_map_information(Arg_&& arg, Args_... args); - std::string* mutable_map_information(); - PROTOBUF_NODISCARD std::string* release_map_information(); - void set_allocated_map_information(std::string* value); + void set_compressed_zip_data(Arg_&& arg, Args_... args); + std::string* mutable_compressed_zip_data(); + PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); + void set_allocated_compressed_zip_data(std::string* value); private: - const std::string& _internal_map_information() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( + const std::string& _internal_compressed_zip_data() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( const std::string& value); - std::string* _internal_mutable_map_information(); - - public: - // bytes cameraParameters = 5; - void clear_cameraparameters() ; - const std::string& cameraparameters() const; - template - void set_cameraparameters(Arg_&& arg, Args_... args); - std::string* mutable_cameraparameters(); - PROTOBUF_NODISCARD std::string* release_cameraparameters(); - void set_allocated_cameraparameters(std::string* value); - - private: - const std::string& _internal_cameraparameters() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( - const std::string& value); - std::string* _internal_mutable_cameraparameters(); - - public: - // bytes coordinate = 6; - void clear_coordinate() ; - const std::string& coordinate() const; - template - void set_coordinate(Arg_&& arg, Args_... args); - std::string* mutable_coordinate(); - PROTOBUF_NODISCARD std::string* release_coordinate(); - void set_allocated_coordinate(std::string* value); - - private: - const std::string& _internal_coordinate() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( - const std::string& value); - std::string* _internal_mutable_coordinate(); - - public: - // bytes covisibility_graph = 7; - void clear_covisibility_graph() ; - const std::string& covisibility_graph() const; - template - void set_covisibility_graph(Arg_&& arg, Args_... args); - std::string* mutable_covisibility_graph(); - PROTOBUF_NODISCARD std::string* release_covisibility_graph(); - void set_allocated_covisibility_graph(std::string* value); - - private: - const std::string& _internal_covisibility_graph() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( - const std::string& value); - std::string* _internal_mutable_covisibility_graph(); - - public: - // bytes identification = 8; - void clear_identification() ; - const std::string& identification() const; - template - void set_identification(Arg_&& arg, Args_... args); - std::string* mutable_identification(); - PROTOBUF_NODISCARD std::string* release_identification(); - void set_allocated_identification(std::string* value); - - private: - const std::string& _internal_identification() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( - const std::string& value); - std::string* _internal_mutable_identification(); - - public: - // bytes keyframes = 9; - void clear_keyframes() ; - const std::string& keyframes() const; - template - void set_keyframes(Arg_&& arg, Args_... args); - std::string* mutable_keyframes(); - PROTOBUF_NODISCARD std::string* release_keyframes(); - void set_allocated_keyframes(std::string* value); - - private: - const std::string& _internal_keyframes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( - const std::string& value); - std::string* _internal_mutable_keyframes(); - - public: - // bytes pointcloud = 10; - 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); - - private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( - const std::string& value); - std::string* _internal_mutable_pointcloud(); + std::string* _internal_mutable_compressed_zip_data(); public: // int32 grpcServerCompressionFormat = 1; @@ -3463,8 +3361,8 @@ class restoreMapRequest final : public ::google::protobuf::Message class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 4, 10, 0, - 66, 2> + 2, 4, 0, + 58, 2> _table_; static constexpr const void* _raw_default_instance_ = @@ -3486,13 +3384,7 @@ class restoreMapRequest final : public ::google::protobuf::Message const restoreMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr map_information_; - ::google::protobuf::internal::ArenaStringPtr cameraparameters_; - ::google::protobuf::internal::ArenaStringPtr coordinate_; - ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; - ::google::protobuf::internal::ArenaStringPtr identification_; - ::google::protobuf::internal::ArenaStringPtr keyframes_; - ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -12680,128 +12572,26 @@ class backupMapResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapInformationFieldNumber = 1, - kCameraParametersFieldNumber = 2, - kCoordinateFieldNumber = 3, - kCovisibilityGraphFieldNumber = 4, - kIdentificationFieldNumber = 5, - kKeyframesFieldNumber = 6, - kPointcloudFieldNumber = 7, - kXpcfGrpcReturnValueFieldNumber = 8, + kCompressedZipDataFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes map_information = 1; - void clear_map_information() ; - const std::string& map_information() const; - template - void set_map_information(Arg_&& arg, Args_... args); - std::string* mutable_map_information(); - PROTOBUF_NODISCARD std::string* release_map_information(); - void set_allocated_map_information(std::string* value); - - private: - const std::string& _internal_map_information() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( - const std::string& value); - std::string* _internal_mutable_map_information(); - - public: - // bytes cameraParameters = 2; - void clear_cameraparameters() ; - const std::string& cameraparameters() const; - template - void set_cameraparameters(Arg_&& arg, Args_... args); - std::string* mutable_cameraparameters(); - PROTOBUF_NODISCARD std::string* release_cameraparameters(); - void set_allocated_cameraparameters(std::string* value); - - private: - const std::string& _internal_cameraparameters() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( - const std::string& value); - std::string* _internal_mutable_cameraparameters(); - - public: - // bytes coordinate = 3; - void clear_coordinate() ; - const std::string& coordinate() const; - template - void set_coordinate(Arg_&& arg, Args_... args); - std::string* mutable_coordinate(); - PROTOBUF_NODISCARD std::string* release_coordinate(); - void set_allocated_coordinate(std::string* value); - - private: - const std::string& _internal_coordinate() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( - const std::string& value); - std::string* _internal_mutable_coordinate(); - - public: - // bytes covisibility_graph = 4; - void clear_covisibility_graph() ; - const std::string& covisibility_graph() const; - template - void set_covisibility_graph(Arg_&& arg, Args_... args); - std::string* mutable_covisibility_graph(); - PROTOBUF_NODISCARD std::string* release_covisibility_graph(); - void set_allocated_covisibility_graph(std::string* value); - - private: - const std::string& _internal_covisibility_graph() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( - const std::string& value); - std::string* _internal_mutable_covisibility_graph(); - - public: - // bytes identification = 5; - void clear_identification() ; - const std::string& identification() const; - template - void set_identification(Arg_&& arg, Args_... args); - std::string* mutable_identification(); - PROTOBUF_NODISCARD std::string* release_identification(); - void set_allocated_identification(std::string* value); - - private: - const std::string& _internal_identification() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( - const std::string& value); - std::string* _internal_mutable_identification(); - - public: - // bytes keyframes = 6; - void clear_keyframes() ; - const std::string& keyframes() const; - template - void set_keyframes(Arg_&& arg, Args_... args); - std::string* mutable_keyframes(); - PROTOBUF_NODISCARD std::string* release_keyframes(); - void set_allocated_keyframes(std::string* value); - - private: - const std::string& _internal_keyframes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( - const std::string& value); - std::string* _internal_mutable_keyframes(); - - public: - // bytes pointcloud = 7; - void clear_pointcloud() ; - const std::string& pointcloud() const; + // bytes compressed_zip_data = 1; + void clear_compressed_zip_data() ; + const std::string& compressed_zip_data() 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_compressed_zip_data(Arg_&& arg, Args_... args); + std::string* mutable_compressed_zip_data(); + PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); + void set_allocated_compressed_zip_data(std::string* value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& _internal_compressed_zip_data() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( const std::string& value); - std::string* _internal_mutable_pointcloud(); + std::string* _internal_mutable_compressed_zip_data(); public: - // sint32 xpcfGrpcReturnValue = 8; + // sint32 xpcfGrpcReturnValue = 2; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -12816,7 +12606,7 @@ class backupMapResponse final : public ::google::protobuf::Message class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 8, 0, + 1, 2, 0, 0, 2> _table_; @@ -12837,13 +12627,7 @@ class backupMapResponse final : public ::google::protobuf::Message inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, const backupMapResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr map_information_; - ::google::protobuf::internal::ArenaStringPtr cameraparameters_; - ::google::protobuf::internal::ArenaStringPtr coordinate_; - ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; - ::google::protobuf::internal::ArenaStringPtr identification_; - ::google::protobuf::internal::ArenaStringPtr keyframes_; - ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -12979,13 +12763,7 @@ class backupMapRequest final : public ::google::protobuf::Message enum : int { kAccessTokenFieldNumber = 2, kMapUUIDFieldNumber = 3, - kMapInformationFieldNumber = 4, - kCameraParametersFieldNumber = 5, - kCoordinateFieldNumber = 6, - kCovisibilityGraphFieldNumber = 7, - kIdentificationFieldNumber = 8, - kKeyframesFieldNumber = 9, - kPointcloudFieldNumber = 10, + kCompressedZipDataFieldNumber = 4, kGrpcServerCompressionFormatFieldNumber = 1, }; // string accessToken = 2; @@ -13020,116 +12798,20 @@ class backupMapRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // bytes map_information = 4; - void clear_map_information() ; - const std::string& map_information() const; - template - void set_map_information(Arg_&& arg, Args_... args); - std::string* mutable_map_information(); - PROTOBUF_NODISCARD std::string* release_map_information(); - void set_allocated_map_information(std::string* value); - - private: - const std::string& _internal_map_information() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( - const std::string& value); - std::string* _internal_mutable_map_information(); - - public: - // bytes cameraParameters = 5; - void clear_cameraparameters() ; - const std::string& cameraparameters() const; - template - void set_cameraparameters(Arg_&& arg, Args_... args); - std::string* mutable_cameraparameters(); - PROTOBUF_NODISCARD std::string* release_cameraparameters(); - void set_allocated_cameraparameters(std::string* value); - - private: - const std::string& _internal_cameraparameters() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( - const std::string& value); - std::string* _internal_mutable_cameraparameters(); - - public: - // bytes coordinate = 6; - void clear_coordinate() ; - const std::string& coordinate() const; - template - void set_coordinate(Arg_&& arg, Args_... args); - std::string* mutable_coordinate(); - PROTOBUF_NODISCARD std::string* release_coordinate(); - void set_allocated_coordinate(std::string* value); - - private: - const std::string& _internal_coordinate() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( - const std::string& value); - std::string* _internal_mutable_coordinate(); - - public: - // bytes covisibility_graph = 7; - void clear_covisibility_graph() ; - const std::string& covisibility_graph() const; - template - void set_covisibility_graph(Arg_&& arg, Args_... args); - std::string* mutable_covisibility_graph(); - PROTOBUF_NODISCARD std::string* release_covisibility_graph(); - void set_allocated_covisibility_graph(std::string* value); - - private: - const std::string& _internal_covisibility_graph() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( - const std::string& value); - std::string* _internal_mutable_covisibility_graph(); - - public: - // bytes identification = 8; - void clear_identification() ; - const std::string& identification() const; - template - void set_identification(Arg_&& arg, Args_... args); - std::string* mutable_identification(); - PROTOBUF_NODISCARD std::string* release_identification(); - void set_allocated_identification(std::string* value); - - private: - const std::string& _internal_identification() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( - const std::string& value); - std::string* _internal_mutable_identification(); - - public: - // bytes keyframes = 9; - void clear_keyframes() ; - const std::string& keyframes() const; + // bytes compressed_zip_data = 4; + void clear_compressed_zip_data() ; + const std::string& compressed_zip_data() const; template - void set_keyframes(Arg_&& arg, Args_... args); - std::string* mutable_keyframes(); - PROTOBUF_NODISCARD std::string* release_keyframes(); - void set_allocated_keyframes(std::string* value); + void set_compressed_zip_data(Arg_&& arg, Args_... args); + std::string* mutable_compressed_zip_data(); + PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); + void set_allocated_compressed_zip_data(std::string* value); private: - const std::string& _internal_keyframes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( + const std::string& _internal_compressed_zip_data() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( const std::string& value); - std::string* _internal_mutable_keyframes(); - - public: - // bytes pointcloud = 10; - 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); - - private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( - const std::string& value); - std::string* _internal_mutable_pointcloud(); + std::string* _internal_mutable_compressed_zip_data(); public: // int32 grpcServerCompressionFormat = 1; @@ -13147,8 +12829,8 @@ class backupMapRequest final : public ::google::protobuf::Message class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 4, 10, 0, - 65, 2> + 2, 4, 0, + 57, 2> _table_; static constexpr const void* _raw_default_instance_ = @@ -13170,13 +12852,7 @@ class backupMapRequest final : public ::google::protobuf::Message const backupMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr map_information_; - ::google::protobuf::internal::ArenaStringPtr cameraparameters_; - ::google::protobuf::internal::ArenaStringPtr coordinate_; - ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; - ::google::protobuf::internal::ArenaStringPtr identification_; - ::google::protobuf::internal::ArenaStringPtr keyframes_; - ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -19813,1206 +19489,306 @@ inline void backupMapRequest::set_allocated_mapuuid(std::string* value) { // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.mapUUID) } -// bytes map_information = 4; -inline void backupMapRequest::clear_map_information() { +// bytes compressed_zip_data = 4; +inline void backupMapRequest::clear_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); } -inline const std::string& backupMapRequest::map_information() const +inline const std::string& backupMapRequest::compressed_zip_data() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.map_information) - return _internal_map_information(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.compressed_zip_data) + return _internal_compressed_zip_data(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_map_information(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_compressed_zip_data(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.map_information) + _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.compressed_zip_data) } -inline std::string* backupMapRequest::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_map_information(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.map_information) +inline std::string* backupMapRequest::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressed_zip_data(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.compressed_zip_data) return _s; } -inline const std::string& backupMapRequest::_internal_map_information() const { +inline const std::string& backupMapRequest::_internal_compressed_zip_data() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.map_information_.Get(); + return _impl_.compressed_zip_data_.Get(); } -inline void backupMapRequest::_internal_set_map_information(const std::string& value) { +inline void backupMapRequest::_internal_set_compressed_zip_data(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.Set(value, GetArena()); + _impl_.compressed_zip_data_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_map_information() { +inline std::string* backupMapRequest::_internal_mutable_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.map_information_.Mutable( GetArena()); + return _impl_.compressed_zip_data_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_map_information() { +inline std::string* backupMapRequest::release_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.map_information) - return _impl_.map_information_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.compressed_zip_data) + return _impl_.compressed_zip_data_.Release(); } -inline void backupMapRequest::set_allocated_map_information(std::string* value) { +inline void backupMapRequest::set_allocated_compressed_zip_data(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetAllocated(value, GetArena()); + _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.map_information_.IsDefault()) { - _impl_.map_information_.Set("", GetArena()); + if (_impl_.compressed_zip_data_.IsDefault()) { + _impl_.compressed_zip_data_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.map_information) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.compressed_zip_data) } -// bytes cameraParameters = 5; -inline void backupMapRequest::clear_cameraparameters() { +// ------------------------------------------------------------------- + +// backupMapResponse + +// bytes compressed_zip_data = 1; +inline void backupMapResponse::clear_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); } -inline const std::string& backupMapRequest::cameraparameters() const +inline const std::string& backupMapResponse::compressed_zip_data() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.cameraParameters) - return _internal_cameraparameters(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.compressed_zip_data) + return _internal_compressed_zip_data(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_cameraparameters(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_compressed_zip_data(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.cameraParameters) + _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.compressed_zip_data) } -inline std::string* backupMapRequest::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_cameraparameters(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.cameraParameters) +inline std::string* backupMapResponse::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressed_zip_data(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.compressed_zip_data) return _s; } -inline const std::string& backupMapRequest::_internal_cameraparameters() const { +inline const std::string& backupMapResponse::_internal_compressed_zip_data() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparameters_.Get(); + return _impl_.compressed_zip_data_.Get(); } -inline void backupMapRequest::_internal_set_cameraparameters(const std::string& value) { +inline void backupMapResponse::_internal_set_compressed_zip_data(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.Set(value, GetArena()); + _impl_.compressed_zip_data_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_cameraparameters() { +inline std::string* backupMapResponse::_internal_mutable_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparameters_.Mutable( GetArena()); + return _impl_.compressed_zip_data_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_cameraparameters() { +inline std::string* backupMapResponse::release_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.cameraParameters) - return _impl_.cameraparameters_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.compressed_zip_data) + return _impl_.compressed_zip_data_.Release(); } -inline void backupMapRequest::set_allocated_cameraparameters(std::string* value) { +inline void backupMapResponse::set_allocated_compressed_zip_data(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetAllocated(value, GetArena()); + _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparameters_.IsDefault()) { - _impl_.cameraparameters_.Set("", GetArena()); + if (_impl_.compressed_zip_data_.IsDefault()) { + _impl_.compressed_zip_data_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.cameraParameters) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.compressed_zip_data) } -// bytes coordinate = 6; -inline void backupMapRequest::clear_coordinate() { +// sint32 xpcfGrpcReturnValue = 2; +inline void backupMapResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.ClearToEmpty(); -} -inline const std::string& backupMapRequest::coordinate() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.coordinate) - return _internal_coordinate(); + _impl_.xpcfgrpcreturnvalue_ = 0; } -template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_coordinate(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.coordinate) +inline ::int32_t backupMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); } -inline std::string* backupMapRequest::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_coordinate(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.coordinate) - return _s; +inline void backupMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.xpcfGrpcReturnValue) } -inline const std::string& backupMapRequest::_internal_coordinate() const { +inline ::int32_t backupMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.coordinate_.Get(); + return _impl_.xpcfgrpcreturnvalue_; } -inline void backupMapRequest::_internal_set_coordinate(const std::string& value) { +inline void backupMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.Set(value, GetArena()); + _impl_.xpcfgrpcreturnvalue_ = value; } -inline std::string* backupMapRequest::_internal_mutable_coordinate() { + +// ------------------------------------------------------------------- + +// restoreMapRequest + +// int32 grpcServerCompressionFormat = 1; +inline void restoreMapRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.coordinate_.Mutable( GetArena()); + _impl_.grpcservercompressionformat_ = 0; } -inline std::string* backupMapRequest::release_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.coordinate) - return _impl_.coordinate_.Release(); +inline ::int32_t restoreMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); +} +inline void restoreMapRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.grpcServerCompressionFormat) +} +inline ::int32_t restoreMapRequest::_internal_grpcservercompressionformat() const { + ::google::protobuf::internal::TSanRead(&_impl_); + return _impl_.grpcservercompressionformat_; } -inline void backupMapRequest::set_allocated_coordinate(std::string* value) { +inline void restoreMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.coordinate_.IsDefault()) { - _impl_.coordinate_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.coordinate) + _impl_.grpcservercompressionformat_ = value; } -// bytes covisibility_graph = 7; -inline void backupMapRequest::clear_covisibility_graph() { +// string accessToken = 2; +inline void restoreMapRequest::clear_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.ClearToEmpty(); + _impl_.accesstoken_.ClearToEmpty(); } -inline const std::string& backupMapRequest::covisibility_graph() const +inline const std::string& restoreMapRequest::accesstoken() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.covisibility_graph) - return _internal_covisibility_graph(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.accessToken) + return _internal_accesstoken(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_covisibility_graph(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_accesstoken(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.covisibility_graph) + _impl_.accesstoken_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.accessToken) } -inline std::string* backupMapRequest::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_covisibility_graph(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.covisibility_graph) +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& backupMapRequest::_internal_covisibility_graph() const { +inline const std::string& restoreMapRequest::_internal_accesstoken() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.covisibility_graph_.Get(); + return _impl_.accesstoken_.Get(); } -inline void backupMapRequest::_internal_set_covisibility_graph(const std::string& value) { +inline void restoreMapRequest::_internal_set_accesstoken(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.Set(value, GetArena()); + _impl_.accesstoken_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_covisibility_graph() { +inline std::string* restoreMapRequest::_internal_mutable_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.covisibility_graph_.Mutable( GetArena()); + return _impl_.accesstoken_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_covisibility_graph() { +inline std::string* restoreMapRequest::release_accesstoken() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.covisibility_graph) - return _impl_.covisibility_graph_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.accessToken) + return _impl_.accesstoken_.Release(); } -inline void backupMapRequest::set_allocated_covisibility_graph(std::string* value) { +inline void restoreMapRequest::set_allocated_accesstoken(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetAllocated(value, GetArena()); + _impl_.accesstoken_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.covisibility_graph_.IsDefault()) { - _impl_.covisibility_graph_.Set("", GetArena()); + if (_impl_.accesstoken_.IsDefault()) { + _impl_.accesstoken_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.covisibility_graph) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.accessToken) } -// bytes identification = 8; -inline void backupMapRequest::clear_identification() { +// string mapUUID = 3; +inline void restoreMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& backupMapRequest::identification() const +inline const std::string& restoreMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.identification) - return _internal_identification(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_identification(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.identification) + _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.mapUUID) } -inline std::string* backupMapRequest::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_identification(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.identification) +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& backupMapRequest::_internal_identification() const { +inline const std::string& restoreMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.identification_.Get(); + return _impl_.mapuuid_.Get(); } -inline void backupMapRequest::_internal_set_identification(const std::string& value) { +inline void restoreMapRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_identification() { +inline std::string* restoreMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.identification_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_identification() { +inline std::string* restoreMapRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.identification) - return _impl_.identification_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void backupMapRequest::set_allocated_identification(std::string* value) { +inline void restoreMapRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.identification_.IsDefault()) { - _impl_.identification_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.identification) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.mapUUID) } -// bytes keyframes = 9; -inline void backupMapRequest::clear_keyframes() { +// bytes compressed_zip_data = 4; +inline void restoreMapRequest::clear_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); } -inline const std::string& backupMapRequest::keyframes() const +inline const std::string& restoreMapRequest::compressed_zip_data() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.keyframes) - return _internal_keyframes(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.compressed_zip_data) + return _internal_compressed_zip_data(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_keyframes(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_compressed_zip_data(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.keyframes) + _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.compressed_zip_data) } -inline std::string* backupMapRequest::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_keyframes(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.keyframes) +inline std::string* restoreMapRequest::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressed_zip_data(); + // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.compressed_zip_data) return _s; } -inline const std::string& backupMapRequest::_internal_keyframes() const { +inline const std::string& restoreMapRequest::_internal_compressed_zip_data() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframes_.Get(); + return _impl_.compressed_zip_data_.Get(); } -inline void backupMapRequest::_internal_set_keyframes(const std::string& value) { +inline void restoreMapRequest::_internal_set_compressed_zip_data(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.Set(value, GetArena()); + _impl_.compressed_zip_data_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_keyframes() { +inline std::string* restoreMapRequest::_internal_mutable_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.keyframes_.Mutable( GetArena()); + return _impl_.compressed_zip_data_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_keyframes() { +inline std::string* restoreMapRequest::release_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.keyframes) - return _impl_.keyframes_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.compressed_zip_data) + return _impl_.compressed_zip_data_.Release(); } -inline void backupMapRequest::set_allocated_keyframes(std::string* value) { +inline void restoreMapRequest::set_allocated_compressed_zip_data(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetAllocated(value, GetArena()); + _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.keyframes_.IsDefault()) { - _impl_.keyframes_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.keyframes) -} - -// bytes pointcloud = 10; -inline void backupMapRequest::clear_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.ClearToEmpty(); -} -inline const std::string& backupMapRequest::pointcloud() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.pointcloud) - return _internal_pointcloud(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::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.backupMapRequest.pointcloud) -} -inline std::string* backupMapRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.pointcloud) - return _s; -} -inline const std::string& backupMapRequest::_internal_pointcloud() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pointcloud_.Get(); -} -inline void backupMapRequest::_internal_set_pointcloud(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.Set(value, GetArena()); -} -inline std::string* backupMapRequest::_internal_mutable_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pointcloud_.Mutable( GetArena()); -} -inline std::string* backupMapRequest::release_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.pointcloud) - return _impl_.pointcloud_.Release(); -} -inline void backupMapRequest::set_allocated_pointcloud(std::string* 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.backupMapRequest.pointcloud) -} - -// ------------------------------------------------------------------- - -// backupMapResponse - -// bytes map_information = 1; -inline void backupMapResponse::clear_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::map_information() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.map_information) - return _internal_map_information(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_map_information(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.map_information) -} -inline std::string* backupMapResponse::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_map_information(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.map_information) - return _s; -} -inline const std::string& backupMapResponse::_internal_map_information() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.map_information_.Get(); -} -inline void backupMapResponse::_internal_set_map_information(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.map_information_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.map_information) - return _impl_.map_information_.Release(); -} -inline void backupMapResponse::set_allocated_map_information(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.map_information_.IsDefault()) { - _impl_.map_information_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.map_information) -} - -// bytes cameraParameters = 2; -inline void backupMapResponse::clear_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::cameraparameters() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.cameraParameters) - return _internal_cameraparameters(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_cameraparameters(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.cameraParameters) -} -inline std::string* backupMapResponse::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_cameraparameters(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.cameraParameters) - return _s; -} -inline const std::string& backupMapResponse::_internal_cameraparameters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparameters_.Get(); -} -inline void backupMapResponse::_internal_set_cameraparameters(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparameters_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.cameraParameters) - return _impl_.cameraparameters_.Release(); -} -inline void backupMapResponse::set_allocated_cameraparameters(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparameters_.IsDefault()) { - _impl_.cameraparameters_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.cameraParameters) -} - -// bytes coordinate = 3; -inline void backupMapResponse::clear_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::coordinate() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.coordinate) - return _internal_coordinate(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_coordinate(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.coordinate) -} -inline std::string* backupMapResponse::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_coordinate(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.coordinate) - return _s; -} -inline const std::string& backupMapResponse::_internal_coordinate() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.coordinate_.Get(); -} -inline void backupMapResponse::_internal_set_coordinate(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.coordinate_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.coordinate) - return _impl_.coordinate_.Release(); -} -inline void backupMapResponse::set_allocated_coordinate(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.coordinate_.IsDefault()) { - _impl_.coordinate_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.coordinate) -} - -// bytes covisibility_graph = 4; -inline void backupMapResponse::clear_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::covisibility_graph() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.covisibility_graph) - return _internal_covisibility_graph(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_covisibility_graph(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.covisibility_graph) -} -inline std::string* backupMapResponse::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_covisibility_graph(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.covisibility_graph) - return _s; -} -inline const std::string& backupMapResponse::_internal_covisibility_graph() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.covisibility_graph_.Get(); -} -inline void backupMapResponse::_internal_set_covisibility_graph(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.covisibility_graph_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.covisibility_graph) - return _impl_.covisibility_graph_.Release(); -} -inline void backupMapResponse::set_allocated_covisibility_graph(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.covisibility_graph_.IsDefault()) { - _impl_.covisibility_graph_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.covisibility_graph) -} - -// bytes identification = 5; -inline void backupMapResponse::clear_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::identification() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.identification) - return _internal_identification(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_identification(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.identification) -} -inline std::string* backupMapResponse::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_identification(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.identification) - return _s; -} -inline const std::string& backupMapResponse::_internal_identification() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.identification_.Get(); -} -inline void backupMapResponse::_internal_set_identification(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.identification_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.identification) - return _impl_.identification_.Release(); -} -inline void backupMapResponse::set_allocated_identification(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.identification_.IsDefault()) { - _impl_.identification_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.identification) -} - -// bytes keyframes = 6; -inline void backupMapResponse::clear_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::keyframes() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.keyframes) - return _internal_keyframes(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_keyframes(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.keyframes) -} -inline std::string* backupMapResponse::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_keyframes(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.keyframes) - return _s; -} -inline const std::string& backupMapResponse::_internal_keyframes() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframes_.Get(); -} -inline void backupMapResponse::_internal_set_keyframes(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.keyframes_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.keyframes) - return _impl_.keyframes_.Release(); -} -inline void backupMapResponse::set_allocated_keyframes(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.keyframes_.IsDefault()) { - _impl_.keyframes_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.keyframes) -} - -// bytes pointcloud = 7; -inline void backupMapResponse::clear_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::pointcloud() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.pointcloud) - return _internal_pointcloud(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::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.backupMapResponse.pointcloud) -} -inline std::string* backupMapResponse::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.pointcloud) - return _s; -} -inline const std::string& backupMapResponse::_internal_pointcloud() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pointcloud_.Get(); -} -inline void backupMapResponse::_internal_set_pointcloud(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pointcloud_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.pointcloud) - return _impl_.pointcloud_.Release(); -} -inline void backupMapResponse::set_allocated_pointcloud(std::string* 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.backupMapResponse.pointcloud) -} - -// sint32 xpcfGrpcReturnValue = 8; -inline void backupMapResponse::clear_xpcfgrpcreturnvalue() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.xpcfgrpcreturnvalue_ = 0; -} -inline ::int32_t backupMapResponse::xpcfgrpcreturnvalue() const { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.xpcfGrpcReturnValue) - return _internal_xpcfgrpcreturnvalue(); -} -inline void backupMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { - _internal_set_xpcfgrpcreturnvalue(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.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:grpcIFrontEnd.restoreMapRequest.grpcServerCompressionFormat) - return _internal_grpcservercompressionformat(); -} -inline void restoreMapRequest::set_grpcservercompressionformat(::int32_t value) { - _internal_set_grpcservercompressionformat(value); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.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 accessToken = 2; -inline void restoreMapRequest::clear_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::accesstoken() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.accessToken) - return _internal_accesstoken(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::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.restoreMapRequest.accessToken) -} -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& restoreMapRequest::_internal_accesstoken() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.accesstoken_.Get(); -} -inline void restoreMapRequest::_internal_set_accesstoken(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.accesstoken_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.accesstoken_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_accesstoken() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.accessToken) - return _impl_.accesstoken_.Release(); -} -inline void restoreMapRequest::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.restoreMapRequest.accessToken) -} - -// string mapUUID = 3; -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:grpcIFrontEnd.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:grpcIFrontEnd.restoreMapRequest.mapUUID) -} -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_.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:grpcIFrontEnd.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:grpcIFrontEnd.restoreMapRequest.mapUUID) -} - -// bytes map_information = 4; -inline void restoreMapRequest::clear_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::map_information() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.map_information) - return _internal_map_information(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_map_information(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.map_information) -} -inline std::string* restoreMapRequest::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_map_information(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.map_information) - return _s; -} -inline const std::string& restoreMapRequest::_internal_map_information() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.map_information_.Get(); -} -inline void restoreMapRequest::_internal_set_map_information(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.map_information_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.map_information) - return _impl_.map_information_.Release(); -} -inline void restoreMapRequest::set_allocated_map_information(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.map_information_.IsDefault()) { - _impl_.map_information_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.map_information) -} - -// bytes cameraParameters = 5; -inline void restoreMapRequest::clear_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::cameraparameters() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.cameraParameters) - return _internal_cameraparameters(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_cameraparameters(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.cameraParameters) -} -inline std::string* restoreMapRequest::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_cameraparameters(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.cameraParameters) - return _s; -} -inline const std::string& restoreMapRequest::_internal_cameraparameters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparameters_.Get(); -} -inline void restoreMapRequest::_internal_set_cameraparameters(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparameters_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.cameraParameters) - return _impl_.cameraparameters_.Release(); -} -inline void restoreMapRequest::set_allocated_cameraparameters(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparameters_.IsDefault()) { - _impl_.cameraparameters_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.cameraParameters) -} - -// bytes coordinate = 6; -inline void restoreMapRequest::clear_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::coordinate() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.coordinate) - return _internal_coordinate(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_coordinate(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.coordinate) -} -inline std::string* restoreMapRequest::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_coordinate(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.coordinate) - return _s; -} -inline const std::string& restoreMapRequest::_internal_coordinate() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.coordinate_.Get(); -} -inline void restoreMapRequest::_internal_set_coordinate(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.coordinate_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.coordinate) - return _impl_.coordinate_.Release(); -} -inline void restoreMapRequest::set_allocated_coordinate(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.coordinate_.IsDefault()) { - _impl_.coordinate_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.coordinate) -} - -// bytes covisibility_graph = 7; -inline void restoreMapRequest::clear_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::covisibility_graph() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.covisibility_graph) - return _internal_covisibility_graph(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_covisibility_graph(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.covisibility_graph) -} -inline std::string* restoreMapRequest::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_covisibility_graph(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.covisibility_graph) - return _s; -} -inline const std::string& restoreMapRequest::_internal_covisibility_graph() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.covisibility_graph_.Get(); -} -inline void restoreMapRequest::_internal_set_covisibility_graph(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.covisibility_graph_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.covisibility_graph) - return _impl_.covisibility_graph_.Release(); -} -inline void restoreMapRequest::set_allocated_covisibility_graph(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.covisibility_graph_.IsDefault()) { - _impl_.covisibility_graph_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.covisibility_graph) -} - -// bytes identification = 8; -inline void restoreMapRequest::clear_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::identification() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.identification) - return _internal_identification(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_identification(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.identification) -} -inline std::string* restoreMapRequest::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_identification(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.identification) - return _s; -} -inline const std::string& restoreMapRequest::_internal_identification() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.identification_.Get(); -} -inline void restoreMapRequest::_internal_set_identification(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.identification_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.identification) - return _impl_.identification_.Release(); -} -inline void restoreMapRequest::set_allocated_identification(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.identification_.IsDefault()) { - _impl_.identification_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.identification) -} - -// bytes keyframes = 9; -inline void restoreMapRequest::clear_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::keyframes() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.keyframes) - return _internal_keyframes(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_keyframes(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.keyframes) -} -inline std::string* restoreMapRequest::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_keyframes(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.keyframes) - return _s; -} -inline const std::string& restoreMapRequest::_internal_keyframes() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframes_.Get(); -} -inline void restoreMapRequest::_internal_set_keyframes(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.keyframes_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.keyframes) - return _impl_.keyframes_.Release(); -} -inline void restoreMapRequest::set_allocated_keyframes(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.keyframes_.IsDefault()) { - _impl_.keyframes_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.keyframes) -} - -// bytes pointcloud = 10; -inline void restoreMapRequest::clear_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::pointcloud() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.pointcloud) - return _internal_pointcloud(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::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.restoreMapRequest.pointcloud) -} -inline std::string* restoreMapRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.pointcloud) - return _s; -} -inline const std::string& restoreMapRequest::_internal_pointcloud() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pointcloud_.Get(); -} -inline void restoreMapRequest::_internal_set_pointcloud(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pointcloud_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.pointcloud) - return _impl_.pointcloud_.Release(); -} -inline void restoreMapRequest::set_allocated_pointcloud(std::string* 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()); + if (_impl_.compressed_zip_data_.IsDefault()) { + _impl_.compressed_zip_data_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.pointcloud) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.compressed_zip_data) } // ------------------------------------------------------------------- diff --git a/gen/interfaces/grpcIMapsManagerService.pb.h b/gen/interfaces/grpcIMapsManagerService.pb.h index 372e404..b4c2792 100644 --- a/gen/interfaces/grpcIMapsManagerService.pb.h +++ b/gen/interfaces/grpcIMapsManagerService.pb.h @@ -822,13 +822,7 @@ class restoreMapRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kMapUUIDFieldNumber = 2, - kMapInformationFieldNumber = 3, - kCameraParametersFieldNumber = 4, - kCoordinateFieldNumber = 5, - kCovisibilityGraphFieldNumber = 6, - kIdentificationFieldNumber = 7, - kKeyframesFieldNumber = 8, - kPointcloudFieldNumber = 9, + kCompressedZipDataFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, }; // string mapUUID = 2; @@ -847,116 +841,20 @@ class restoreMapRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // bytes map_information = 3; - void clear_map_information() ; - const std::string& map_information() const; + // bytes compressed_zip_data = 3; + void clear_compressed_zip_data() ; + const std::string& compressed_zip_data() const; template - void set_map_information(Arg_&& arg, Args_... args); - std::string* mutable_map_information(); - PROTOBUF_NODISCARD std::string* release_map_information(); - void set_allocated_map_information(std::string* value); + void set_compressed_zip_data(Arg_&& arg, Args_... args); + std::string* mutable_compressed_zip_data(); + PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); + void set_allocated_compressed_zip_data(std::string* value); private: - const std::string& _internal_map_information() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( + const std::string& _internal_compressed_zip_data() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( const std::string& value); - std::string* _internal_mutable_map_information(); - - public: - // bytes cameraParameters = 4; - void clear_cameraparameters() ; - const std::string& cameraparameters() const; - template - void set_cameraparameters(Arg_&& arg, Args_... args); - std::string* mutable_cameraparameters(); - PROTOBUF_NODISCARD std::string* release_cameraparameters(); - void set_allocated_cameraparameters(std::string* value); - - private: - const std::string& _internal_cameraparameters() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( - const std::string& value); - std::string* _internal_mutable_cameraparameters(); - - public: - // bytes coordinate = 5; - void clear_coordinate() ; - const std::string& coordinate() const; - template - void set_coordinate(Arg_&& arg, Args_... args); - std::string* mutable_coordinate(); - PROTOBUF_NODISCARD std::string* release_coordinate(); - void set_allocated_coordinate(std::string* value); - - private: - const std::string& _internal_coordinate() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( - const std::string& value); - std::string* _internal_mutable_coordinate(); - - public: - // bytes covisibility_graph = 6; - void clear_covisibility_graph() ; - const std::string& covisibility_graph() const; - template - void set_covisibility_graph(Arg_&& arg, Args_... args); - std::string* mutable_covisibility_graph(); - PROTOBUF_NODISCARD std::string* release_covisibility_graph(); - void set_allocated_covisibility_graph(std::string* value); - - private: - const std::string& _internal_covisibility_graph() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( - const std::string& value); - std::string* _internal_mutable_covisibility_graph(); - - public: - // bytes identification = 7; - void clear_identification() ; - const std::string& identification() const; - template - void set_identification(Arg_&& arg, Args_... args); - std::string* mutable_identification(); - PROTOBUF_NODISCARD std::string* release_identification(); - void set_allocated_identification(std::string* value); - - private: - const std::string& _internal_identification() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( - const std::string& value); - std::string* _internal_mutable_identification(); - - public: - // bytes keyframes = 8; - void clear_keyframes() ; - const std::string& keyframes() const; - template - void set_keyframes(Arg_&& arg, Args_... args); - std::string* mutable_keyframes(); - PROTOBUF_NODISCARD std::string* release_keyframes(); - void set_allocated_keyframes(std::string* value); - - private: - const std::string& _internal_keyframes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( - const std::string& value); - std::string* _internal_mutable_keyframes(); - - public: - // bytes pointcloud = 9; - 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); - - private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( - const std::string& value); - std::string* _internal_mutable_pointcloud(); + std::string* _internal_mutable_compressed_zip_data(); public: // int32 grpcServerCompressionFormat = 1; @@ -974,8 +872,8 @@ class restoreMapRequest final : public ::google::protobuf::Message class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 4, 9, 0, - 58, 2> + 2, 3, 0, + 50, 2> _table_; static constexpr const void* _raw_default_instance_ = @@ -996,13 +894,7 @@ class restoreMapRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena, const Impl_& from, const restoreMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr map_information_; - ::google::protobuf::internal::ArenaStringPtr cameraparameters_; - ::google::protobuf::internal::ArenaStringPtr coordinate_; - ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; - ::google::protobuf::internal::ArenaStringPtr identification_; - ::google::protobuf::internal::ArenaStringPtr keyframes_; - ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -5540,128 +5432,26 @@ class backupMapResponse final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { - kMapInformationFieldNumber = 1, - kCameraParametersFieldNumber = 2, - kCoordinateFieldNumber = 3, - kCovisibilityGraphFieldNumber = 4, - kIdentificationFieldNumber = 5, - kKeyframesFieldNumber = 6, - kPointcloudFieldNumber = 7, - kXpcfGrpcReturnValueFieldNumber = 8, + kCompressedZipDataFieldNumber = 1, + kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes map_information = 1; - void clear_map_information() ; - const std::string& map_information() const; - template - void set_map_information(Arg_&& arg, Args_... args); - std::string* mutable_map_information(); - PROTOBUF_NODISCARD std::string* release_map_information(); - void set_allocated_map_information(std::string* value); - - private: - const std::string& _internal_map_information() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( - const std::string& value); - std::string* _internal_mutable_map_information(); - - public: - // bytes cameraParameters = 2; - void clear_cameraparameters() ; - const std::string& cameraparameters() const; - template - void set_cameraparameters(Arg_&& arg, Args_... args); - std::string* mutable_cameraparameters(); - PROTOBUF_NODISCARD std::string* release_cameraparameters(); - void set_allocated_cameraparameters(std::string* value); - - private: - const std::string& _internal_cameraparameters() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( - const std::string& value); - std::string* _internal_mutable_cameraparameters(); - - public: - // bytes coordinate = 3; - void clear_coordinate() ; - const std::string& coordinate() const; - template - void set_coordinate(Arg_&& arg, Args_... args); - std::string* mutable_coordinate(); - PROTOBUF_NODISCARD std::string* release_coordinate(); - void set_allocated_coordinate(std::string* value); - - private: - const std::string& _internal_coordinate() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( - const std::string& value); - std::string* _internal_mutable_coordinate(); - - public: - // bytes covisibility_graph = 4; - void clear_covisibility_graph() ; - const std::string& covisibility_graph() const; - template - void set_covisibility_graph(Arg_&& arg, Args_... args); - std::string* mutable_covisibility_graph(); - PROTOBUF_NODISCARD std::string* release_covisibility_graph(); - void set_allocated_covisibility_graph(std::string* value); - - private: - const std::string& _internal_covisibility_graph() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( - const std::string& value); - std::string* _internal_mutable_covisibility_graph(); - - public: - // bytes identification = 5; - void clear_identification() ; - const std::string& identification() const; - template - void set_identification(Arg_&& arg, Args_... args); - std::string* mutable_identification(); - PROTOBUF_NODISCARD std::string* release_identification(); - void set_allocated_identification(std::string* value); - - private: - const std::string& _internal_identification() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( - const std::string& value); - std::string* _internal_mutable_identification(); - - public: - // bytes keyframes = 6; - void clear_keyframes() ; - const std::string& keyframes() const; - template - void set_keyframes(Arg_&& arg, Args_... args); - std::string* mutable_keyframes(); - PROTOBUF_NODISCARD std::string* release_keyframes(); - void set_allocated_keyframes(std::string* value); - - private: - const std::string& _internal_keyframes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( - const std::string& value); - std::string* _internal_mutable_keyframes(); - - public: - // bytes pointcloud = 7; - void clear_pointcloud() ; - const std::string& pointcloud() const; + // bytes compressed_zip_data = 1; + void clear_compressed_zip_data() ; + const std::string& compressed_zip_data() 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_compressed_zip_data(Arg_&& arg, Args_... args); + std::string* mutable_compressed_zip_data(); + PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); + void set_allocated_compressed_zip_data(std::string* value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& _internal_compressed_zip_data() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( const std::string& value); - std::string* _internal_mutable_pointcloud(); + std::string* _internal_mutable_compressed_zip_data(); public: - // sint32 xpcfGrpcReturnValue = 8; + // sint32 xpcfGrpcReturnValue = 2; void clear_xpcfgrpcreturnvalue() ; ::int32_t xpcfgrpcreturnvalue() const; void set_xpcfgrpcreturnvalue(::int32_t value); @@ -5676,7 +5466,7 @@ class backupMapResponse final : public ::google::protobuf::Message class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 3, 8, 0, + 1, 2, 0, 0, 2> _table_; @@ -5697,13 +5487,7 @@ class backupMapResponse final : public ::google::protobuf::Message inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, const backupMapResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr map_information_; - ::google::protobuf::internal::ArenaStringPtr cameraparameters_; - ::google::protobuf::internal::ArenaStringPtr coordinate_; - ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; - ::google::protobuf::internal::ArenaStringPtr identification_; - ::google::protobuf::internal::ArenaStringPtr keyframes_; - ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -5838,13 +5622,7 @@ class backupMapRequest final : public ::google::protobuf::Message // accessors ------------------------------------------------------- enum : int { kMapUUIDFieldNumber = 2, - kMapInformationFieldNumber = 3, - kCameraParametersFieldNumber = 4, - kCoordinateFieldNumber = 5, - kCovisibilityGraphFieldNumber = 6, - kIdentificationFieldNumber = 7, - kKeyframesFieldNumber = 8, - kPointcloudFieldNumber = 9, + kCompressedZipDataFieldNumber = 3, kGrpcServerCompressionFormatFieldNumber = 1, }; // string mapUUID = 2; @@ -5863,116 +5641,20 @@ class backupMapRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // bytes map_information = 3; - void clear_map_information() ; - const std::string& map_information() const; - template - void set_map_information(Arg_&& arg, Args_... args); - std::string* mutable_map_information(); - PROTOBUF_NODISCARD std::string* release_map_information(); - void set_allocated_map_information(std::string* value); - - private: - const std::string& _internal_map_information() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_map_information( - const std::string& value); - std::string* _internal_mutable_map_information(); - - public: - // bytes cameraParameters = 4; - void clear_cameraparameters() ; - const std::string& cameraparameters() const; - template - void set_cameraparameters(Arg_&& arg, Args_... args); - std::string* mutable_cameraparameters(); - PROTOBUF_NODISCARD std::string* release_cameraparameters(); - void set_allocated_cameraparameters(std::string* value); - - private: - const std::string& _internal_cameraparameters() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_cameraparameters( - const std::string& value); - std::string* _internal_mutable_cameraparameters(); - - public: - // bytes coordinate = 5; - void clear_coordinate() ; - const std::string& coordinate() const; - template - void set_coordinate(Arg_&& arg, Args_... args); - std::string* mutable_coordinate(); - PROTOBUF_NODISCARD std::string* release_coordinate(); - void set_allocated_coordinate(std::string* value); - - private: - const std::string& _internal_coordinate() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_coordinate( - const std::string& value); - std::string* _internal_mutable_coordinate(); - - public: - // bytes covisibility_graph = 6; - void clear_covisibility_graph() ; - const std::string& covisibility_graph() const; - template - void set_covisibility_graph(Arg_&& arg, Args_... args); - std::string* mutable_covisibility_graph(); - PROTOBUF_NODISCARD std::string* release_covisibility_graph(); - void set_allocated_covisibility_graph(std::string* value); - - private: - const std::string& _internal_covisibility_graph() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_covisibility_graph( - const std::string& value); - std::string* _internal_mutable_covisibility_graph(); - - public: - // bytes identification = 7; - void clear_identification() ; - const std::string& identification() const; - template - void set_identification(Arg_&& arg, Args_... args); - std::string* mutable_identification(); - PROTOBUF_NODISCARD std::string* release_identification(); - void set_allocated_identification(std::string* value); - - private: - const std::string& _internal_identification() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_identification( - const std::string& value); - std::string* _internal_mutable_identification(); - - public: - // bytes keyframes = 8; - void clear_keyframes() ; - const std::string& keyframes() const; - template - void set_keyframes(Arg_&& arg, Args_... args); - std::string* mutable_keyframes(); - PROTOBUF_NODISCARD std::string* release_keyframes(); - void set_allocated_keyframes(std::string* value); - - private: - const std::string& _internal_keyframes() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_keyframes( - const std::string& value); - std::string* _internal_mutable_keyframes(); - - public: - // bytes pointcloud = 9; - void clear_pointcloud() ; - const std::string& pointcloud() const; + // bytes compressed_zip_data = 3; + void clear_compressed_zip_data() ; + const std::string& compressed_zip_data() 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_compressed_zip_data(Arg_&& arg, Args_... args); + std::string* mutable_compressed_zip_data(); + PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); + void set_allocated_compressed_zip_data(std::string* value); private: - const std::string& _internal_pointcloud() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_pointcloud( + const std::string& _internal_compressed_zip_data() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( const std::string& value); - std::string* _internal_mutable_pointcloud(); + std::string* _internal_mutable_compressed_zip_data(); public: // int32 grpcServerCompressionFormat = 1; @@ -5990,8 +5672,8 @@ class backupMapRequest final : public ::google::protobuf::Message class _Internal; friend class ::google::protobuf::internal::TcParser; static const ::google::protobuf::internal::TcParseTable< - 4, 9, 0, - 57, 2> + 2, 3, 0, + 49, 2> _table_; static constexpr const void* _raw_default_instance_ = @@ -6012,13 +5694,7 @@ class backupMapRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena, const Impl_& from, const backupMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr map_information_; - ::google::protobuf::internal::ArenaStringPtr cameraparameters_; - ::google::protobuf::internal::ArenaStringPtr coordinate_; - ::google::protobuf::internal::ArenaStringPtr covisibility_graph_; - ::google::protobuf::internal::ArenaStringPtr identification_; - ::google::protobuf::internal::ArenaStringPtr keyframes_; - ::google::protobuf::internal::ArenaStringPtr pointcloud_; + ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -7731,1156 +7407,256 @@ inline void backupMapRequest::set_allocated_mapuuid(std::string* value) { // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.mapUUID) } -// bytes map_information = 3; -inline void backupMapRequest::clear_map_information() { +// bytes compressed_zip_data = 3; +inline void backupMapRequest::clear_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); } -inline const std::string& backupMapRequest::map_information() const +inline const std::string& backupMapRequest::compressed_zip_data() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.map_information) - return _internal_map_information(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.compressed_zip_data) + return _internal_compressed_zip_data(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_map_information(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_compressed_zip_data(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.map_information) + _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.compressed_zip_data) } -inline std::string* backupMapRequest::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_map_information(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.map_information) +inline std::string* backupMapRequest::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressed_zip_data(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.compressed_zip_data) return _s; } -inline const std::string& backupMapRequest::_internal_map_information() const { +inline const std::string& backupMapRequest::_internal_compressed_zip_data() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.map_information_.Get(); + return _impl_.compressed_zip_data_.Get(); } -inline void backupMapRequest::_internal_set_map_information(const std::string& value) { +inline void backupMapRequest::_internal_set_compressed_zip_data(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.Set(value, GetArena()); + _impl_.compressed_zip_data_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_map_information() { +inline std::string* backupMapRequest::_internal_mutable_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.map_information_.Mutable( GetArena()); + return _impl_.compressed_zip_data_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_map_information() { +inline std::string* backupMapRequest::release_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.map_information) - return _impl_.map_information_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.compressed_zip_data) + return _impl_.compressed_zip_data_.Release(); } -inline void backupMapRequest::set_allocated_map_information(std::string* value) { +inline void backupMapRequest::set_allocated_compressed_zip_data(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetAllocated(value, GetArena()); + _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.map_information_.IsDefault()) { - _impl_.map_information_.Set("", GetArena()); + if (_impl_.compressed_zip_data_.IsDefault()) { + _impl_.compressed_zip_data_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.map_information) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.compressed_zip_data) } -// bytes cameraParameters = 4; -inline void backupMapRequest::clear_cameraparameters() { +// ------------------------------------------------------------------- + +// backupMapResponse + +// bytes compressed_zip_data = 1; +inline void backupMapResponse::clear_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); } -inline const std::string& backupMapRequest::cameraparameters() const +inline const std::string& backupMapResponse::compressed_zip_data() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.cameraParameters) - return _internal_cameraparameters(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.compressed_zip_data) + return _internal_compressed_zip_data(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_cameraparameters(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_compressed_zip_data(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.cameraParameters) + _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.compressed_zip_data) } -inline std::string* backupMapRequest::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_cameraparameters(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.cameraParameters) +inline std::string* backupMapResponse::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressed_zip_data(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.compressed_zip_data) return _s; } -inline const std::string& backupMapRequest::_internal_cameraparameters() const { +inline const std::string& backupMapResponse::_internal_compressed_zip_data() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparameters_.Get(); + return _impl_.compressed_zip_data_.Get(); } -inline void backupMapRequest::_internal_set_cameraparameters(const std::string& value) { +inline void backupMapResponse::_internal_set_compressed_zip_data(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.Set(value, GetArena()); + _impl_.compressed_zip_data_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_cameraparameters() { +inline std::string* backupMapResponse::_internal_mutable_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparameters_.Mutable( GetArena()); + return _impl_.compressed_zip_data_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_cameraparameters() { +inline std::string* backupMapResponse::release_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.cameraParameters) - return _impl_.cameraparameters_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.compressed_zip_data) + return _impl_.compressed_zip_data_.Release(); } -inline void backupMapRequest::set_allocated_cameraparameters(std::string* value) { +inline void backupMapResponse::set_allocated_compressed_zip_data(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetAllocated(value, GetArena()); + _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparameters_.IsDefault()) { - _impl_.cameraparameters_.Set("", GetArena()); + if (_impl_.compressed_zip_data_.IsDefault()) { + _impl_.compressed_zip_data_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.cameraParameters) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.compressed_zip_data) } -// bytes coordinate = 5; -inline void backupMapRequest::clear_coordinate() { +// sint32 xpcfGrpcReturnValue = 2; +inline void backupMapResponse::clear_xpcfgrpcreturnvalue() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.ClearToEmpty(); -} -inline const std::string& backupMapRequest::coordinate() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.coordinate) - return _internal_coordinate(); + _impl_.xpcfgrpcreturnvalue_ = 0; } -template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_coordinate(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.coordinate) +inline ::int32_t backupMapResponse::xpcfgrpcreturnvalue() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.xpcfGrpcReturnValue) + return _internal_xpcfgrpcreturnvalue(); } -inline std::string* backupMapRequest::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_coordinate(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.coordinate) - return _s; +inline void backupMapResponse::set_xpcfgrpcreturnvalue(::int32_t value) { + _internal_set_xpcfgrpcreturnvalue(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.xpcfGrpcReturnValue) } -inline const std::string& backupMapRequest::_internal_coordinate() const { +inline ::int32_t backupMapResponse::_internal_xpcfgrpcreturnvalue() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.coordinate_.Get(); -} -inline void backupMapRequest::_internal_set_coordinate(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.Set(value, GetArena()); -} -inline std::string* backupMapRequest::_internal_mutable_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.coordinate_.Mutable( GetArena()); -} -inline std::string* backupMapRequest::release_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.coordinate) - return _impl_.coordinate_.Release(); + return _impl_.xpcfgrpcreturnvalue_; } -inline void backupMapRequest::set_allocated_coordinate(std::string* value) { +inline void backupMapResponse::_internal_set_xpcfgrpcreturnvalue(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.coordinate_.IsDefault()) { - _impl_.coordinate_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.coordinate) + _impl_.xpcfgrpcreturnvalue_ = value; } -// bytes covisibility_graph = 6; -inline void backupMapRequest::clear_covisibility_graph() { +// ------------------------------------------------------------------- + +// restoreMapRequest + +// int32 grpcServerCompressionFormat = 1; +inline void restoreMapRequest::clear_grpcservercompressionformat() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.ClearToEmpty(); -} -inline const std::string& backupMapRequest::covisibility_graph() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.covisibility_graph) - return _internal_covisibility_graph(); + _impl_.grpcservercompressionformat_ = 0; } -template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_covisibility_graph(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.covisibility_graph) +inline ::int32_t restoreMapRequest::grpcservercompressionformat() const { + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.grpcServerCompressionFormat) + return _internal_grpcservercompressionformat(); } -inline std::string* backupMapRequest::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_covisibility_graph(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.covisibility_graph) - return _s; +inline void restoreMapRequest::set_grpcservercompressionformat(::int32_t value) { + _internal_set_grpcservercompressionformat(value); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.grpcServerCompressionFormat) } -inline const std::string& backupMapRequest::_internal_covisibility_graph() const { +inline ::int32_t restoreMapRequest::_internal_grpcservercompressionformat() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.covisibility_graph_.Get(); -} -inline void backupMapRequest::_internal_set_covisibility_graph(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.Set(value, GetArena()); -} -inline std::string* backupMapRequest::_internal_mutable_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.covisibility_graph_.Mutable( GetArena()); -} -inline std::string* backupMapRequest::release_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.covisibility_graph) - return _impl_.covisibility_graph_.Release(); + return _impl_.grpcservercompressionformat_; } -inline void backupMapRequest::set_allocated_covisibility_graph(std::string* value) { +inline void restoreMapRequest::_internal_set_grpcservercompressionformat(::int32_t value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.covisibility_graph_.IsDefault()) { - _impl_.covisibility_graph_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.covisibility_graph) + _impl_.grpcservercompressionformat_ = value; } -// bytes identification = 7; -inline void backupMapRequest::clear_identification() { +// string mapUUID = 2; +inline void restoreMapRequest::clear_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.ClearToEmpty(); + _impl_.mapuuid_.ClearToEmpty(); } -inline const std::string& backupMapRequest::identification() const +inline const std::string& restoreMapRequest::mapuuid() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.identification) - return _internal_identification(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.mapUUID) + return _internal_mapuuid(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_identification(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_mapuuid(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.identification) + _impl_.mapuuid_.Set(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.mapUUID) } -inline std::string* backupMapRequest::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_identification(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.identification) +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& backupMapRequest::_internal_identification() const { +inline const std::string& restoreMapRequest::_internal_mapuuid() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.identification_.Get(); + return _impl_.mapuuid_.Get(); } -inline void backupMapRequest::_internal_set_identification(const std::string& value) { +inline void restoreMapRequest::_internal_set_mapuuid(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.Set(value, GetArena()); + _impl_.mapuuid_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_identification() { +inline std::string* restoreMapRequest::_internal_mutable_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.identification_.Mutable( GetArena()); + return _impl_.mapuuid_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_identification() { +inline std::string* restoreMapRequest::release_mapuuid() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.identification) - return _impl_.identification_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.mapUUID) + return _impl_.mapuuid_.Release(); } -inline void backupMapRequest::set_allocated_identification(std::string* value) { +inline void restoreMapRequest::set_allocated_mapuuid(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetAllocated(value, GetArena()); + _impl_.mapuuid_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.identification_.IsDefault()) { - _impl_.identification_.Set("", GetArena()); + if (_impl_.mapuuid_.IsDefault()) { + _impl_.mapuuid_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.identification) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.mapUUID) } -// bytes keyframes = 8; -inline void backupMapRequest::clear_keyframes() { +// bytes compressed_zip_data = 3; +inline void restoreMapRequest::clear_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); } -inline const std::string& backupMapRequest::keyframes() const +inline const std::string& restoreMapRequest::compressed_zip_data() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.keyframes) - return _internal_keyframes(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.compressed_zip_data) + return _internal_compressed_zip_data(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_keyframes(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_compressed_zip_data(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.keyframes) + _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.compressed_zip_data) } -inline std::string* backupMapRequest::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_keyframes(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.keyframes) +inline std::string* restoreMapRequest::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { + std::string* _s = _internal_mutable_compressed_zip_data(); + // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.compressed_zip_data) return _s; } -inline const std::string& backupMapRequest::_internal_keyframes() const { +inline const std::string& restoreMapRequest::_internal_compressed_zip_data() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframes_.Get(); + return _impl_.compressed_zip_data_.Get(); } -inline void backupMapRequest::_internal_set_keyframes(const std::string& value) { +inline void restoreMapRequest::_internal_set_compressed_zip_data(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.Set(value, GetArena()); + _impl_.compressed_zip_data_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_keyframes() { +inline std::string* restoreMapRequest::_internal_mutable_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.keyframes_.Mutable( GetArena()); + return _impl_.compressed_zip_data_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_keyframes() { +inline std::string* restoreMapRequest::release_compressed_zip_data() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.keyframes) - return _impl_.keyframes_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.compressed_zip_data) + return _impl_.compressed_zip_data_.Release(); } -inline void backupMapRequest::set_allocated_keyframes(std::string* value) { +inline void restoreMapRequest::set_allocated_compressed_zip_data(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetAllocated(value, GetArena()); + _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.keyframes_.IsDefault()) { - _impl_.keyframes_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.keyframes) -} - -// bytes pointcloud = 9; -inline void backupMapRequest::clear_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.ClearToEmpty(); -} -inline const std::string& backupMapRequest::pointcloud() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.pointcloud) - return _internal_pointcloud(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_pointcloud(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.pointcloud) -} -inline std::string* backupMapRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.pointcloud) - return _s; -} -inline const std::string& backupMapRequest::_internal_pointcloud() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pointcloud_.Get(); -} -inline void backupMapRequest::_internal_set_pointcloud(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.Set(value, GetArena()); -} -inline std::string* backupMapRequest::_internal_mutable_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pointcloud_.Mutable( GetArena()); -} -inline std::string* backupMapRequest::release_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.pointcloud) - return _impl_.pointcloud_.Release(); -} -inline void backupMapRequest::set_allocated_pointcloud(std::string* 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:grpcIMapsManager.backupMapRequest.pointcloud) -} - -// ------------------------------------------------------------------- - -// backupMapResponse - -// bytes map_information = 1; -inline void backupMapResponse::clear_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::map_information() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.map_information) - return _internal_map_information(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_map_information(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.map_information) -} -inline std::string* backupMapResponse::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_map_information(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.map_information) - return _s; -} -inline const std::string& backupMapResponse::_internal_map_information() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.map_information_.Get(); -} -inline void backupMapResponse::_internal_set_map_information(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.map_information_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.map_information) - return _impl_.map_information_.Release(); -} -inline void backupMapResponse::set_allocated_map_information(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.map_information_.IsDefault()) { - _impl_.map_information_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.map_information) -} - -// bytes cameraParameters = 2; -inline void backupMapResponse::clear_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::cameraparameters() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.cameraParameters) - return _internal_cameraparameters(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_cameraparameters(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.cameraParameters) -} -inline std::string* backupMapResponse::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_cameraparameters(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.cameraParameters) - return _s; -} -inline const std::string& backupMapResponse::_internal_cameraparameters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparameters_.Get(); -} -inline void backupMapResponse::_internal_set_cameraparameters(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparameters_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.cameraParameters) - return _impl_.cameraparameters_.Release(); -} -inline void backupMapResponse::set_allocated_cameraparameters(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparameters_.IsDefault()) { - _impl_.cameraparameters_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.cameraParameters) -} - -// bytes coordinate = 3; -inline void backupMapResponse::clear_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::coordinate() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.coordinate) - return _internal_coordinate(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_coordinate(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.coordinate) -} -inline std::string* backupMapResponse::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_coordinate(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.coordinate) - return _s; -} -inline const std::string& backupMapResponse::_internal_coordinate() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.coordinate_.Get(); -} -inline void backupMapResponse::_internal_set_coordinate(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.coordinate_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.coordinate) - return _impl_.coordinate_.Release(); -} -inline void backupMapResponse::set_allocated_coordinate(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.coordinate_.IsDefault()) { - _impl_.coordinate_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.coordinate) -} - -// bytes covisibility_graph = 4; -inline void backupMapResponse::clear_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::covisibility_graph() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.covisibility_graph) - return _internal_covisibility_graph(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_covisibility_graph(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.covisibility_graph) -} -inline std::string* backupMapResponse::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_covisibility_graph(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.covisibility_graph) - return _s; -} -inline const std::string& backupMapResponse::_internal_covisibility_graph() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.covisibility_graph_.Get(); -} -inline void backupMapResponse::_internal_set_covisibility_graph(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.covisibility_graph_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.covisibility_graph) - return _impl_.covisibility_graph_.Release(); -} -inline void backupMapResponse::set_allocated_covisibility_graph(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.covisibility_graph_.IsDefault()) { - _impl_.covisibility_graph_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.covisibility_graph) -} - -// bytes identification = 5; -inline void backupMapResponse::clear_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::identification() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.identification) - return _internal_identification(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_identification(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.identification) -} -inline std::string* backupMapResponse::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_identification(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.identification) - return _s; -} -inline const std::string& backupMapResponse::_internal_identification() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.identification_.Get(); -} -inline void backupMapResponse::_internal_set_identification(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.identification_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.identification) - return _impl_.identification_.Release(); -} -inline void backupMapResponse::set_allocated_identification(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.identification_.IsDefault()) { - _impl_.identification_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.identification) -} - -// bytes keyframes = 6; -inline void backupMapResponse::clear_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::keyframes() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.keyframes) - return _internal_keyframes(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_keyframes(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.keyframes) -} -inline std::string* backupMapResponse::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_keyframes(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.keyframes) - return _s; -} -inline const std::string& backupMapResponse::_internal_keyframes() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframes_.Get(); -} -inline void backupMapResponse::_internal_set_keyframes(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.keyframes_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.keyframes) - return _impl_.keyframes_.Release(); -} -inline void backupMapResponse::set_allocated_keyframes(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.keyframes_.IsDefault()) { - _impl_.keyframes_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.keyframes) -} - -// bytes pointcloud = 7; -inline void backupMapResponse::clear_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.ClearToEmpty(); -} -inline const std::string& backupMapResponse::pointcloud() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.pointcloud) - return _internal_pointcloud(); -} -template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_pointcloud(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.pointcloud) -} -inline std::string* backupMapResponse::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.pointcloud) - return _s; -} -inline const std::string& backupMapResponse::_internal_pointcloud() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pointcloud_.Get(); -} -inline void backupMapResponse::_internal_set_pointcloud(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.Set(value, GetArena()); -} -inline std::string* backupMapResponse::_internal_mutable_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pointcloud_.Mutable( GetArena()); -} -inline std::string* backupMapResponse::release_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.pointcloud) - return _impl_.pointcloud_.Release(); -} -inline void backupMapResponse::set_allocated_pointcloud(std::string* 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:grpcIMapsManager.backupMapResponse.pointcloud) -} - -// sint32 xpcfGrpcReturnValue = 8; -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 map_information = 3; -inline void restoreMapRequest::clear_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::map_information() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.map_information) - return _internal_map_information(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_map_information(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.map_information) -} -inline std::string* restoreMapRequest::mutable_map_information() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_map_information(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.map_information) - return _s; -} -inline const std::string& restoreMapRequest::_internal_map_information() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.map_information_.Get(); -} -inline void restoreMapRequest::_internal_set_map_information(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.map_information_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_map_information() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.map_information) - return _impl_.map_information_.Release(); -} -inline void restoreMapRequest::set_allocated_map_information(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.map_information_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.map_information_.IsDefault()) { - _impl_.map_information_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.map_information) -} - -// bytes cameraParameters = 4; -inline void restoreMapRequest::clear_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::cameraparameters() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.cameraParameters) - return _internal_cameraparameters(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_cameraparameters(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.cameraParameters) -} -inline std::string* restoreMapRequest::mutable_cameraparameters() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_cameraparameters(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.cameraParameters) - return _s; -} -inline const std::string& restoreMapRequest::_internal_cameraparameters() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.cameraparameters_.Get(); -} -inline void restoreMapRequest::_internal_set_cameraparameters(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.cameraparameters_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_cameraparameters() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.cameraParameters) - return _impl_.cameraparameters_.Release(); -} -inline void restoreMapRequest::set_allocated_cameraparameters(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.cameraparameters_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.cameraparameters_.IsDefault()) { - _impl_.cameraparameters_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.cameraParameters) -} - -// bytes coordinate = 5; -inline void restoreMapRequest::clear_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::coordinate() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.coordinate) - return _internal_coordinate(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_coordinate(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.coordinate) -} -inline std::string* restoreMapRequest::mutable_coordinate() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_coordinate(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.coordinate) - return _s; -} -inline const std::string& restoreMapRequest::_internal_coordinate() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.coordinate_.Get(); -} -inline void restoreMapRequest::_internal_set_coordinate(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.coordinate_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_coordinate() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.coordinate) - return _impl_.coordinate_.Release(); -} -inline void restoreMapRequest::set_allocated_coordinate(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.coordinate_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.coordinate_.IsDefault()) { - _impl_.coordinate_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.coordinate) -} - -// bytes covisibility_graph = 6; -inline void restoreMapRequest::clear_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::covisibility_graph() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.covisibility_graph) - return _internal_covisibility_graph(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_covisibility_graph(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.covisibility_graph) -} -inline std::string* restoreMapRequest::mutable_covisibility_graph() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_covisibility_graph(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.covisibility_graph) - return _s; -} -inline const std::string& restoreMapRequest::_internal_covisibility_graph() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.covisibility_graph_.Get(); -} -inline void restoreMapRequest::_internal_set_covisibility_graph(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.covisibility_graph_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_covisibility_graph() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.covisibility_graph) - return _impl_.covisibility_graph_.Release(); -} -inline void restoreMapRequest::set_allocated_covisibility_graph(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.covisibility_graph_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.covisibility_graph_.IsDefault()) { - _impl_.covisibility_graph_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.covisibility_graph) -} - -// bytes identification = 7; -inline void restoreMapRequest::clear_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::identification() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.identification) - return _internal_identification(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_identification(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.identification) -} -inline std::string* restoreMapRequest::mutable_identification() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_identification(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.identification) - return _s; -} -inline const std::string& restoreMapRequest::_internal_identification() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.identification_.Get(); -} -inline void restoreMapRequest::_internal_set_identification(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.identification_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_identification() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.identification) - return _impl_.identification_.Release(); -} -inline void restoreMapRequest::set_allocated_identification(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.identification_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.identification_.IsDefault()) { - _impl_.identification_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.identification) -} - -// bytes keyframes = 8; -inline void restoreMapRequest::clear_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::keyframes() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.keyframes) - return _internal_keyframes(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_keyframes(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.keyframes) -} -inline std::string* restoreMapRequest::mutable_keyframes() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_keyframes(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.keyframes) - return _s; -} -inline const std::string& restoreMapRequest::_internal_keyframes() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.keyframes_.Get(); -} -inline void restoreMapRequest::_internal_set_keyframes(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.keyframes_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_keyframes() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.keyframes) - return _impl_.keyframes_.Release(); -} -inline void restoreMapRequest::set_allocated_keyframes(std::string* value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.keyframes_.SetAllocated(value, GetArena()); - #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.keyframes_.IsDefault()) { - _impl_.keyframes_.Set("", GetArena()); - } - #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.keyframes) -} - -// bytes pointcloud = 9; -inline void restoreMapRequest::clear_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.ClearToEmpty(); -} -inline const std::string& restoreMapRequest::pointcloud() const - ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.pointcloud) - return _internal_pointcloud(); -} -template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_pointcloud(Arg_&& arg, - Args_... args) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.pointcloud) -} -inline std::string* restoreMapRequest::mutable_pointcloud() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_pointcloud(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.pointcloud) - return _s; -} -inline const std::string& restoreMapRequest::_internal_pointcloud() const { - ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.pointcloud_.Get(); -} -inline void restoreMapRequest::_internal_set_pointcloud(const std::string& value) { - ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.pointcloud_.Set(value, GetArena()); -} -inline std::string* restoreMapRequest::_internal_mutable_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.pointcloud_.Mutable( GetArena()); -} -inline std::string* restoreMapRequest::release_pointcloud() { - ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.pointcloud) - return _impl_.pointcloud_.Release(); -} -inline void restoreMapRequest::set_allocated_pointcloud(std::string* 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()); + if (_impl_.compressed_zip_data_.IsDefault()) { + _impl_.compressed_zip_data_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.pointcloud) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.compressed_zip_data) } // ------------------------------------------------------------------- diff --git a/gen/proto/grpcIFrontEndService.proto b/gen/proto/grpcIFrontEndService.proto index b7f36b8..ec95eaa 100644 --- a/gen/proto/grpcIFrontEndService.proto +++ b/gen/proto/grpcIFrontEndService.proto @@ -374,25 +374,13 @@ message backupMapRequest int32 grpcServerCompressionFormat = 1; string accessToken = 2; string mapUUID = 3; -bytes map_information = 4; -bytes cameraParameters = 5; -bytes coordinate = 6; -bytes covisibility_graph = 7; -bytes identification = 8; -bytes keyframes = 9; -bytes pointcloud = 10; +bytes compressed_zip_data = 4; } message backupMapResponse { -bytes map_information = 1; -bytes cameraParameters = 2; -bytes coordinate = 3; -bytes covisibility_graph = 4; -bytes identification = 5; -bytes keyframes = 6; -bytes pointcloud = 7; -sint32 xpcfGrpcReturnValue = 8; +bytes compressed_zip_data = 1; +sint32 xpcfGrpcReturnValue = 2; } message restoreMapRequest @@ -400,13 +388,7 @@ message restoreMapRequest int32 grpcServerCompressionFormat = 1; string accessToken = 2; string mapUUID = 3; -bytes map_information = 4; -bytes cameraParameters = 5; -bytes coordinate = 6; -bytes covisibility_graph = 7; -bytes identification = 8; -bytes keyframes = 9; -bytes pointcloud = 10; +bytes compressed_zip_data = 4; } message restoreMapResponse diff --git a/gen/proto/grpcIMapsManagerService.proto b/gen/proto/grpcIMapsManagerService.proto index 4ab63da..8039a3c 100644 --- a/gen/proto/grpcIMapsManagerService.proto +++ b/gen/proto/grpcIMapsManagerService.proto @@ -126,38 +126,20 @@ message backupMapRequest { int32 grpcServerCompressionFormat = 1; string mapUUID = 2; -bytes map_information = 3; -bytes cameraParameters = 4; -bytes coordinate = 5; -bytes covisibility_graph = 6; -bytes identification = 7; -bytes keyframes = 8; -bytes pointcloud = 9; +bytes compressed_zip_data = 3; } message backupMapResponse { -bytes map_information = 1; -bytes cameraParameters = 2; -bytes coordinate = 3; -bytes covisibility_graph = 4; -bytes identification = 5; -bytes keyframes = 6; -bytes pointcloud = 7; -sint32 xpcfGrpcReturnValue = 8; +bytes compressed_zip_data = 1; +sint32 xpcfGrpcReturnValue = 2; } message restoreMapRequest { int32 grpcServerCompressionFormat = 1; string mapUUID = 2; -bytes map_information = 3; -bytes cameraParameters = 4; -bytes coordinate = 5; -bytes covisibility_graph = 6; -bytes identification = 7; -bytes keyframes = 8; -bytes pointcloud = 9; +bytes compressed_zip_data = 3; } message restoreMapResponse diff --git a/gen/src/IFrontEnd_grpcProxy.cpp b/gen/src/IFrontEnd_grpcProxy.cpp index 3c26d05..1158840 100644 --- a/gen/src/IFrontEnd_grpcProxy.cpp +++ b/gen/src/IFrontEnd_grpcProxy.cpp @@ -887,7 +887,7 @@ SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::getMapInfo(std::string const& a } -SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::backupMap(std::string const& accessToken, std::string const& mapUUID, std::vector& map_information, std::vector& cameraParameters, std::vector& coordinate, std::vector& covisibility_graph, std::vector& identification, std::vector& keyframes, std::vector& pointcloud) const +SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::backupMap(std::string const& accessToken, std::string const& mapUUID, std::vector& compressed_zip_data) const { ::grpc::ClientContext context; ::grpcIFrontEnd::backupMapRequest reqIn; @@ -899,13 +899,7 @@ SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::backupMap(std::string const& ac #endif reqIn.set_accesstoken(accessToken); reqIn.set_mapuuid(mapUUID); - reqIn.set_map_information(xpcf::serialize>(map_information)); - reqIn.set_cameraparameters(xpcf::serialize>(cameraParameters)); - reqIn.set_coordinate(xpcf::serialize>(coordinate)); - reqIn.set_covisibility_graph(xpcf::serialize>(covisibility_graph)); - reqIn.set_identification(xpcf::serialize>(identification)); - reqIn.set_keyframes(xpcf::serialize>(keyframes)); - reqIn.set_pointcloud(xpcf::serialize>(pointcloud)); + reqIn.set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); #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; @@ -921,18 +915,12 @@ SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::backupMap(std::string const& ac throw xpcf::RemotingException("grpcIFrontEndService","backupMap",static_cast(grpcRemoteStatus.error_code())); } - map_information = xpcf::deserialize>(respOut.map_information()); - cameraParameters = xpcf::deserialize>(respOut.cameraparameters()); - coordinate = xpcf::deserialize>(respOut.coordinate()); - covisibility_graph = xpcf::deserialize>(respOut.covisibility_graph()); - identification = xpcf::deserialize>(respOut.identification()); - keyframes = xpcf::deserialize>(respOut.keyframes()); - pointcloud = xpcf::deserialize>(respOut.pointcloud()); + compressed_zip_data = xpcf::deserialize>(respOut.compressed_zip_data()); return static_cast(respOut.xpcfgrpcreturnvalue()); } -SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::restoreMap(std::string const& accessToken, std::string const& mapUUID, std::vector const& map_information, std::vector const& cameraParameters, std::vector const& coordinate, std::vector const& covisibility_graph, std::vector const& identification, std::vector const& keyframes, std::vector const& pointcloud) +SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::restoreMap(std::string const& accessToken, std::string const& mapUUID, std::vector const& compressed_zip_data) { ::grpc::ClientContext context; ::grpcIFrontEnd::restoreMapRequest reqIn; @@ -944,13 +932,7 @@ SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::restoreMap(std::string const& a #endif reqIn.set_accesstoken(accessToken); reqIn.set_mapuuid(mapUUID); - reqIn.set_map_information(xpcf::serialize>(map_information)); - reqIn.set_cameraparameters(xpcf::serialize>(cameraParameters)); - reqIn.set_coordinate(xpcf::serialize>(coordinate)); - reqIn.set_covisibility_graph(xpcf::serialize>(covisibility_graph)); - reqIn.set_identification(xpcf::serialize>(identification)); - reqIn.set_keyframes(xpcf::serialize>(keyframes)); - reqIn.set_pointcloud(xpcf::serialize>(pointcloud)); + reqIn.set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); #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; diff --git a/gen/src/IFrontEnd_grpcServer.cpp b/gen/src/IFrontEnd_grpcServer.cpp index 43acf3d..e82473a 100644 --- a/gen/src/IFrontEnd_grpcServer.cpp +++ b/gen/src/IFrontEnd_grpcServer.cpp @@ -718,21 +718,9 @@ ::grpc::Status IFrontEnd_grpcServer::grpcIFrontEndServiceImpl::backupMap(::grpc: #endif std::string accessToken = request->accesstoken(); std::string mapUUID = request->mapuuid(); - std::vector map_information = xpcf::deserialize>(request->map_information()); - std::vector cameraParameters = xpcf::deserialize>(request->cameraparameters()); - std::vector coordinate = xpcf::deserialize>(request->coordinate()); - std::vector covisibility_graph = xpcf::deserialize>(request->covisibility_graph()); - std::vector identification = xpcf::deserialize>(request->identification()); - std::vector keyframes = xpcf::deserialize>(request->keyframes()); - std::vector pointcloud = xpcf::deserialize>(request->pointcloud()); - SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->backupMap(accessToken, mapUUID, map_information, cameraParameters, coordinate, covisibility_graph, identification, keyframes, pointcloud); - response->set_map_information(xpcf::serialize>(map_information)); - response->set_cameraparameters(xpcf::serialize>(cameraParameters)); - response->set_coordinate(xpcf::serialize>(coordinate)); - response->set_covisibility_graph(xpcf::serialize>(covisibility_graph)); - response->set_identification(xpcf::serialize>(identification)); - response->set_keyframes(xpcf::serialize>(keyframes)); - response->set_pointcloud(xpcf::serialize>(pointcloud)); + std::vector compressed_zip_data = xpcf::deserialize>(request->compressed_zip_data()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->backupMap(accessToken, mapUUID, compressed_zip_data); + response->set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); response->set_xpcfgrpcreturnvalue(static_cast(returnValue)); #ifdef ENABLE_SERVER_TIMERS boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); @@ -756,14 +744,8 @@ ::grpc::Status IFrontEnd_grpcServer::grpcIFrontEndServiceImpl::restoreMap(::grpc #endif std::string accessToken = request->accesstoken(); std::string mapUUID = request->mapuuid(); - std::vector map_information = xpcf::deserialize>(request->map_information()); - std::vector cameraParameters = xpcf::deserialize>(request->cameraparameters()); - std::vector coordinate = xpcf::deserialize>(request->coordinate()); - std::vector covisibility_graph = xpcf::deserialize>(request->covisibility_graph()); - std::vector identification = xpcf::deserialize>(request->identification()); - std::vector keyframes = xpcf::deserialize>(request->keyframes()); - std::vector pointcloud = xpcf::deserialize>(request->pointcloud()); - SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->restoreMap(accessToken, mapUUID, map_information, cameraParameters, coordinate, covisibility_graph, identification, keyframes, pointcloud); + std::vector compressed_zip_data = xpcf::deserialize>(request->compressed_zip_data()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->restoreMap(accessToken, mapUUID, compressed_zip_data); response->set_xpcfgrpcreturnvalue(static_cast(returnValue)); #ifdef ENABLE_SERVER_TIMERS boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); diff --git a/gen/src/IMapsManager_grpcProxy.cpp b/gen/src/IMapsManager_grpcProxy.cpp index 77131ab..e7fcc52 100644 --- a/gen/src/IMapsManager_grpcProxy.cpp +++ b/gen/src/IMapsManager_grpcProxy.cpp @@ -336,7 +336,7 @@ SolAR::FrameworkReturnCode IMapsManager_grpcProxy::getMapInfo(std::string const } -SolAR::FrameworkReturnCode IMapsManager_grpcProxy::backupMap(std::string const& mapUUID, std::vector& map_information, std::vector& cameraParameters, std::vector& coordinate, std::vector& covisibility_graph, std::vector& identification, std::vector& keyframes, std::vector& pointcloud) const +SolAR::FrameworkReturnCode IMapsManager_grpcProxy::backupMap(std::string const& mapUUID, std::vector& compressed_zip_data) const { ::grpc::ClientContext context; ::grpcIMapsManager::backupMapRequest reqIn; @@ -347,13 +347,7 @@ SolAR::FrameworkReturnCode IMapsManager_grpcProxy::backupMap(std::string const& reqIn.set_grpcservercompressionformat (static_cast(serverCompressionType)); #endif reqIn.set_mapuuid(mapUUID); - reqIn.set_map_information(xpcf::serialize>(map_information)); - reqIn.set_cameraparameters(xpcf::serialize>(cameraParameters)); - reqIn.set_coordinate(xpcf::serialize>(coordinate)); - reqIn.set_covisibility_graph(xpcf::serialize>(covisibility_graph)); - reqIn.set_identification(xpcf::serialize>(identification)); - reqIn.set_keyframes(xpcf::serialize>(keyframes)); - reqIn.set_pointcloud(xpcf::serialize>(pointcloud)); + reqIn.set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); #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; @@ -369,18 +363,12 @@ SolAR::FrameworkReturnCode IMapsManager_grpcProxy::backupMap(std::string const& throw xpcf::RemotingException("grpcIMapsManagerService","backupMap",static_cast(grpcRemoteStatus.error_code())); } - map_information = xpcf::deserialize>(respOut.map_information()); - cameraParameters = xpcf::deserialize>(respOut.cameraparameters()); - coordinate = xpcf::deserialize>(respOut.coordinate()); - covisibility_graph = xpcf::deserialize>(respOut.covisibility_graph()); - identification = xpcf::deserialize>(respOut.identification()); - keyframes = xpcf::deserialize>(respOut.keyframes()); - pointcloud = xpcf::deserialize>(respOut.pointcloud()); + compressed_zip_data = xpcf::deserialize>(respOut.compressed_zip_data()); return static_cast(respOut.xpcfgrpcreturnvalue()); } -SolAR::FrameworkReturnCode IMapsManager_grpcProxy::restoreMap(std::string const& mapUUID, std::vector const& map_information, std::vector const& cameraParameters, std::vector const& coordinate, std::vector const& covisibility_graph, std::vector const& identification, std::vector const& keyframes, std::vector const& pointcloud) +SolAR::FrameworkReturnCode IMapsManager_grpcProxy::restoreMap(std::string const& mapUUID, std::vector const& compressed_zip_data) { ::grpc::ClientContext context; ::grpcIMapsManager::restoreMapRequest reqIn; @@ -391,13 +379,7 @@ SolAR::FrameworkReturnCode IMapsManager_grpcProxy::restoreMap(std::string const reqIn.set_grpcservercompressionformat (static_cast(serverCompressionType)); #endif reqIn.set_mapuuid(mapUUID); - reqIn.set_map_information(xpcf::serialize>(map_information)); - reqIn.set_cameraparameters(xpcf::serialize>(cameraParameters)); - reqIn.set_coordinate(xpcf::serialize>(coordinate)); - reqIn.set_covisibility_graph(xpcf::serialize>(covisibility_graph)); - reqIn.set_identification(xpcf::serialize>(identification)); - reqIn.set_keyframes(xpcf::serialize>(keyframes)); - reqIn.set_pointcloud(xpcf::serialize>(pointcloud)); + reqIn.set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); #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; diff --git a/gen/src/IMapsManager_grpcServer.cpp b/gen/src/IMapsManager_grpcServer.cpp index 98c1db9..2ba389e 100644 --- a/gen/src/IMapsManager_grpcServer.cpp +++ b/gen/src/IMapsManager_grpcServer.cpp @@ -278,21 +278,9 @@ ::grpc::Status IMapsManager_grpcServer::grpcIMapsManagerServiceImpl::backupMap(: std::cout << "====> IMapsManager_grpcServer::backupMap request received at " << to_simple_string(start) << std::endl; #endif std::string mapUUID = request->mapuuid(); - std::vector map_information = xpcf::deserialize>(request->map_information()); - std::vector cameraParameters = xpcf::deserialize>(request->cameraparameters()); - std::vector coordinate = xpcf::deserialize>(request->coordinate()); - std::vector covisibility_graph = xpcf::deserialize>(request->covisibility_graph()); - std::vector identification = xpcf::deserialize>(request->identification()); - std::vector keyframes = xpcf::deserialize>(request->keyframes()); - std::vector pointcloud = xpcf::deserialize>(request->pointcloud()); - SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->backupMap(mapUUID, map_information, cameraParameters, coordinate, covisibility_graph, identification, keyframes, pointcloud); - response->set_map_information(xpcf::serialize>(map_information)); - response->set_cameraparameters(xpcf::serialize>(cameraParameters)); - response->set_coordinate(xpcf::serialize>(coordinate)); - response->set_covisibility_graph(xpcf::serialize>(covisibility_graph)); - response->set_identification(xpcf::serialize>(identification)); - response->set_keyframes(xpcf::serialize>(keyframes)); - response->set_pointcloud(xpcf::serialize>(pointcloud)); + std::vector compressed_zip_data = xpcf::deserialize>(request->compressed_zip_data()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->backupMap(mapUUID, compressed_zip_data); + response->set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); response->set_xpcfgrpcreturnvalue(static_cast(returnValue)); #ifdef ENABLE_SERVER_TIMERS boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); @@ -315,14 +303,8 @@ ::grpc::Status IMapsManager_grpcServer::grpcIMapsManagerServiceImpl::restoreMap( std::cout << "====> IMapsManager_grpcServer::restoreMap request received at " << to_simple_string(start) << std::endl; #endif std::string mapUUID = request->mapuuid(); - std::vector map_information = xpcf::deserialize>(request->map_information()); - std::vector cameraParameters = xpcf::deserialize>(request->cameraparameters()); - std::vector coordinate = xpcf::deserialize>(request->coordinate()); - std::vector covisibility_graph = xpcf::deserialize>(request->covisibility_graph()); - std::vector identification = xpcf::deserialize>(request->identification()); - std::vector keyframes = xpcf::deserialize>(request->keyframes()); - std::vector pointcloud = xpcf::deserialize>(request->pointcloud()); - SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->restoreMap(mapUUID, map_information, cameraParameters, coordinate, covisibility_graph, identification, keyframes, pointcloud); + std::vector compressed_zip_data = xpcf::deserialize>(request->compressed_zip_data()); + SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->restoreMap(mapUUID, compressed_zip_data); response->set_xpcfgrpcreturnvalue(static_cast(returnValue)); #ifdef ENABLE_SERVER_TIMERS boost::posix_time::ptime end = boost::posix_time::microsec_clock::universal_time(); diff --git a/gen/src/grpcIFrontEndService.pb.cc b/gen/src/grpcIFrontEndService.pb.cc index 1823ee6..d655a03 100644 --- a/gen/src/grpcIFrontEndService.pb.cc +++ b/gen/src/grpcIFrontEndService.pb.cc @@ -378,25 +378,7 @@ inline constexpr restoreMapRequest::Impl_::Impl_( mapuuid_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), - map_information_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - cameraparameters_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - coordinate_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - covisibility_graph_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - identification_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - keyframes_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - pointcloud_( + compressed_zip_data_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), grpcservercompressionformat_{0}, @@ -1501,25 +1483,7 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT inline constexpr backupMapResponse::Impl_::Impl_( ::_pbi::ConstantInitialized) noexcept - : map_information_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - cameraparameters_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - coordinate_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - covisibility_graph_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - identification_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - keyframes_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - pointcloud_( + : compressed_zip_data_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), xpcfgrpcreturnvalue_{0}, @@ -1547,25 +1511,7 @@ inline constexpr backupMapRequest::Impl_::Impl_( mapuuid_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), - map_information_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - cameraparameters_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - coordinate_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - covisibility_graph_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - identification_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - keyframes_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - pointcloud_( + compressed_zip_data_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), grpcservercompressionformat_{0}, @@ -2168,13 +2114,7 @@ const ::uint32_t 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_.map_information_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.cameraparameters_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.coordinate_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.covisibility_graph_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.identification_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.keyframes_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.pointcloud_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.compressed_zip_data_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _internal_metadata_), ~0u, // no _extensions_ @@ -2183,13 +2123,7 @@ const ::uint32_t ~0u, // no _inlined_string_donated_ ~0u, // no _split_ ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.map_information_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.cameraparameters_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.coordinate_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.covisibility_graph_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.identification_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.keyframes_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.pointcloud_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.compressed_zip_data_), PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.xpcfgrpcreturnvalue_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _internal_metadata_), @@ -2202,13 +2136,7 @@ const ::uint32_t 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_.map_information_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.cameraparameters_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.coordinate_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.covisibility_graph_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.identification_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.keyframes_), - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.pointcloud_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.compressed_zip_data_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapResponse, _internal_metadata_), ~0u, // no _extensions_ @@ -2345,15 +2273,15 @@ static const ::_pbi::MigrationSchema {535, -1, -1, sizeof(::grpcIFrontEnd::getMapInfoRequest)}, {551, -1, -1, sizeof(::grpcIFrontEnd::getMapInfoResponse)}, {565, -1, -1, sizeof(::grpcIFrontEnd::backupMapRequest)}, - {583, -1, -1, sizeof(::grpcIFrontEnd::backupMapResponse)}, - {599, -1, -1, sizeof(::grpcIFrontEnd::restoreMapRequest)}, - {617, -1, -1, sizeof(::grpcIFrontEnd::restoreMapResponse)}, - {626, -1, -1, sizeof(::grpcIFrontEnd::requestMapProcessingRequest)}, - {639, -1, -1, sizeof(::grpcIFrontEnd::requestMapProcessingResponse)}, - {648, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingStatusRequest)}, - {662, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingStatusResponse)}, - {674, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingDataRequest)}, - {687, -1, -1, sizeof(::grpcIFrontEnd::getMapProcessingDataResponse)}, + {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, @@ -2556,122 +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\"\377\001\n\020backupMapRequest" - "\022#\n\033grpcServerCompressionFormat\030\001 \001(\005\022\023\n" - "\013accessToken\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\027\n\017m" - "ap_information\030\004 \001(\014\022\030\n\020cameraParameters" - "\030\005 \001(\014\022\022\n\ncoordinate\030\006 \001(\014\022\032\n\022covisibili" - "ty_graph\030\007 \001(\014\022\026\n\016identification\030\010 \001(\014\022\021" - "\n\tkeyframes\030\t \001(\014\022\022\n\npointcloud\030\n \001(\014\"\322\001" - "\n\021backupMapResponse\022\027\n\017map_information\030\001" - " \001(\014\022\030\n\020cameraParameters\030\002 \001(\014\022\022\n\ncoordi" - "nate\030\003 \001(\014\022\032\n\022covisibility_graph\030\004 \001(\014\022\026" - "\n\016identification\030\005 \001(\014\022\021\n\tkeyframes\030\006 \001(" - "\014\022\022\n\npointcloud\030\007 \001(\014\022\033\n\023xpcfGrpcReturnV" - "alue\030\010 \001(\021\"\200\002\n\021restoreMapRequest\022#\n\033grpc" - "ServerCompressionFormat\030\001 \001(\005\022\023\n\013accessT" - "oken\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\027\n\017map_infor" - "mation\030\004 \001(\014\022\030\n\020cameraParameters\030\005 \001(\014\022\022" - "\n\ncoordinate\030\006 \001(\014\022\032\n\022covisibility_graph" - "\030\007 \001(\014\022\026\n\016identification\030\010 \001(\014\022\021\n\tkeyfra" - "mes\030\t \001(\014\022\022\n\npointcloud\030\n \001(\014\"1\n\022restore" - "MapResponse\022\033\n\023xpcfGrpcReturnValue\030\001 \001(\021" - "\"\227\001\n\033requestMapProcessingRequest\022#\n\033grpc" - "ServerCompressionFormat\030\001 \001(\005\022\023\n\013accessT" - "oken\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\025\n\rresultMap" - "UUID\030\004 \001(\t\022\026\n\016processingType\030\005 \001(\021\";\n\034re" - "questMapProcessingResponse\022\033\n\023xpcfGrpcRe" - "turnValue\030\001 \001(\021\"\252\001\n\035getMapProcessingStat" - "usRequest\022#\n\033grpcServerCompressionFormat" - "\030\001 \001(\005\022\023\n\013accessToken\030\002 \001(\t\022\025\n\rresultMap" - "UUID\030\003 \001(\t\022\016\n\006status\030\004 \001(\021\022\026\n\016processing" - "Type\030\005 \001(\021\022\020\n\010progress\030\006 \001(\002\"w\n\036getMapPr" - "ocessingStatusResponse\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\"\231\001\n\033getMap" - "ProcessingDataRequest\022#\n\033grpcServerCompr" - "essionFormat\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\034getMapProce" - "ssingDataResponse\022\022\n\npointCloud\030\001 \001(\014\022\025\n" - "\rkeyframePoses\030\002 \001(\014\022\033\n\023xpcfGrpcReturnVa" - "lue\030\003 \001(\0212\351\027\n\024grpcIFrontEndService\022_\n\016re" - "gisterClient\022$.grpcIFrontEnd.registerCli" - "entRequest\032%.grpcIFrontEnd.registerClien" - "tResponse\"\000\022e\n\020unregisterClient\022&.grpcIF" - "rontEnd.unregisterClientRequest\032\'.grpcIF" - "rontEnd.unregisterClientResponse\"\000\022h\n\021ge" - "tAllClientsUUID\022\'.grpcIFrontEnd.getAllCl" - "ientsUUIDRequest\032(.grpcIFrontEnd.getAllC" - "lientsUUIDResponse\"\000\022\\\n\rgetDeviceInfo\022#." - "grpcIFrontEnd.getDeviceInfoRequest\032$.grp" - "cIFrontEnd.getDeviceInfoResponse\"\000\022S\n\nin" - "it_grpc0\022 .grpcIFrontEnd.init_grpc0Reque" - "st\032!.grpcIFrontEnd.init_grpc0Response\"\000\022" - "S\n\ninit_grpc1\022 .grpcIFrontEnd.init_grpc1" - "Request\032!.grpcIFrontEnd.init_grpc1Respon" - "se\"\000\022D\n\005start\022\033.grpcIFrontEnd.startReque" - "st\032\034.grpcIFrontEnd.startResponse\"\000\022A\n\004st" - "op\022\032.grpcIFrontEnd.stopRequest\032\033.grpcIFr" - "ontEnd.stopResponse\"\000\022h\n\021getProcessingMo" - "de\022\'.grpcIFrontEnd.getProcessingModeRequ" - "est\032(.grpcIFrontEnd.getProcessingModeRes" - "ponse\"\000\022\200\001\n\031setCameraParameters_grpc0\022/." - "grpcIFrontEnd.setCameraParameters_grpc0R" - "equest\0320.grpcIFrontEnd.setCameraParamete" - "rs_grpc0Response\"\000\022\200\001\n\031setCameraParamete" - "rs_grpc1\022/.grpcIFrontEnd.setCameraParame" - "ters_grpc1Request\0320.grpcIFrontEnd.setCam" - "eraParameters_grpc1Response\"\000\022\203\001\n\032setRec" - "tificationParameters\0220.grpcIFrontEnd.set" - "RectificationParametersRequest\0321.grpcIFr" - "ontEnd.setRectificationParametersRespons" - "e\"\000\022n\n\023getCameraParameters\022).grpcIFrontE" - "nd.getCameraParametersRequest\032*.grpcIFro" - "ntEnd.getCameraParametersResponse\"\000\022n\n\023i" - "mageProcessRequest\022).grpcIFrontEnd.image" - "ProcessRequestRequest\032*.grpcIFrontEnd.im" - "ageProcessRequestResponse\"\000\022t\n\025getMappin" - "gDataRequest\022+.grpcIFrontEnd.getMappingD" - "ataRequestRequest\032,.grpcIFrontEnd.getMap" - "pingDataRequestResponse\"\000\022\\\n\rgetClientPo" - "se\022#.grpcIFrontEnd.getClientPoseRequest\032" - "$.grpcIFrontEnd.getClientPoseResponse\"\000\022" - "P\n\tcreateMap\022\037.grpcIFrontEnd.createMapRe" - "quest\032 .grpcIFrontEnd.createMapResponse\"" - "\000\022P\n\tdeleteMap\022\037.grpcIFrontEnd.deleteMap" - "Request\032 .grpcIFrontEnd.deleteMapRespons" - "e\"\000\022_\n\016getAllMapsUUID\022$.grpcIFrontEnd.ge" - "tAllMapsUUIDRequest\032%.grpcIFrontEnd.getA" - "llMapsUUIDResponse\"\000\022e\n\020getClientMapUUID" - "\022&.grpcIFrontEnd.getClientMapUUIDRequest" - "\032\'.grpcIFrontEnd.getClientMapUUIDRespons" - "e\"\000\022n\n\023getClientInfoForMap\022).grpcIFrontE" - "nd.getClientInfoForMapRequest\032*.grpcIFro" - "ntEnd.getClientInfoForMapResponse\"\000\022\\\n\rg" - "etMapRequest\022#.grpcIFrontEnd.getMapReque" - "stRequest\032$.grpcIFrontEnd.getMapRequestR" - "esponse\"\000\022\\\n\rsetMapRequest\022#.grpcIFrontE" - "nd.setMapRequestRequest\032$.grpcIFrontEnd." - "setMapRequestResponse\"\000\022q\n\024getPointCloud" - "Request\022*.grpcIFrontEnd.getPointCloudReq" - "uestRequest\032+.grpcIFrontEnd.getPointClou" - "dRequestResponse\"\000\022S\n\ngetMapInfo\022 .grpcI" - "FrontEnd.getMapInfoRequest\032!.grpcIFrontE" - "nd.getMapInfoResponse\"\000\022P\n\tbackupMap\022\037.g" - "rpcIFrontEnd.backupMapRequest\032 .grpcIFro" - "ntEnd.backupMapResponse\"\000\022S\n\nrestoreMap\022" - " .grpcIFrontEnd.restoreMapRequest\032!.grpc" - "IFrontEnd.restoreMapResponse\"\000\022q\n\024reques" - "tMapProcessing\022*.grpcIFrontEnd.requestMa" - "pProcessingRequest\032+.grpcIFrontEnd.reque" - "stMapProcessingResponse\"\000\022w\n\026getMapProce" - "ssingStatus\022,.grpcIFrontEnd.getMapProces" - "singStatusRequest\032-.grpcIFrontEnd.getMap" - "ProcessingStatusResponse\"\000\022q\n\024getMapProc" - "essingData\022*.grpcIFrontEnd.getMapProcess" - "ingDataRequest\032+.grpcIFrontEnd.getMapPro" - "cessingDataResponse\"\000b\006proto3" + "pcReturnValue\030\006 \001(\021\"z\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\033\n\023co" + "mpressed_zip_data\030\004 \001(\014\"M\n\021backupMapResp" + "onse\022\033\n\023compressed_zip_data\030\001 \001(\014\022\033\n\023xpc" + "fGrpcReturnValue\030\002 \001(\021\"{\n\021restoreMapRequ" + "est\022#\n\033grpcServerCompressionFormat\030\001 \001(\005" + "\022\023\n\013accessToken\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\033" + "\n\023compressed_zip_data\030\004 \001(\014\"1\n\022restoreMa" + "pResponse\022\033\n\023xpcfGrpcReturnValue\030\001 \001(\021\"\227" + "\001\n\033requestMapProcessingRequest\022#\n\033grpcSe" + "rverCompressionFormat\030\001 \001(\005\022\023\n\013accessTok" + "en\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\025\n\rresultMapUU" + "ID\030\004 \001(\t\022\026\n\016processingType\030\005 \001(\021\";\n\034requ" + "estMapProcessingResponse\022\033\n\023xpcfGrpcRetu" + "rnValue\030\001 \001(\021\"\252\001\n\035getMapProcessingStatus" + "Request\022#\n\033grpcServerCompressionFormat\030\001" + " \001(\005\022\023\n\013accessToken\030\002 \001(\t\022\025\n\rresultMapUU" + "ID\030\003 \001(\t\022\016\n\006status\030\004 \001(\021\022\026\n\016processingTy" + "pe\030\005 \001(\021\022\020\n\010progress\030\006 \001(\002\"w\n\036getMapProc" + "essingStatusResponse\022\016\n\006status\030\001 \001(\021\022\026\n\016" + "processingType\030\002 \001(\021\022\020\n\010progress\030\003 \001(\002\022\033" + "\n\023xpcfGrpcReturnValue\030\004 \001(\021\"\231\001\n\033getMapPr" + "ocessingDataRequest\022#\n\033grpcServerCompres" + "sionFormat\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\034getMapProcess" + "ingDataResponse\022\022\n\npointCloud\030\001 \001(\014\022\025\n\rk" + "eyframePoses\030\002 \001(\014\022\033\n\023xpcfGrpcReturnValu" + "e\030\003 \001(\0212\351\027\n\024grpcIFrontEndService\022_\n\016regi" + "sterClient\022$.grpcIFrontEnd.registerClien" + "tRequest\032%.grpcIFrontEnd.registerClientR" + "esponse\"\000\022e\n\020unregisterClient\022&.grpcIFro" + "ntEnd.unregisterClientRequest\032\'.grpcIFro" + "ntEnd.unregisterClientResponse\"\000\022h\n\021getA" + "llClientsUUID\022\'.grpcIFrontEnd.getAllClie" + "ntsUUIDRequest\032(.grpcIFrontEnd.getAllCli" + "entsUUIDResponse\"\000\022\\\n\rgetDeviceInfo\022#.gr" + "pcIFrontEnd.getDeviceInfoRequest\032$.grpcI" + "FrontEnd.getDeviceInfoResponse\"\000\022S\n\ninit" + "_grpc0\022 .grpcIFrontEnd.init_grpc0Request" + "\032!.grpcIFrontEnd.init_grpc0Response\"\000\022S\n" + "\ninit_grpc1\022 .grpcIFrontEnd.init_grpc1Re" + "quest\032!.grpcIFrontEnd.init_grpc1Response" + "\"\000\022D\n\005start\022\033.grpcIFrontEnd.startRequest" + "\032\034.grpcIFrontEnd.startResponse\"\000\022A\n\004stop" + "\022\032.grpcIFrontEnd.stopRequest\032\033.grpcIFron" + "tEnd.stopResponse\"\000\022h\n\021getProcessingMode" + "\022\'.grpcIFrontEnd.getProcessingModeReques" + "t\032(.grpcIFrontEnd.getProcessingModeRespo" + "nse\"\000\022\200\001\n\031setCameraParameters_grpc0\022/.gr" + "pcIFrontEnd.setCameraParameters_grpc0Req" + "uest\0320.grpcIFrontEnd.setCameraParameters" + "_grpc0Response\"\000\022\200\001\n\031setCameraParameters" + "_grpc1\022/.grpcIFrontEnd.setCameraParamete" + "rs_grpc1Request\0320.grpcIFrontEnd.setCamer" + "aParameters_grpc1Response\"\000\022\203\001\n\032setRecti" + "ficationParameters\0220.grpcIFrontEnd.setRe" + "ctificationParametersRequest\0321.grpcIFron" + "tEnd.setRectificationParametersResponse\"" + "\000\022n\n\023getCameraParameters\022).grpcIFrontEnd" + ".getCameraParametersRequest\032*.grpcIFront" + "End.getCameraParametersResponse\"\000\022n\n\023ima" + "geProcessRequest\022).grpcIFrontEnd.imagePr" + "ocessRequestRequest\032*.grpcIFrontEnd.imag" + "eProcessRequestResponse\"\000\022t\n\025getMappingD" + "ataRequest\022+.grpcIFrontEnd.getMappingDat" + "aRequestRequest\032,.grpcIFrontEnd.getMappi" + "ngDataRequestResponse\"\000\022\\\n\rgetClientPose" + "\022#.grpcIFrontEnd.getClientPoseRequest\032$." + "grpcIFrontEnd.getClientPoseResponse\"\000\022P\n" + "\tcreateMap\022\037.grpcIFrontEnd.createMapRequ" + "est\032 .grpcIFrontEnd.createMapResponse\"\000\022" + "P\n\tdeleteMap\022\037.grpcIFrontEnd.deleteMapRe" + "quest\032 .grpcIFrontEnd.deleteMapResponse\"" + "\000\022_\n\016getAllMapsUUID\022$.grpcIFrontEnd.getA" + "llMapsUUIDRequest\032%.grpcIFrontEnd.getAll" + "MapsUUIDResponse\"\000\022e\n\020getClientMapUUID\022&" + ".grpcIFrontEnd.getClientMapUUIDRequest\032\'" + ".grpcIFrontEnd.getClientMapUUIDResponse\"" + "\000\022n\n\023getClientInfoForMap\022).grpcIFrontEnd" + ".getClientInfoForMapRequest\032*.grpcIFront" + "End.getClientInfoForMapResponse\"\000\022\\\n\rget" + "MapRequest\022#.grpcIFrontEnd.getMapRequest" + "Request\032$.grpcIFrontEnd.getMapRequestRes" + "ponse\"\000\022\\\n\rsetMapRequest\022#.grpcIFrontEnd" + ".setMapRequestRequest\032$.grpcIFrontEnd.se" + "tMapRequestResponse\"\000\022q\n\024getPointCloudRe" + "quest\022*.grpcIFrontEnd.getPointCloudReque" + "stRequest\032+.grpcIFrontEnd.getPointCloudR" + "equestResponse\"\000\022S\n\ngetMapInfo\022 .grpcIFr" + "ontEnd.getMapInfoRequest\032!.grpcIFrontEnd" + ".getMapInfoResponse\"\000\022P\n\tbackupMap\022\037.grp" + "cIFrontEnd.backupMapRequest\032 .grpcIFront" + "End.backupMapResponse\"\000\022S\n\nrestoreMap\022 ." + "grpcIFrontEnd.restoreMapRequest\032!.grpcIF" + "rontEnd.restoreMapResponse\"\000\022q\n\024requestM" + "apProcessing\022*.grpcIFrontEnd.requestMapP" + "rocessingRequest\032+.grpcIFrontEnd.request" + "MapProcessingResponse\"\000\022w\n\026getMapProcess" + "ingStatus\022,.grpcIFrontEnd.getMapProcessi" + "ngStatusRequest\032-.grpcIFrontEnd.getMapPr" + "ocessingStatusResponse\"\000\022q\n\024getMapProces" + "singData\022*.grpcIFrontEnd.getMapProcessin" + "gDataRequest\032+.grpcIFrontEnd.getMapProce" + "ssingDataResponse\"\000b\006proto3" }; static const ::_pbi::DescriptorTable* const descriptor_table_grpcIFrontEndService_2eproto_deps[1] = { @@ -2681,7 +2599,7 @@ static ::absl::once_flag descriptor_table_grpcIFrontEndService_2eproto_once; PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_grpcIFrontEndService_2eproto = { false, false, - 10109, + 9707, descriptor_table_protodef_grpcIFrontEndService_2eproto, "grpcIFrontEndService.proto", &descriptor_table_grpcIFrontEndService_2eproto_once, @@ -15253,13 +15171,7 @@ inline PROTOBUF_NDEBUG_INLINE backupMapRequest::Impl_::Impl_( const Impl_& from, const ::grpcIFrontEnd::backupMapRequest& from_msg) : accesstoken_(arena, from.accesstoken_), mapuuid_(arena, from.mapuuid_), - map_information_(arena, from.map_information_), - cameraparameters_(arena, from.cameraparameters_), - coordinate_(arena, from.coordinate_), - covisibility_graph_(arena, from.covisibility_graph_), - identification_(arena, from.identification_), - keyframes_(arena, from.keyframes_), - pointcloud_(arena, from.pointcloud_), + compressed_zip_data_(arena, from.compressed_zip_data_), _cached_size_{0} {} backupMapRequest::backupMapRequest( @@ -15280,13 +15192,7 @@ inline PROTOBUF_NDEBUG_INLINE backupMapRequest::Impl_::Impl_( ::google::protobuf::Arena* arena) : accesstoken_(arena), mapuuid_(arena), - map_information_(arena), - cameraparameters_(arena), - coordinate_(arena), - covisibility_graph_(arena), - identification_(arena), - keyframes_(arena), - pointcloud_(arena), + compressed_zip_data_(arena), _cached_size_{0} {} inline void backupMapRequest::SharedCtor(::_pb::Arena* arena) { @@ -15302,13 +15208,7 @@ inline void backupMapRequest::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); _impl_.accesstoken_.Destroy(); _impl_.mapuuid_.Destroy(); - _impl_.map_information_.Destroy(); - _impl_.cameraparameters_.Destroy(); - _impl_.coordinate_.Destroy(); - _impl_.covisibility_graph_.Destroy(); - _impl_.identification_.Destroy(); - _impl_.keyframes_.Destroy(); - _impl_.pointcloud_.Destroy(); + _impl_.compressed_zip_data_.Destroy(); _impl_.~Impl_(); } @@ -15333,15 +15233,15 @@ backupMapRequest::GetClassData() const { return _data_.base(); } PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<4, 10, 0, 65, 2> backupMapRequest::_table_ = { +const ::_pbi::TcParseTable<2, 4, 0, 57, 2> backupMapRequest::_table_ = { { 0, // no _has_bits_ 0, // no _extensions_ - 10, 120, // max_field_number, fast_idx_mask + 4, 24, // max_field_number, fast_idx_mask offsetof(decltype(_table_), field_lookup_table), - 4294966272, // skipmap + 4294967280, // skipmap offsetof(decltype(_table_), field_entries), - 10, // num_field_entries + 4, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries &_backupMapRequest_default_instance_._instance, @@ -15351,7 +15251,9 @@ const ::_pbi::TcParseTable<4, 10, 0, 65, 2> backupMapRequest::_table_ = { ::_pbi::TcParser::GetTable<::grpcIFrontEnd::backupMapRequest>(), // to_prefetch #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ - {::_pbi::TcParser::MiniParse, {}}, + // bytes compressed_zip_data = 4; + {::_pbi::TcParser::FastBS1, + {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressed_zip_data_)}}, // int32 grpcServerCompressionFormat = 1; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(backupMapRequest, _impl_.grpcservercompressionformat_), 63>(), {8, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.grpcservercompressionformat_)}}, @@ -15361,32 +15263,6 @@ const ::_pbi::TcParseTable<4, 10, 0, 65, 2> backupMapRequest::_table_ = { // string mapUUID = 3; {::_pbi::TcParser::FastUS1, {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_)}}, - // bytes map_information = 4; - {::_pbi::TcParser::FastBS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.map_information_)}}, - // bytes cameraParameters = 5; - {::_pbi::TcParser::FastBS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.cameraparameters_)}}, - // bytes coordinate = 6; - {::_pbi::TcParser::FastBS1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.coordinate_)}}, - // bytes covisibility_graph = 7; - {::_pbi::TcParser::FastBS1, - {58, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.covisibility_graph_)}}, - // bytes identification = 8; - {::_pbi::TcParser::FastBS1, - {66, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.identification_)}}, - // bytes keyframes = 9; - {::_pbi::TcParser::FastBS1, - {74, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.keyframes_)}}, - // bytes pointcloud = 10; - {::_pbi::TcParser::FastBS1, - {82, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.pointcloud_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, }}, {{ 65535, 65535 }}, {{ @@ -15399,31 +15275,13 @@ const ::_pbi::TcParseTable<4, 10, 0, 65, 2> backupMapRequest::_table_ = { // string mapUUID = 3; {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes map_information = 4; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.map_information_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes cameraParameters = 5; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.cameraparameters_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes coordinate = 6; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.coordinate_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes covisibility_graph = 7; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.covisibility_graph_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes identification = 8; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.identification_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes keyframes = 9; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.keyframes_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes pointcloud = 10; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.pointcloud_), 0, 0, + // bytes compressed_zip_data = 4; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressed_zip_data_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, }}, // no aux_entries {{ - "\36\0\13\7\0\0\0\0\0\0\0\0\0\0\0\0" + "\36\0\13\7\0\0\0\0" "grpcIFrontEnd.backupMapRequest" "accessToken" "mapUUID" @@ -15439,13 +15297,7 @@ PROTOBUF_NOINLINE void backupMapRequest::Clear() { _impl_.accesstoken_.ClearToEmpty(); _impl_.mapuuid_.ClearToEmpty(); - _impl_.map_information_.ClearToEmpty(); - _impl_.cameraparameters_.ClearToEmpty(); - _impl_.coordinate_.ClearToEmpty(); - _impl_.covisibility_graph_.ClearToEmpty(); - _impl_.identification_.ClearToEmpty(); - _impl_.keyframes_.ClearToEmpty(); - _impl_.pointcloud_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); _impl_.grpcservercompressionformat_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -15480,48 +15332,12 @@ ::uint8_t* backupMapRequest::_InternalSerialize( target = stream->WriteStringMaybeAliased(3, _s, target); } - // bytes map_information = 4; - if (!this->_internal_map_information().empty()) { - const std::string& _s = this->_internal_map_information(); + // bytes compressed_zip_data = 4; + if (!this->_internal_compressed_zip_data().empty()) { + const std::string& _s = this->_internal_compressed_zip_data(); target = stream->WriteBytesMaybeAliased(4, _s, target); } - // bytes cameraParameters = 5; - if (!this->_internal_cameraparameters().empty()) { - const std::string& _s = this->_internal_cameraparameters(); - target = stream->WriteBytesMaybeAliased(5, _s, target); - } - - // bytes coordinate = 6; - if (!this->_internal_coordinate().empty()) { - const std::string& _s = this->_internal_coordinate(); - target = stream->WriteBytesMaybeAliased(6, _s, target); - } - - // bytes covisibility_graph = 7; - if (!this->_internal_covisibility_graph().empty()) { - const std::string& _s = this->_internal_covisibility_graph(); - target = stream->WriteBytesMaybeAliased(7, _s, target); - } - - // bytes identification = 8; - if (!this->_internal_identification().empty()) { - const std::string& _s = this->_internal_identification(); - target = stream->WriteBytesMaybeAliased(8, _s, target); - } - - // bytes keyframes = 9; - if (!this->_internal_keyframes().empty()) { - const std::string& _s = this->_internal_keyframes(); - target = stream->WriteBytesMaybeAliased(9, _s, target); - } - - // bytes pointcloud = 10; - if (!this->_internal_pointcloud().empty()) { - const std::string& _s = this->_internal_pointcloud(); - target = stream->WriteBytesMaybeAliased(10, _s, target); - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( @@ -15552,46 +15368,10 @@ ::size_t backupMapRequest::ByteSizeLong() const { this->_internal_mapuuid()); } - // bytes map_information = 4; - if (!this->_internal_map_information().empty()) { + // bytes compressed_zip_data = 4; + if (!this->_internal_compressed_zip_data().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_map_information()); - } - - // bytes cameraParameters = 5; - if (!this->_internal_cameraparameters().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_cameraparameters()); - } - - // bytes coordinate = 6; - if (!this->_internal_coordinate().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_coordinate()); - } - - // bytes covisibility_graph = 7; - if (!this->_internal_covisibility_graph().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_covisibility_graph()); - } - - // bytes identification = 8; - if (!this->_internal_identification().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_identification()); - } - - // bytes keyframes = 9; - if (!this->_internal_keyframes().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_keyframes()); - } - - // bytes pointcloud = 10; - if (!this->_internal_pointcloud().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_pointcloud()); + this->_internal_compressed_zip_data()); } // int32 grpcServerCompressionFormat = 1; @@ -15618,26 +15398,8 @@ void backupMapRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const if (!from._internal_mapuuid().empty()) { _this->_internal_set_mapuuid(from._internal_mapuuid()); } - if (!from._internal_map_information().empty()) { - _this->_internal_set_map_information(from._internal_map_information()); - } - if (!from._internal_cameraparameters().empty()) { - _this->_internal_set_cameraparameters(from._internal_cameraparameters()); - } - if (!from._internal_coordinate().empty()) { - _this->_internal_set_coordinate(from._internal_coordinate()); - } - if (!from._internal_covisibility_graph().empty()) { - _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); - } - if (!from._internal_identification().empty()) { - _this->_internal_set_identification(from._internal_identification()); - } - if (!from._internal_keyframes().empty()) { - _this->_internal_set_keyframes(from._internal_keyframes()); - } - if (!from._internal_pointcloud().empty()) { - _this->_internal_set_pointcloud(from._internal_pointcloud()); + if (!from._internal_compressed_zip_data().empty()) { + _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); } if (from._internal_grpcservercompressionformat() != 0) { _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; @@ -15660,13 +15422,7 @@ void backupMapRequest::InternalSwap(backupMapRequest* PROTOBUF_RESTRICT other) { _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_.map_information_, &other->_impl_.map_information_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); } @@ -15687,13 +15443,7 @@ backupMapResponse::backupMapResponse(::google::protobuf::Arena* arena) inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, const ::grpcIFrontEnd::backupMapResponse& from_msg) - : map_information_(arena, from.map_information_), - cameraparameters_(arena, from.cameraparameters_), - coordinate_(arena, from.coordinate_), - covisibility_graph_(arena, from.covisibility_graph_), - identification_(arena, from.identification_), - keyframes_(arena, from.keyframes_), - pointcloud_(arena, from.pointcloud_), + : compressed_zip_data_(arena, from.compressed_zip_data_), _cached_size_{0} {} backupMapResponse::backupMapResponse( @@ -15712,13 +15462,7 @@ backupMapResponse::backupMapResponse( inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena) - : map_information_(arena), - cameraparameters_(arena), - coordinate_(arena), - covisibility_graph_(arena), - identification_(arena), - keyframes_(arena), - pointcloud_(arena), + : compressed_zip_data_(arena), _cached_size_{0} {} inline void backupMapResponse::SharedCtor(::_pb::Arena* arena) { @@ -15732,13 +15476,7 @@ backupMapResponse::~backupMapResponse() { } inline void backupMapResponse::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); - _impl_.map_information_.Destroy(); - _impl_.cameraparameters_.Destroy(); - _impl_.coordinate_.Destroy(); - _impl_.covisibility_graph_.Destroy(); - _impl_.identification_.Destroy(); - _impl_.keyframes_.Destroy(); - _impl_.pointcloud_.Destroy(); + _impl_.compressed_zip_data_.Destroy(); _impl_.~Impl_(); } @@ -15763,15 +15501,15 @@ backupMapResponse::GetClassData() const { return _data_.base(); } PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<3, 8, 0, 0, 2> backupMapResponse::_table_ = { +const ::_pbi::TcParseTable<1, 2, 0, 0, 2> backupMapResponse::_table_ = { { 0, // no _has_bits_ 0, // no _extensions_ - 8, 56, // max_field_number, fast_idx_mask + 2, 8, // max_field_number, fast_idx_mask offsetof(decltype(_table_), field_lookup_table), - 4294967040, // skipmap + 4294967292, // skipmap offsetof(decltype(_table_), field_entries), - 8, // num_field_entries + 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries &_backupMapResponse_default_instance_._instance, @@ -15781,55 +15519,19 @@ const ::_pbi::TcParseTable<3, 8, 0, 0, 2> backupMapResponse::_table_ = { ::_pbi::TcParser::GetTable<::grpcIFrontEnd::backupMapResponse>(), // to_prefetch #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ - // sint32 xpcfGrpcReturnValue = 8; + // sint32 xpcfGrpcReturnValue = 2; {::_pbi::TcParser::FastZ32S1, - {64, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, - // bytes map_information = 1; - {::_pbi::TcParser::FastBS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.map_information_)}}, - // bytes cameraParameters = 2; - {::_pbi::TcParser::FastBS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.cameraparameters_)}}, - // bytes coordinate = 3; - {::_pbi::TcParser::FastBS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.coordinate_)}}, - // bytes covisibility_graph = 4; + {16, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, + // bytes compressed_zip_data = 1; {::_pbi::TcParser::FastBS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.covisibility_graph_)}}, - // bytes identification = 5; - {::_pbi::TcParser::FastBS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.identification_)}}, - // bytes keyframes = 6; - {::_pbi::TcParser::FastBS1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.keyframes_)}}, - // bytes pointcloud = 7; - {::_pbi::TcParser::FastBS1, - {58, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.pointcloud_)}}, + {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressed_zip_data_)}}, }}, {{ 65535, 65535 }}, {{ - // bytes map_information = 1; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.map_information_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes cameraParameters = 2; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.cameraparameters_), 0, 0, + // bytes compressed_zip_data = 1; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressed_zip_data_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes coordinate = 3; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.coordinate_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes covisibility_graph = 4; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.covisibility_graph_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes identification = 5; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.identification_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes keyframes = 6; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.keyframes_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes pointcloud = 7; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.pointcloud_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // sint32 xpcfGrpcReturnValue = 8; + // sint32 xpcfGrpcReturnValue = 2; {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kSInt32)}, }}, @@ -15845,13 +15547,7 @@ PROTOBUF_NOINLINE void backupMapResponse::Clear() { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.map_information_.ClearToEmpty(); - _impl_.cameraparameters_.ClearToEmpty(); - _impl_.coordinate_.ClearToEmpty(); - _impl_.covisibility_graph_.ClearToEmpty(); - _impl_.identification_.ClearToEmpty(); - _impl_.keyframes_.ClearToEmpty(); - _impl_.pointcloud_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); _impl_.xpcfgrpcreturnvalue_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -15863,53 +15559,17 @@ ::uint8_t* backupMapResponse::_InternalSerialize( ::uint32_t cached_has_bits = 0; (void)cached_has_bits; - // bytes map_information = 1; - if (!this->_internal_map_information().empty()) { - const std::string& _s = this->_internal_map_information(); + // bytes compressed_zip_data = 1; + if (!this->_internal_compressed_zip_data().empty()) { + const std::string& _s = this->_internal_compressed_zip_data(); target = stream->WriteBytesMaybeAliased(1, _s, target); } - // bytes cameraParameters = 2; - if (!this->_internal_cameraparameters().empty()) { - const std::string& _s = this->_internal_cameraparameters(); - target = stream->WriteBytesMaybeAliased(2, _s, target); - } - - // bytes coordinate = 3; - if (!this->_internal_coordinate().empty()) { - const std::string& _s = this->_internal_coordinate(); - target = stream->WriteBytesMaybeAliased(3, _s, target); - } - - // bytes covisibility_graph = 4; - if (!this->_internal_covisibility_graph().empty()) { - const std::string& _s = this->_internal_covisibility_graph(); - target = stream->WriteBytesMaybeAliased(4, _s, target); - } - - // bytes identification = 5; - if (!this->_internal_identification().empty()) { - const std::string& _s = this->_internal_identification(); - target = stream->WriteBytesMaybeAliased(5, _s, target); - } - - // bytes keyframes = 6; - if (!this->_internal_keyframes().empty()) { - const std::string& _s = this->_internal_keyframes(); - target = stream->WriteBytesMaybeAliased(6, _s, target); - } - - // bytes pointcloud = 7; - if (!this->_internal_pointcloud().empty()) { - const std::string& _s = this->_internal_pointcloud(); - target = stream->WriteBytesMaybeAliased(7, _s, target); - } - - // sint32 xpcfGrpcReturnValue = 8; + // sint32 xpcfGrpcReturnValue = 2; if (this->_internal_xpcfgrpcreturnvalue() != 0) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteSInt32ToArray( - 8, this->_internal_xpcfgrpcreturnvalue(), target); + 2, this->_internal_xpcfgrpcreturnvalue(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { @@ -15930,49 +15590,13 @@ ::size_t backupMapResponse::ByteSizeLong() const { (void) cached_has_bits; ::_pbi::Prefetch5LinesFrom7Lines(reinterpret_cast(this)); - // bytes map_information = 1; - if (!this->_internal_map_information().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_map_information()); - } - - // bytes cameraParameters = 2; - if (!this->_internal_cameraparameters().empty()) { + // bytes compressed_zip_data = 1; + if (!this->_internal_compressed_zip_data().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_cameraparameters()); + this->_internal_compressed_zip_data()); } - // bytes coordinate = 3; - if (!this->_internal_coordinate().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_coordinate()); - } - - // bytes covisibility_graph = 4; - if (!this->_internal_covisibility_graph().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_covisibility_graph()); - } - - // bytes identification = 5; - if (!this->_internal_identification().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_identification()); - } - - // bytes keyframes = 6; - if (!this->_internal_keyframes().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_keyframes()); - } - - // bytes pointcloud = 7; - if (!this->_internal_pointcloud().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_pointcloud()); - } - - // sint32 xpcfGrpcReturnValue = 8; + // sint32 xpcfGrpcReturnValue = 2; if (this->_internal_xpcfgrpcreturnvalue() != 0) { total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( this->_internal_xpcfgrpcreturnvalue()); @@ -15990,26 +15614,8 @@ void backupMapResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (!from._internal_map_information().empty()) { - _this->_internal_set_map_information(from._internal_map_information()); - } - if (!from._internal_cameraparameters().empty()) { - _this->_internal_set_cameraparameters(from._internal_cameraparameters()); - } - if (!from._internal_coordinate().empty()) { - _this->_internal_set_coordinate(from._internal_coordinate()); - } - if (!from._internal_covisibility_graph().empty()) { - _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); - } - if (!from._internal_identification().empty()) { - _this->_internal_set_identification(from._internal_identification()); - } - if (!from._internal_keyframes().empty()) { - _this->_internal_set_keyframes(from._internal_keyframes()); - } - if (!from._internal_pointcloud().empty()) { - _this->_internal_set_pointcloud(from._internal_pointcloud()); + if (!from._internal_compressed_zip_data().empty()) { + _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); } if (from._internal_xpcfgrpcreturnvalue() != 0) { _this->_impl_.xpcfgrpcreturnvalue_ = from._impl_.xpcfgrpcreturnvalue_; @@ -16030,13 +15636,7 @@ void backupMapResponse::InternalSwap(backupMapResponse* PROTOBUF_RESTRICT other) auto* arena = GetArena(); ABSL_DCHECK_EQ(arena, other->GetArena()); _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.map_information_, &other->_impl_.map_information_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); swap(_impl_.xpcfgrpcreturnvalue_, other->_impl_.xpcfgrpcreturnvalue_); } @@ -16059,13 +15659,7 @@ inline PROTOBUF_NDEBUG_INLINE restoreMapRequest::Impl_::Impl_( const Impl_& from, const ::grpcIFrontEnd::restoreMapRequest& from_msg) : accesstoken_(arena, from.accesstoken_), mapuuid_(arena, from.mapuuid_), - map_information_(arena, from.map_information_), - cameraparameters_(arena, from.cameraparameters_), - coordinate_(arena, from.coordinate_), - covisibility_graph_(arena, from.covisibility_graph_), - identification_(arena, from.identification_), - keyframes_(arena, from.keyframes_), - pointcloud_(arena, from.pointcloud_), + compressed_zip_data_(arena, from.compressed_zip_data_), _cached_size_{0} {} restoreMapRequest::restoreMapRequest( @@ -16086,13 +15680,7 @@ inline PROTOBUF_NDEBUG_INLINE restoreMapRequest::Impl_::Impl_( ::google::protobuf::Arena* arena) : accesstoken_(arena), mapuuid_(arena), - map_information_(arena), - cameraparameters_(arena), - coordinate_(arena), - covisibility_graph_(arena), - identification_(arena), - keyframes_(arena), - pointcloud_(arena), + compressed_zip_data_(arena), _cached_size_{0} {} inline void restoreMapRequest::SharedCtor(::_pb::Arena* arena) { @@ -16108,13 +15696,7 @@ inline void restoreMapRequest::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); _impl_.accesstoken_.Destroy(); _impl_.mapuuid_.Destroy(); - _impl_.map_information_.Destroy(); - _impl_.cameraparameters_.Destroy(); - _impl_.coordinate_.Destroy(); - _impl_.covisibility_graph_.Destroy(); - _impl_.identification_.Destroy(); - _impl_.keyframes_.Destroy(); - _impl_.pointcloud_.Destroy(); + _impl_.compressed_zip_data_.Destroy(); _impl_.~Impl_(); } @@ -16139,15 +15721,15 @@ restoreMapRequest::GetClassData() const { return _data_.base(); } PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<4, 10, 0, 66, 2> restoreMapRequest::_table_ = { +const ::_pbi::TcParseTable<2, 4, 0, 58, 2> restoreMapRequest::_table_ = { { 0, // no _has_bits_ 0, // no _extensions_ - 10, 120, // max_field_number, fast_idx_mask + 4, 24, // max_field_number, fast_idx_mask offsetof(decltype(_table_), field_lookup_table), - 4294966272, // skipmap + 4294967280, // skipmap offsetof(decltype(_table_), field_entries), - 10, // num_field_entries + 4, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries &_restoreMapRequest_default_instance_._instance, @@ -16157,7 +15739,9 @@ const ::_pbi::TcParseTable<4, 10, 0, 66, 2> restoreMapRequest::_table_ = { ::_pbi::TcParser::GetTable<::grpcIFrontEnd::restoreMapRequest>(), // to_prefetch #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ - {::_pbi::TcParser::MiniParse, {}}, + // bytes compressed_zip_data = 4; + {::_pbi::TcParser::FastBS1, + {34, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressed_zip_data_)}}, // int32 grpcServerCompressionFormat = 1; {::_pbi::TcParser::SingularVarintNoZag1<::uint32_t, offsetof(restoreMapRequest, _impl_.grpcservercompressionformat_), 63>(), {8, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.grpcservercompressionformat_)}}, @@ -16167,32 +15751,6 @@ const ::_pbi::TcParseTable<4, 10, 0, 66, 2> restoreMapRequest::_table_ = { // string mapUUID = 3; {::_pbi::TcParser::FastUS1, {26, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_)}}, - // bytes map_information = 4; - {::_pbi::TcParser::FastBS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.map_information_)}}, - // bytes cameraParameters = 5; - {::_pbi::TcParser::FastBS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.cameraparameters_)}}, - // bytes coordinate = 6; - {::_pbi::TcParser::FastBS1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.coordinate_)}}, - // bytes covisibility_graph = 7; - {::_pbi::TcParser::FastBS1, - {58, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.covisibility_graph_)}}, - // bytes identification = 8; - {::_pbi::TcParser::FastBS1, - {66, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.identification_)}}, - // bytes keyframes = 9; - {::_pbi::TcParser::FastBS1, - {74, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.keyframes_)}}, - // bytes pointcloud = 10; - {::_pbi::TcParser::FastBS1, - {82, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.pointcloud_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, }}, {{ 65535, 65535 }}, {{ @@ -16205,31 +15763,13 @@ const ::_pbi::TcParseTable<4, 10, 0, 66, 2> restoreMapRequest::_table_ = { // string mapUUID = 3; {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes map_information = 4; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.map_information_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes cameraParameters = 5; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.cameraparameters_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes coordinate = 6; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.coordinate_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes covisibility_graph = 7; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.covisibility_graph_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes identification = 8; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.identification_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes keyframes = 9; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.keyframes_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes pointcloud = 10; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.pointcloud_), 0, 0, + // bytes compressed_zip_data = 4; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressed_zip_data_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, }}, // no aux_entries {{ - "\37\0\13\7\0\0\0\0\0\0\0\0\0\0\0\0" + "\37\0\13\7\0\0\0\0" "grpcIFrontEnd.restoreMapRequest" "accessToken" "mapUUID" @@ -16245,13 +15785,7 @@ PROTOBUF_NOINLINE void restoreMapRequest::Clear() { _impl_.accesstoken_.ClearToEmpty(); _impl_.mapuuid_.ClearToEmpty(); - _impl_.map_information_.ClearToEmpty(); - _impl_.cameraparameters_.ClearToEmpty(); - _impl_.coordinate_.ClearToEmpty(); - _impl_.covisibility_graph_.ClearToEmpty(); - _impl_.identification_.ClearToEmpty(); - _impl_.keyframes_.ClearToEmpty(); - _impl_.pointcloud_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); _impl_.grpcservercompressionformat_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -16286,48 +15820,12 @@ ::uint8_t* restoreMapRequest::_InternalSerialize( target = stream->WriteStringMaybeAliased(3, _s, target); } - // bytes map_information = 4; - if (!this->_internal_map_information().empty()) { - const std::string& _s = this->_internal_map_information(); + // bytes compressed_zip_data = 4; + if (!this->_internal_compressed_zip_data().empty()) { + const std::string& _s = this->_internal_compressed_zip_data(); target = stream->WriteBytesMaybeAliased(4, _s, target); } - // bytes cameraParameters = 5; - if (!this->_internal_cameraparameters().empty()) { - const std::string& _s = this->_internal_cameraparameters(); - target = stream->WriteBytesMaybeAliased(5, _s, target); - } - - // bytes coordinate = 6; - if (!this->_internal_coordinate().empty()) { - const std::string& _s = this->_internal_coordinate(); - target = stream->WriteBytesMaybeAliased(6, _s, target); - } - - // bytes covisibility_graph = 7; - if (!this->_internal_covisibility_graph().empty()) { - const std::string& _s = this->_internal_covisibility_graph(); - target = stream->WriteBytesMaybeAliased(7, _s, target); - } - - // bytes identification = 8; - if (!this->_internal_identification().empty()) { - const std::string& _s = this->_internal_identification(); - target = stream->WriteBytesMaybeAliased(8, _s, target); - } - - // bytes keyframes = 9; - if (!this->_internal_keyframes().empty()) { - const std::string& _s = this->_internal_keyframes(); - target = stream->WriteBytesMaybeAliased(9, _s, target); - } - - // bytes pointcloud = 10; - if (!this->_internal_pointcloud().empty()) { - const std::string& _s = this->_internal_pointcloud(); - target = stream->WriteBytesMaybeAliased(10, _s, target); - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( @@ -16358,46 +15856,10 @@ ::size_t restoreMapRequest::ByteSizeLong() const { this->_internal_mapuuid()); } - // bytes map_information = 4; - if (!this->_internal_map_information().empty()) { + // bytes compressed_zip_data = 4; + if (!this->_internal_compressed_zip_data().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_map_information()); - } - - // bytes cameraParameters = 5; - if (!this->_internal_cameraparameters().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_cameraparameters()); - } - - // bytes coordinate = 6; - if (!this->_internal_coordinate().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_coordinate()); - } - - // bytes covisibility_graph = 7; - if (!this->_internal_covisibility_graph().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_covisibility_graph()); - } - - // bytes identification = 8; - if (!this->_internal_identification().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_identification()); - } - - // bytes keyframes = 9; - if (!this->_internal_keyframes().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_keyframes()); - } - - // bytes pointcloud = 10; - if (!this->_internal_pointcloud().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_pointcloud()); + this->_internal_compressed_zip_data()); } // int32 grpcServerCompressionFormat = 1; @@ -16424,26 +15886,8 @@ void restoreMapRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const if (!from._internal_mapuuid().empty()) { _this->_internal_set_mapuuid(from._internal_mapuuid()); } - if (!from._internal_map_information().empty()) { - _this->_internal_set_map_information(from._internal_map_information()); - } - if (!from._internal_cameraparameters().empty()) { - _this->_internal_set_cameraparameters(from._internal_cameraparameters()); - } - if (!from._internal_coordinate().empty()) { - _this->_internal_set_coordinate(from._internal_coordinate()); - } - if (!from._internal_covisibility_graph().empty()) { - _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); - } - if (!from._internal_identification().empty()) { - _this->_internal_set_identification(from._internal_identification()); - } - if (!from._internal_keyframes().empty()) { - _this->_internal_set_keyframes(from._internal_keyframes()); - } - if (!from._internal_pointcloud().empty()) { - _this->_internal_set_pointcloud(from._internal_pointcloud()); + if (!from._internal_compressed_zip_data().empty()) { + _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); } if (from._internal_grpcservercompressionformat() != 0) { _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; @@ -16466,13 +15910,7 @@ void restoreMapRequest::InternalSwap(restoreMapRequest* PROTOBUF_RESTRICT other) _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_.map_information_, &other->_impl_.map_information_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); } diff --git a/gen/src/grpcIMapsManagerService.pb.cc b/gen/src/grpcIMapsManagerService.pb.cc index f7f5af2..f8f9d63 100644 --- a/gen/src/grpcIMapsManagerService.pb.cc +++ b/gen/src/grpcIMapsManagerService.pb.cc @@ -93,25 +93,7 @@ inline constexpr restoreMapRequest::Impl_::Impl_( : mapuuid_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), - map_information_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - cameraparameters_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - coordinate_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - covisibility_graph_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - identification_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - keyframes_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - pointcloud_( + compressed_zip_data_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), grpcservercompressionformat_{0}, @@ -642,25 +624,7 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT inline constexpr backupMapResponse::Impl_::Impl_( ::_pbi::ConstantInitialized) noexcept - : map_information_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - cameraparameters_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - coordinate_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - covisibility_graph_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - identification_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - keyframes_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - pointcloud_( + : compressed_zip_data_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), xpcfgrpcreturnvalue_{0}, @@ -685,25 +649,7 @@ inline constexpr backupMapRequest::Impl_::Impl_( : mapuuid_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), - map_information_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - cameraparameters_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - coordinate_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - covisibility_graph_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - identification_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - keyframes_( - &::google::protobuf::internal::fixed_address_empty_string, - ::_pbi::ConstantInitialized()), - pointcloud_( + compressed_zip_data_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), grpcservercompressionformat_{0}, @@ -930,13 +876,7 @@ const ::uint32_t ~0u, // no sizeof(Split) PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.grpcservercompressionformat_), PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.mapuuid_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.map_information_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.cameraparameters_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.coordinate_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.covisibility_graph_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.identification_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.keyframes_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.pointcloud_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.compressed_zip_data_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _internal_metadata_), ~0u, // no _extensions_ @@ -945,13 +885,7 @@ const ::uint32_t ~0u, // no _inlined_string_donated_ ~0u, // no _split_ ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.map_information_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.cameraparameters_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.coordinate_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.covisibility_graph_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.identification_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.keyframes_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.pointcloud_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.compressed_zip_data_), PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.xpcfgrpcreturnvalue_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _internal_metadata_), @@ -963,13 +897,7 @@ const ::uint32_t ~0u, // no sizeof(Split) PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.grpcservercompressionformat_), PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.mapuuid_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.map_information_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.cameraparameters_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.coordinate_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.covisibility_graph_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.identification_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.keyframes_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.pointcloud_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.compressed_zip_data_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapResponse, _internal_metadata_), ~0u, // no _extensions_ @@ -1071,15 +999,15 @@ static const ::_pbi::MigrationSchema {161, -1, -1, sizeof(::grpcIMapsManager::getMapInfoRequest)}, {176, -1, -1, sizeof(::grpcIMapsManager::getMapInfoResponse)}, {190, -1, -1, sizeof(::grpcIMapsManager::backupMapRequest)}, - {207, -1, -1, sizeof(::grpcIMapsManager::backupMapResponse)}, - {223, -1, -1, sizeof(::grpcIMapsManager::restoreMapRequest)}, - {240, -1, -1, sizeof(::grpcIMapsManager::restoreMapResponse)}, - {249, -1, -1, sizeof(::grpcIMapsManager::requestMapProcessingRequest)}, - {261, -1, -1, sizeof(::grpcIMapsManager::requestMapProcessingResponse)}, - {270, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingStatusRequest)}, - {283, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingStatusResponse)}, - {295, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingDataRequest)}, - {307, -1, -1, sizeof(::grpcIMapsManager::getMapProcessingDataResponse)}, + {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, @@ -1155,80 +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\"\352\001\n\020backupMapRequest\022#\n\033grpcServer" - "CompressionFormat\030\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t" - "\022\027\n\017map_information\030\003 \001(\014\022\030\n\020cameraParam" - "eters\030\004 \001(\014\022\022\n\ncoordinate\030\005 \001(\014\022\032\n\022covis" - "ibility_graph\030\006 \001(\014\022\026\n\016identification\030\007 " - "\001(\014\022\021\n\tkeyframes\030\010 \001(\014\022\022\n\npointcloud\030\t \001" - "(\014\"\322\001\n\021backupMapResponse\022\027\n\017map_informat" - "ion\030\001 \001(\014\022\030\n\020cameraParameters\030\002 \001(\014\022\022\n\nc" - "oordinate\030\003 \001(\014\022\032\n\022covisibility_graph\030\004 " - "\001(\014\022\026\n\016identification\030\005 \001(\014\022\021\n\tkeyframes" - "\030\006 \001(\014\022\022\n\npointcloud\030\007 \001(\014\022\033\n\023xpcfGrpcRe" - "turnValue\030\010 \001(\021\"\353\001\n\021restoreMapRequest\022#\n" - "\033grpcServerCompressionFormat\030\001 \001(\005\022\017\n\007ma" - "pUUID\030\002 \001(\t\022\027\n\017map_information\030\003 \001(\014\022\030\n\020" - "cameraParameters\030\004 \001(\014\022\022\n\ncoordinate\030\005 \001" - "(\014\022\032\n\022covisibility_graph\030\006 \001(\014\022\026\n\016identi" - "fication\030\007 \001(\014\022\021\n\tkeyframes\030\010 \001(\014\022\022\n\npoi" - "ntcloud\030\t \001(\014\"1\n\022restoreMapResponse\022\033\n\023x" - "pcfGrpcReturnValue\030\001 \001(\021\"\202\001\n\033requestMapP" - "rocessingRequest\022#\n\033grpcServerCompressio" - "nFormat\030\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t\022\025\n\rresult" - "MapUUID\030\003 \001(\t\022\026\n\016processingType\030\004 \001(\021\";\n" - "\034requestMapProcessingResponse\022\033\n\023xpcfGrp" - "cReturnValue\030\001 \001(\021\"\225\001\n\035getMapProcessingS" - "tatusRequest\022#\n\033grpcServerCompressionFor" - "mat\030\001 \001(\005\022\025\n\rresultMapUUID\030\002 \001(\t\022\016\n\006stat" - "us\030\003 \001(\021\022\026\n\016processingType\030\004 \001(\021\022\020\n\010prog" - "ress\030\005 \001(\002\"w\n\036getMapProcessingStatusResp" - "onse\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\023xpcfGrpcReturn" - "Value\030\004 \001(\021\"\204\001\n\033getMapProcessingDataRequ" - "est\022#\n\033grpcServerCompressionFormat\030\001 \001(\005" - "\022\025\n\rresultMapUUID\030\002 \001(\t\022\022\n\npointCloud\030\003 " - "\001(\014\022\025\n\rkeyframePoses\030\004 \001(\014\"f\n\034getMapProc" - "essingDataResponse\022\022\n\npointCloud\030\001 \001(\014\022\025" - "\n\rkeyframePoses\030\002 \001(\014\022\033\n\023xpcfGrpcReturnV" - "alue\030\003 \001(\0212\312\013\n\027grpcIMapsManagerService\022V" - "\n\tcreateMap\022\".grpcIMapsManager.createMap" - "Request\032#.grpcIMapsManager.createMapResp" - "onse\"\000\022V\n\tdeleteMap\022\".grpcIMapsManager.d" - "eleteMapRequest\032#.grpcIMapsManager.delet" - "eMapResponse\"\000\022Y\n\ngetAllMaps\022#.grpcIMaps" - "Manager.getAllMapsRequest\032$.grpcIMapsMan" - "ager.getAllMapsResponse\"\000\022q\n\022increaseMap" - "Clients\022+.grpcIMapsManager.increaseMapCl" - "ientsRequest\032,.grpcIMapsManager.increase" - "MapClientsResponse\"\000\022q\n\022decreaseMapClien" - "ts\022+.grpcIMapsManager.decreaseMapClients" - "Request\032,.grpcIMapsManager.decreaseMapCl" - "ientsResponse\"\000\022b\n\rgetMapRequest\022&.grpcI" - "MapsManager.getMapRequestRequest\032\'.grpcI" - "MapsManager.getMapRequestResponse\"\000\022b\n\rs" - "etMapRequest\022&.grpcIMapsManager.setMapRe" - "questRequest\032\'.grpcIMapsManager.setMapRe" - "questResponse\"\000\022w\n\024getPointCloudRequest\022" - "-.grpcIMapsManager.getPointCloudRequestR" - "equest\032..grpcIMapsManager.getPointCloudR" - "equestResponse\"\000\022Y\n\ngetMapInfo\022#.grpcIMa" - "psManager.getMapInfoRequest\032$.grpcIMapsM" - "anager.getMapInfoResponse\"\000\022V\n\tbackupMap" - "\022\".grpcIMapsManager.backupMapRequest\032#.g" - "rpcIMapsManager.backupMapResponse\"\000\022Y\n\nr" - "estoreMap\022#.grpcIMapsManager.restoreMapR" - "equest\032$.grpcIMapsManager.restoreMapResp" - "onse\"\000\022w\n\024requestMapProcessing\022-.grpcIMa" - "psManager.requestMapProcessingRequest\032.." - "grpcIMapsManager.requestMapProcessingRes" - "ponse\"\000\022}\n\026getMapProcessingStatus\022/.grpc" - "IMapsManager.getMapProcessingStatusReque" - "st\0320.grpcIMapsManager.getMapProcessingSt" - "atusResponse\"\000\022w\n\024getMapProcessingData\022-" - ".grpcIMapsManager.getMapProcessingDataRe" - "quest\032..grpcIMapsManager.getMapProcessin" - "gDataResponse\"\000b\006proto3" + "\006 \001(\021\"e\n\020backupMapRequest\022#\n\033grpcServerC" + "ompressionFormat\030\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t\022" + "\033\n\023compressed_zip_data\030\003 \001(\014\"M\n\021backupMa" + "pResponse\022\033\n\023compressed_zip_data\030\001 \001(\014\022\033" + "\n\023xpcfGrpcReturnValue\030\002 \001(\021\"f\n\021restoreMa" + "pRequest\022#\n\033grpcServerCompressionFormat\030" + "\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t\022\033\n\023compressed_zip" + "_data\030\003 \001(\014\"1\n\022restoreMapResponse\022\033\n\023xpc" + "fGrpcReturnValue\030\001 \001(\021\"\202\001\n\033requestMapPro" + "cessingRequest\022#\n\033grpcServerCompressionF" + "ormat\030\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t\022\025\n\rresultMa" + "pUUID\030\003 \001(\t\022\026\n\016processingType\030\004 \001(\021\";\n\034r" + "equestMapProcessingResponse\022\033\n\023xpcfGrpcR" + "eturnValue\030\001 \001(\021\"\225\001\n\035getMapProcessingSta" + "tusRequest\022#\n\033grpcServerCompressionForma" + "t\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\010progre" + "ss\030\005 \001(\002\"w\n\036getMapProcessingStatusRespon" + "se\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\023xpcfGrpcReturnVa" + "lue\030\004 \001(\021\"\204\001\n\033getMapProcessingDataReques" + "t\022#\n\033grpcServerCompressionFormat\030\001 \001(\005\022\025" + "\n\rresultMapUUID\030\002 \001(\t\022\022\n\npointCloud\030\003 \001(" + "\014\022\025\n\rkeyframePoses\030\004 \001(\014\"f\n\034getMapProces" + "singDataResponse\022\022\n\npointCloud\030\001 \001(\014\022\025\n\r" + "keyframePoses\030\002 \001(\014\022\033\n\023xpcfGrpcReturnVal" + "ue\030\003 \001(\0212\312\013\n\027grpcIMapsManagerService\022V\n\t" + "createMap\022\".grpcIMapsManager.createMapRe" + "quest\032#.grpcIMapsManager.createMapRespon" + "se\"\000\022V\n\tdeleteMap\022\".grpcIMapsManager.del" + "eteMapRequest\032#.grpcIMapsManager.deleteM" + "apResponse\"\000\022Y\n\ngetAllMaps\022#.grpcIMapsMa" + "nager.getAllMapsRequest\032$.grpcIMapsManag" + "er.getAllMapsResponse\"\000\022q\n\022increaseMapCl" + "ients\022+.grpcIMapsManager.increaseMapClie" + "ntsRequest\032,.grpcIMapsManager.increaseMa" + "pClientsResponse\"\000\022q\n\022decreaseMapClients" + "\022+.grpcIMapsManager.decreaseMapClientsRe" + "quest\032,.grpcIMapsManager.decreaseMapClie" + "ntsResponse\"\000\022b\n\rgetMapRequest\022&.grpcIMa" + "psManager.getMapRequestRequest\032\'.grpcIMa" + "psManager.getMapRequestResponse\"\000\022b\n\rset" + "MapRequest\022&.grpcIMapsManager.setMapRequ" + "estRequest\032\'.grpcIMapsManager.setMapRequ" + "estResponse\"\000\022w\n\024getPointCloudRequest\022-." + "grpcIMapsManager.getPointCloudRequestReq" + "uest\032..grpcIMapsManager.getPointCloudReq" + "uestResponse\"\000\022Y\n\ngetMapInfo\022#.grpcIMaps" + "Manager.getMapInfoRequest\032$.grpcIMapsMan" + "ager.getMapInfoResponse\"\000\022V\n\tbackupMap\022\"" + ".grpcIMapsManager.backupMapRequest\032#.grp" + "cIMapsManager.backupMapResponse\"\000\022Y\n\nres" + "toreMap\022#.grpcIMapsManager.restoreMapReq" + "uest\032$.grpcIMapsManager.restoreMapRespon" + "se\"\000\022w\n\024requestMapProcessing\022-.grpcIMaps" + "Manager.requestMapProcessingRequest\032..gr" + "pcIMapsManager.requestMapProcessingRespo" + "nse\"\000\022}\n\026getMapProcessingStatus\022/.grpcIM" + "apsManager.getMapProcessingStatusRequest" + "\0320.grpcIMapsManager.getMapProcessingStat" + "usResponse\"\000\022w\n\024getMapProcessingData\022-.g" + "rpcIMapsManager.getMapProcessingDataRequ" + "est\032..grpcIMapsManager.getMapProcessingD" + "ataResponse\"\000b\006proto3" }; static const ::_pbi::DescriptorTable* const descriptor_table_grpcIMapsManagerService_2eproto_deps[1] = { @@ -1238,7 +1156,7 @@ static ::absl::once_flag descriptor_table_grpcIMapsManagerService_2eproto_once; PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_grpcIMapsManagerService_2eproto = { false, false, - 4623, + 4221, descriptor_table_protodef_grpcIMapsManagerService_2eproto, "grpcIMapsManagerService.proto", &descriptor_table_grpcIMapsManagerService_2eproto_once, @@ -5393,13 +5311,7 @@ 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_), - map_information_(arena, from.map_information_), - cameraparameters_(arena, from.cameraparameters_), - coordinate_(arena, from.coordinate_), - covisibility_graph_(arena, from.covisibility_graph_), - identification_(arena, from.identification_), - keyframes_(arena, from.keyframes_), - pointcloud_(arena, from.pointcloud_), + compressed_zip_data_(arena, from.compressed_zip_data_), _cached_size_{0} {} backupMapRequest::backupMapRequest( @@ -5419,13 +5331,7 @@ inline PROTOBUF_NDEBUG_INLINE backupMapRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena) : mapuuid_(arena), - map_information_(arena), - cameraparameters_(arena), - coordinate_(arena), - covisibility_graph_(arena), - identification_(arena), - keyframes_(arena), - pointcloud_(arena), + compressed_zip_data_(arena), _cached_size_{0} {} inline void backupMapRequest::SharedCtor(::_pb::Arena* arena) { @@ -5440,13 +5346,7 @@ backupMapRequest::~backupMapRequest() { inline void backupMapRequest::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); _impl_.mapuuid_.Destroy(); - _impl_.map_information_.Destroy(); - _impl_.cameraparameters_.Destroy(); - _impl_.coordinate_.Destroy(); - _impl_.covisibility_graph_.Destroy(); - _impl_.identification_.Destroy(); - _impl_.keyframes_.Destroy(); - _impl_.pointcloud_.Destroy(); + _impl_.compressed_zip_data_.Destroy(); _impl_.~Impl_(); } @@ -5471,15 +5371,15 @@ backupMapRequest::GetClassData() const { return _data_.base(); } PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<4, 9, 0, 57, 2> backupMapRequest::_table_ = { +const ::_pbi::TcParseTable<2, 3, 0, 49, 2> backupMapRequest::_table_ = { { 0, // no _has_bits_ 0, // no _extensions_ - 9, 120, // max_field_number, fast_idx_mask + 3, 24, // max_field_number, fast_idx_mask offsetof(decltype(_table_), field_lookup_table), - 4294966784, // skipmap + 4294967288, // skipmap offsetof(decltype(_table_), field_entries), - 9, // num_field_entries + 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries &_backupMapRequest_default_instance_._instance, @@ -5496,33 +5396,9 @@ const ::_pbi::TcParseTable<4, 9, 0, 57, 2> backupMapRequest::_table_ = { // string mapUUID = 2; {::_pbi::TcParser::FastUS1, {18, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_)}}, - // bytes map_information = 3; - {::_pbi::TcParser::FastBS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.map_information_)}}, - // bytes cameraParameters = 4; + // bytes compressed_zip_data = 3; {::_pbi::TcParser::FastBS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.cameraparameters_)}}, - // bytes coordinate = 5; - {::_pbi::TcParser::FastBS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.coordinate_)}}, - // bytes covisibility_graph = 6; - {::_pbi::TcParser::FastBS1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.covisibility_graph_)}}, - // bytes identification = 7; - {::_pbi::TcParser::FastBS1, - {58, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.identification_)}}, - // bytes keyframes = 8; - {::_pbi::TcParser::FastBS1, - {66, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.keyframes_)}}, - // bytes pointcloud = 9; - {::_pbi::TcParser::FastBS1, - {74, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.pointcloud_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressed_zip_data_)}}, }}, {{ 65535, 65535 }}, {{ @@ -5532,31 +5408,13 @@ const ::_pbi::TcParseTable<4, 9, 0, 57, 2> backupMapRequest::_table_ = { // string mapUUID = 2; {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes map_information = 3; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.map_information_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes cameraParameters = 4; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.cameraparameters_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes coordinate = 5; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.coordinate_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes covisibility_graph = 6; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.covisibility_graph_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes identification = 7; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.identification_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes keyframes = 8; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.keyframes_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes pointcloud = 9; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.pointcloud_), 0, 0, + // bytes compressed_zip_data = 3; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressed_zip_data_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, }}, // no aux_entries {{ - "\41\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0" + "\41\0\7\0\0\0\0\0" "grpcIMapsManager.backupMapRequest" "mapUUID" }}, @@ -5570,13 +5428,7 @@ PROTOBUF_NOINLINE void backupMapRequest::Clear() { (void) cached_has_bits; _impl_.mapuuid_.ClearToEmpty(); - _impl_.map_information_.ClearToEmpty(); - _impl_.cameraparameters_.ClearToEmpty(); - _impl_.coordinate_.ClearToEmpty(); - _impl_.covisibility_graph_.ClearToEmpty(); - _impl_.identification_.ClearToEmpty(); - _impl_.keyframes_.ClearToEmpty(); - _impl_.pointcloud_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); _impl_.grpcservercompressionformat_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -5603,48 +5455,12 @@ ::uint8_t* backupMapRequest::_InternalSerialize( target = stream->WriteStringMaybeAliased(2, _s, target); } - // bytes map_information = 3; - if (!this->_internal_map_information().empty()) { - const std::string& _s = this->_internal_map_information(); + // bytes compressed_zip_data = 3; + if (!this->_internal_compressed_zip_data().empty()) { + const std::string& _s = this->_internal_compressed_zip_data(); target = stream->WriteBytesMaybeAliased(3, _s, target); } - // bytes cameraParameters = 4; - if (!this->_internal_cameraparameters().empty()) { - const std::string& _s = this->_internal_cameraparameters(); - target = stream->WriteBytesMaybeAliased(4, _s, target); - } - - // bytes coordinate = 5; - if (!this->_internal_coordinate().empty()) { - const std::string& _s = this->_internal_coordinate(); - target = stream->WriteBytesMaybeAliased(5, _s, target); - } - - // bytes covisibility_graph = 6; - if (!this->_internal_covisibility_graph().empty()) { - const std::string& _s = this->_internal_covisibility_graph(); - target = stream->WriteBytesMaybeAliased(6, _s, target); - } - - // bytes identification = 7; - if (!this->_internal_identification().empty()) { - const std::string& _s = this->_internal_identification(); - target = stream->WriteBytesMaybeAliased(7, _s, target); - } - - // bytes keyframes = 8; - if (!this->_internal_keyframes().empty()) { - const std::string& _s = this->_internal_keyframes(); - target = stream->WriteBytesMaybeAliased(8, _s, target); - } - - // bytes pointcloud = 9; - if (!this->_internal_pointcloud().empty()) { - const std::string& _s = this->_internal_pointcloud(); - target = stream->WriteBytesMaybeAliased(9, _s, target); - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( @@ -5669,46 +5485,10 @@ ::size_t backupMapRequest::ByteSizeLong() const { this->_internal_mapuuid()); } - // bytes map_information = 3; - if (!this->_internal_map_information().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_map_information()); - } - - // bytes cameraParameters = 4; - if (!this->_internal_cameraparameters().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_cameraparameters()); - } - - // bytes coordinate = 5; - if (!this->_internal_coordinate().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_coordinate()); - } - - // bytes covisibility_graph = 6; - if (!this->_internal_covisibility_graph().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_covisibility_graph()); - } - - // bytes identification = 7; - if (!this->_internal_identification().empty()) { + // bytes compressed_zip_data = 3; + if (!this->_internal_compressed_zip_data().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_identification()); - } - - // bytes keyframes = 8; - if (!this->_internal_keyframes().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_keyframes()); - } - - // bytes pointcloud = 9; - if (!this->_internal_pointcloud().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_pointcloud()); + this->_internal_compressed_zip_data()); } // int32 grpcServerCompressionFormat = 1; @@ -5732,26 +5512,8 @@ void backupMapRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const if (!from._internal_mapuuid().empty()) { _this->_internal_set_mapuuid(from._internal_mapuuid()); } - if (!from._internal_map_information().empty()) { - _this->_internal_set_map_information(from._internal_map_information()); - } - if (!from._internal_cameraparameters().empty()) { - _this->_internal_set_cameraparameters(from._internal_cameraparameters()); - } - if (!from._internal_coordinate().empty()) { - _this->_internal_set_coordinate(from._internal_coordinate()); - } - if (!from._internal_covisibility_graph().empty()) { - _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); - } - if (!from._internal_identification().empty()) { - _this->_internal_set_identification(from._internal_identification()); - } - if (!from._internal_keyframes().empty()) { - _this->_internal_set_keyframes(from._internal_keyframes()); - } - if (!from._internal_pointcloud().empty()) { - _this->_internal_set_pointcloud(from._internal_pointcloud()); + if (!from._internal_compressed_zip_data().empty()) { + _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); } if (from._internal_grpcservercompressionformat() != 0) { _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; @@ -5773,13 +5535,7 @@ void backupMapRequest::InternalSwap(backupMapRequest* PROTOBUF_RESTRICT other) { 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_.map_information_, &other->_impl_.map_information_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); } @@ -5800,13 +5556,7 @@ backupMapResponse::backupMapResponse(::google::protobuf::Arena* arena) inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, const ::grpcIMapsManager::backupMapResponse& from_msg) - : map_information_(arena, from.map_information_), - cameraparameters_(arena, from.cameraparameters_), - coordinate_(arena, from.coordinate_), - covisibility_graph_(arena, from.covisibility_graph_), - identification_(arena, from.identification_), - keyframes_(arena, from.keyframes_), - pointcloud_(arena, from.pointcloud_), + : compressed_zip_data_(arena, from.compressed_zip_data_), _cached_size_{0} {} backupMapResponse::backupMapResponse( @@ -5825,13 +5575,7 @@ backupMapResponse::backupMapResponse( inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena) - : map_information_(arena), - cameraparameters_(arena), - coordinate_(arena), - covisibility_graph_(arena), - identification_(arena), - keyframes_(arena), - pointcloud_(arena), + : compressed_zip_data_(arena), _cached_size_{0} {} inline void backupMapResponse::SharedCtor(::_pb::Arena* arena) { @@ -5845,13 +5589,7 @@ backupMapResponse::~backupMapResponse() { } inline void backupMapResponse::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); - _impl_.map_information_.Destroy(); - _impl_.cameraparameters_.Destroy(); - _impl_.coordinate_.Destroy(); - _impl_.covisibility_graph_.Destroy(); - _impl_.identification_.Destroy(); - _impl_.keyframes_.Destroy(); - _impl_.pointcloud_.Destroy(); + _impl_.compressed_zip_data_.Destroy(); _impl_.~Impl_(); } @@ -5876,15 +5614,15 @@ backupMapResponse::GetClassData() const { return _data_.base(); } PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<3, 8, 0, 0, 2> backupMapResponse::_table_ = { +const ::_pbi::TcParseTable<1, 2, 0, 0, 2> backupMapResponse::_table_ = { { 0, // no _has_bits_ 0, // no _extensions_ - 8, 56, // max_field_number, fast_idx_mask + 2, 8, // max_field_number, fast_idx_mask offsetof(decltype(_table_), field_lookup_table), - 4294967040, // skipmap + 4294967292, // skipmap offsetof(decltype(_table_), field_entries), - 8, // num_field_entries + 2, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries &_backupMapResponse_default_instance_._instance, @@ -5894,55 +5632,19 @@ const ::_pbi::TcParseTable<3, 8, 0, 0, 2> backupMapResponse::_table_ = { ::_pbi::TcParser::GetTable<::grpcIMapsManager::backupMapResponse>(), // to_prefetch #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ - // sint32 xpcfGrpcReturnValue = 8; + // sint32 xpcfGrpcReturnValue = 2; {::_pbi::TcParser::FastZ32S1, - {64, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, - // bytes map_information = 1; + {16, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, + // bytes compressed_zip_data = 1; {::_pbi::TcParser::FastBS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.map_information_)}}, - // bytes cameraParameters = 2; - {::_pbi::TcParser::FastBS1, - {18, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.cameraparameters_)}}, - // bytes coordinate = 3; - {::_pbi::TcParser::FastBS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.coordinate_)}}, - // bytes covisibility_graph = 4; - {::_pbi::TcParser::FastBS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.covisibility_graph_)}}, - // bytes identification = 5; - {::_pbi::TcParser::FastBS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.identification_)}}, - // bytes keyframes = 6; - {::_pbi::TcParser::FastBS1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.keyframes_)}}, - // bytes pointcloud = 7; - {::_pbi::TcParser::FastBS1, - {58, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.pointcloud_)}}, + {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressed_zip_data_)}}, }}, {{ 65535, 65535 }}, {{ - // bytes map_information = 1; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.map_information_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes cameraParameters = 2; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.cameraparameters_), 0, 0, + // bytes compressed_zip_data = 1; + {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressed_zip_data_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes coordinate = 3; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.coordinate_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes covisibility_graph = 4; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.covisibility_graph_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes identification = 5; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.identification_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes keyframes = 6; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.keyframes_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes pointcloud = 7; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.pointcloud_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // sint32 xpcfGrpcReturnValue = 8; + // sint32 xpcfGrpcReturnValue = 2; {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kSInt32)}, }}, @@ -5958,13 +5660,7 @@ PROTOBUF_NOINLINE void backupMapResponse::Clear() { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.map_information_.ClearToEmpty(); - _impl_.cameraparameters_.ClearToEmpty(); - _impl_.coordinate_.ClearToEmpty(); - _impl_.covisibility_graph_.ClearToEmpty(); - _impl_.identification_.ClearToEmpty(); - _impl_.keyframes_.ClearToEmpty(); - _impl_.pointcloud_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); _impl_.xpcfgrpcreturnvalue_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -5976,53 +5672,17 @@ ::uint8_t* backupMapResponse::_InternalSerialize( ::uint32_t cached_has_bits = 0; (void)cached_has_bits; - // bytes map_information = 1; - if (!this->_internal_map_information().empty()) { - const std::string& _s = this->_internal_map_information(); + // bytes compressed_zip_data = 1; + if (!this->_internal_compressed_zip_data().empty()) { + const std::string& _s = this->_internal_compressed_zip_data(); target = stream->WriteBytesMaybeAliased(1, _s, target); } - // bytes cameraParameters = 2; - if (!this->_internal_cameraparameters().empty()) { - const std::string& _s = this->_internal_cameraparameters(); - target = stream->WriteBytesMaybeAliased(2, _s, target); - } - - // bytes coordinate = 3; - if (!this->_internal_coordinate().empty()) { - const std::string& _s = this->_internal_coordinate(); - target = stream->WriteBytesMaybeAliased(3, _s, target); - } - - // bytes covisibility_graph = 4; - if (!this->_internal_covisibility_graph().empty()) { - const std::string& _s = this->_internal_covisibility_graph(); - target = stream->WriteBytesMaybeAliased(4, _s, target); - } - - // bytes identification = 5; - if (!this->_internal_identification().empty()) { - const std::string& _s = this->_internal_identification(); - target = stream->WriteBytesMaybeAliased(5, _s, target); - } - - // bytes keyframes = 6; - if (!this->_internal_keyframes().empty()) { - const std::string& _s = this->_internal_keyframes(); - target = stream->WriteBytesMaybeAliased(6, _s, target); - } - - // bytes pointcloud = 7; - if (!this->_internal_pointcloud().empty()) { - const std::string& _s = this->_internal_pointcloud(); - target = stream->WriteBytesMaybeAliased(7, _s, target); - } - - // sint32 xpcfGrpcReturnValue = 8; + // sint32 xpcfGrpcReturnValue = 2; if (this->_internal_xpcfgrpcreturnvalue() != 0) { target = stream->EnsureSpace(target); target = ::_pbi::WireFormatLite::WriteSInt32ToArray( - 8, this->_internal_xpcfgrpcreturnvalue(), target); + 2, this->_internal_xpcfgrpcreturnvalue(), target); } if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { @@ -6043,49 +5703,13 @@ ::size_t backupMapResponse::ByteSizeLong() const { (void) cached_has_bits; ::_pbi::Prefetch5LinesFrom7Lines(reinterpret_cast(this)); - // bytes map_information = 1; - if (!this->_internal_map_information().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_map_information()); - } - - // bytes cameraParameters = 2; - if (!this->_internal_cameraparameters().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_cameraparameters()); - } - - // bytes coordinate = 3; - if (!this->_internal_coordinate().empty()) { + // bytes compressed_zip_data = 1; + if (!this->_internal_compressed_zip_data().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_coordinate()); + this->_internal_compressed_zip_data()); } - // bytes covisibility_graph = 4; - if (!this->_internal_covisibility_graph().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_covisibility_graph()); - } - - // bytes identification = 5; - if (!this->_internal_identification().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_identification()); - } - - // bytes keyframes = 6; - if (!this->_internal_keyframes().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_keyframes()); - } - - // bytes pointcloud = 7; - if (!this->_internal_pointcloud().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_pointcloud()); - } - - // sint32 xpcfGrpcReturnValue = 8; + // sint32 xpcfGrpcReturnValue = 2; if (this->_internal_xpcfgrpcreturnvalue() != 0) { total_size += ::_pbi::WireFormatLite::SInt32SizePlusOne( this->_internal_xpcfgrpcreturnvalue()); @@ -6103,26 +5727,8 @@ void backupMapResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (!from._internal_map_information().empty()) { - _this->_internal_set_map_information(from._internal_map_information()); - } - if (!from._internal_cameraparameters().empty()) { - _this->_internal_set_cameraparameters(from._internal_cameraparameters()); - } - if (!from._internal_coordinate().empty()) { - _this->_internal_set_coordinate(from._internal_coordinate()); - } - if (!from._internal_covisibility_graph().empty()) { - _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); - } - if (!from._internal_identification().empty()) { - _this->_internal_set_identification(from._internal_identification()); - } - if (!from._internal_keyframes().empty()) { - _this->_internal_set_keyframes(from._internal_keyframes()); - } - if (!from._internal_pointcloud().empty()) { - _this->_internal_set_pointcloud(from._internal_pointcloud()); + if (!from._internal_compressed_zip_data().empty()) { + _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); } if (from._internal_xpcfgrpcreturnvalue() != 0) { _this->_impl_.xpcfgrpcreturnvalue_ = from._impl_.xpcfgrpcreturnvalue_; @@ -6143,13 +5749,7 @@ void backupMapResponse::InternalSwap(backupMapResponse* PROTOBUF_RESTRICT other) auto* arena = GetArena(); ABSL_DCHECK_EQ(arena, other->GetArena()); _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.map_information_, &other->_impl_.map_information_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); swap(_impl_.xpcfgrpcreturnvalue_, other->_impl_.xpcfgrpcreturnvalue_); } @@ -6171,13 +5771,7 @@ 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_), - map_information_(arena, from.map_information_), - cameraparameters_(arena, from.cameraparameters_), - coordinate_(arena, from.coordinate_), - covisibility_graph_(arena, from.covisibility_graph_), - identification_(arena, from.identification_), - keyframes_(arena, from.keyframes_), - pointcloud_(arena, from.pointcloud_), + compressed_zip_data_(arena, from.compressed_zip_data_), _cached_size_{0} {} restoreMapRequest::restoreMapRequest( @@ -6197,13 +5791,7 @@ inline PROTOBUF_NDEBUG_INLINE restoreMapRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena) : mapuuid_(arena), - map_information_(arena), - cameraparameters_(arena), - coordinate_(arena), - covisibility_graph_(arena), - identification_(arena), - keyframes_(arena), - pointcloud_(arena), + compressed_zip_data_(arena), _cached_size_{0} {} inline void restoreMapRequest::SharedCtor(::_pb::Arena* arena) { @@ -6218,13 +5806,7 @@ restoreMapRequest::~restoreMapRequest() { inline void restoreMapRequest::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); _impl_.mapuuid_.Destroy(); - _impl_.map_information_.Destroy(); - _impl_.cameraparameters_.Destroy(); - _impl_.coordinate_.Destroy(); - _impl_.covisibility_graph_.Destroy(); - _impl_.identification_.Destroy(); - _impl_.keyframes_.Destroy(); - _impl_.pointcloud_.Destroy(); + _impl_.compressed_zip_data_.Destroy(); _impl_.~Impl_(); } @@ -6249,15 +5831,15 @@ restoreMapRequest::GetClassData() const { return _data_.base(); } PROTOBUF_CONSTINIT PROTOBUF_ATTRIBUTE_INIT_PRIORITY1 -const ::_pbi::TcParseTable<4, 9, 0, 58, 2> restoreMapRequest::_table_ = { +const ::_pbi::TcParseTable<2, 3, 0, 50, 2> restoreMapRequest::_table_ = { { 0, // no _has_bits_ 0, // no _extensions_ - 9, 120, // max_field_number, fast_idx_mask + 3, 24, // max_field_number, fast_idx_mask offsetof(decltype(_table_), field_lookup_table), - 4294966784, // skipmap + 4294967288, // skipmap offsetof(decltype(_table_), field_entries), - 9, // num_field_entries + 3, // num_field_entries 0, // num_aux_entries offsetof(decltype(_table_), field_names), // no aux_entries &_restoreMapRequest_default_instance_._instance, @@ -6274,33 +5856,9 @@ const ::_pbi::TcParseTable<4, 9, 0, 58, 2> restoreMapRequest::_table_ = { // string mapUUID = 2; {::_pbi::TcParser::FastUS1, {18, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_)}}, - // bytes map_information = 3; - {::_pbi::TcParser::FastBS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.map_information_)}}, - // bytes cameraParameters = 4; + // bytes compressed_zip_data = 3; {::_pbi::TcParser::FastBS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.cameraparameters_)}}, - // bytes coordinate = 5; - {::_pbi::TcParser::FastBS1, - {42, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.coordinate_)}}, - // bytes covisibility_graph = 6; - {::_pbi::TcParser::FastBS1, - {50, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.covisibility_graph_)}}, - // bytes identification = 7; - {::_pbi::TcParser::FastBS1, - {58, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.identification_)}}, - // bytes keyframes = 8; - {::_pbi::TcParser::FastBS1, - {66, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.keyframes_)}}, - // bytes pointcloud = 9; - {::_pbi::TcParser::FastBS1, - {74, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.pointcloud_)}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, - {::_pbi::TcParser::MiniParse, {}}, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressed_zip_data_)}}, }}, {{ 65535, 65535 }}, {{ @@ -6310,31 +5868,13 @@ const ::_pbi::TcParseTable<4, 9, 0, 58, 2> restoreMapRequest::_table_ = { // string mapUUID = 2; {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes map_information = 3; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.map_information_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes cameraParameters = 4; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.cameraparameters_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes coordinate = 5; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.coordinate_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes covisibility_graph = 6; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.covisibility_graph_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes identification = 7; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.identification_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes keyframes = 8; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.keyframes_), 0, 0, - (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, - // bytes pointcloud = 9; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.pointcloud_), 0, 0, + // bytes compressed_zip_data = 3; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressed_zip_data_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, }}, // no aux_entries {{ - "\42\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0" + "\42\0\7\0\0\0\0\0" "grpcIMapsManager.restoreMapRequest" "mapUUID" }}, @@ -6348,13 +5888,7 @@ PROTOBUF_NOINLINE void restoreMapRequest::Clear() { (void) cached_has_bits; _impl_.mapuuid_.ClearToEmpty(); - _impl_.map_information_.ClearToEmpty(); - _impl_.cameraparameters_.ClearToEmpty(); - _impl_.coordinate_.ClearToEmpty(); - _impl_.covisibility_graph_.ClearToEmpty(); - _impl_.identification_.ClearToEmpty(); - _impl_.keyframes_.ClearToEmpty(); - _impl_.pointcloud_.ClearToEmpty(); + _impl_.compressed_zip_data_.ClearToEmpty(); _impl_.grpcservercompressionformat_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -6381,48 +5915,12 @@ ::uint8_t* restoreMapRequest::_InternalSerialize( target = stream->WriteStringMaybeAliased(2, _s, target); } - // bytes map_information = 3; - if (!this->_internal_map_information().empty()) { - const std::string& _s = this->_internal_map_information(); + // bytes compressed_zip_data = 3; + if (!this->_internal_compressed_zip_data().empty()) { + const std::string& _s = this->_internal_compressed_zip_data(); target = stream->WriteBytesMaybeAliased(3, _s, target); } - // bytes cameraParameters = 4; - if (!this->_internal_cameraparameters().empty()) { - const std::string& _s = this->_internal_cameraparameters(); - target = stream->WriteBytesMaybeAliased(4, _s, target); - } - - // bytes coordinate = 5; - if (!this->_internal_coordinate().empty()) { - const std::string& _s = this->_internal_coordinate(); - target = stream->WriteBytesMaybeAliased(5, _s, target); - } - - // bytes covisibility_graph = 6; - if (!this->_internal_covisibility_graph().empty()) { - const std::string& _s = this->_internal_covisibility_graph(); - target = stream->WriteBytesMaybeAliased(6, _s, target); - } - - // bytes identification = 7; - if (!this->_internal_identification().empty()) { - const std::string& _s = this->_internal_identification(); - target = stream->WriteBytesMaybeAliased(7, _s, target); - } - - // bytes keyframes = 8; - if (!this->_internal_keyframes().empty()) { - const std::string& _s = this->_internal_keyframes(); - target = stream->WriteBytesMaybeAliased(8, _s, target); - } - - // bytes pointcloud = 9; - if (!this->_internal_pointcloud().empty()) { - const std::string& _s = this->_internal_pointcloud(); - target = stream->WriteBytesMaybeAliased(9, _s, target); - } - if (PROTOBUF_PREDICT_FALSE(_internal_metadata_.have_unknown_fields())) { target = ::_pbi::WireFormat::InternalSerializeUnknownFieldsToArray( @@ -6447,46 +5945,10 @@ ::size_t restoreMapRequest::ByteSizeLong() const { this->_internal_mapuuid()); } - // bytes map_information = 3; - if (!this->_internal_map_information().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_map_information()); - } - - // bytes cameraParameters = 4; - if (!this->_internal_cameraparameters().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_cameraparameters()); - } - - // bytes coordinate = 5; - if (!this->_internal_coordinate().empty()) { + // bytes compressed_zip_data = 3; + if (!this->_internal_compressed_zip_data().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_coordinate()); - } - - // bytes covisibility_graph = 6; - if (!this->_internal_covisibility_graph().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_covisibility_graph()); - } - - // bytes identification = 7; - if (!this->_internal_identification().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_identification()); - } - - // bytes keyframes = 8; - if (!this->_internal_keyframes().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_keyframes()); - } - - // bytes pointcloud = 9; - if (!this->_internal_pointcloud().empty()) { - total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_pointcloud()); + this->_internal_compressed_zip_data()); } // int32 grpcServerCompressionFormat = 1; @@ -6510,26 +5972,8 @@ void restoreMapRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const if (!from._internal_mapuuid().empty()) { _this->_internal_set_mapuuid(from._internal_mapuuid()); } - if (!from._internal_map_information().empty()) { - _this->_internal_set_map_information(from._internal_map_information()); - } - if (!from._internal_cameraparameters().empty()) { - _this->_internal_set_cameraparameters(from._internal_cameraparameters()); - } - if (!from._internal_coordinate().empty()) { - _this->_internal_set_coordinate(from._internal_coordinate()); - } - if (!from._internal_covisibility_graph().empty()) { - _this->_internal_set_covisibility_graph(from._internal_covisibility_graph()); - } - if (!from._internal_identification().empty()) { - _this->_internal_set_identification(from._internal_identification()); - } - if (!from._internal_keyframes().empty()) { - _this->_internal_set_keyframes(from._internal_keyframes()); - } - if (!from._internal_pointcloud().empty()) { - _this->_internal_set_pointcloud(from._internal_pointcloud()); + if (!from._internal_compressed_zip_data().empty()) { + _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); } if (from._internal_grpcservercompressionformat() != 0) { _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; @@ -6551,13 +5995,7 @@ void restoreMapRequest::InternalSwap(restoreMapRequest* PROTOBUF_RESTRICT other) 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_.map_information_, &other->_impl_.map_information_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.cameraparameters_, &other->_impl_.cameraparameters_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.coordinate_, &other->_impl_.coordinate_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.covisibility_graph_, &other->_impl_.covisibility_graph_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.identification_, &other->_impl_.identification_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.keyframes_, &other->_impl_.keyframes_, arena); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.pointcloud_, &other->_impl_.pointcloud_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); } From e11c00d8b4f6bac199dd22dd5804134177889163 Mon Sep 17 00:00:00 2001 From: ccutullic Date: Wed, 13 May 2026 15:26:40 +0200 Subject: [PATCH 3/3] refactor: use std::byte for compressed buffer in backup/restore map methods --- gen/interfaces/IFrontEnd_grpcProxy.h | 4 +- gen/interfaces/IMapsManager_grpcProxy.h | 4 +- gen/interfaces/grpcIFrontEndService.pb.h | 222 ++++++------- gen/interfaces/grpcIMapsManagerService.pb.h | 222 ++++++------- gen/proto/grpcIFrontEndService.proto | 6 +- gen/proto/grpcIMapsManagerService.proto | 6 +- gen/src/IFrontEnd_grpcProxy.cpp | 10 +- gen/src/IFrontEnd_grpcServer.cpp | 10 +- gen/src/IMapsManager_grpcProxy.cpp | 10 +- gen/src/IMapsManager_grpcServer.cpp | 10 +- gen/src/grpcIFrontEndService.pb.cc | 326 ++++++++++---------- gen/src/grpcIMapsManagerService.pb.cc | 242 +++++++-------- 12 files changed, 536 insertions(+), 536 deletions(-) diff --git a/gen/interfaces/IFrontEnd_grpcProxy.h b/gen/interfaces/IFrontEnd_grpcProxy.h index 70765cb..c1e86bd 100644 --- a/gen/interfaces/IFrontEnd_grpcProxy.h +++ b/gen/interfaces/IFrontEnd_grpcProxy.h @@ -47,8 +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& compressed_zip_data) const override; - SolAR::FrameworkReturnCode restoreMap(std::string const& accessToken, std::string const& mapUUID, std::vector const& compressed_zip_data) 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/IMapsManager_grpcProxy.h b/gen/interfaces/IMapsManager_grpcProxy.h index 292a756..5362ae1 100644 --- a/gen/interfaces/IMapsManager_grpcProxy.h +++ b/gen/interfaces/IMapsManager_grpcProxy.h @@ -31,8 +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& compressed_zip_data) const override; - SolAR::FrameworkReturnCode restoreMap(std::string const& mapUUID, std::vector const& compressed_zip_data) 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/grpcIFrontEndService.pb.h b/gen/interfaces/grpcIFrontEndService.pb.h index c9388a3..35d809f 100644 --- a/gen/interfaces/grpcIFrontEndService.pb.h +++ b/gen/interfaces/grpcIFrontEndService.pb.h @@ -3330,20 +3330,20 @@ class restoreMapRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // bytes compressed_zip_data = 4; - void clear_compressed_zip_data() ; - const std::string& compressed_zip_data() const; + // bytes compressedZipData = 4; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; template - void set_compressed_zip_data(Arg_&& arg, Args_... args); - std::string* mutable_compressed_zip_data(); - PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); - void set_allocated_compressed_zip_data(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_compressed_zip_data() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( const std::string& value); - std::string* _internal_mutable_compressed_zip_data(); + std::string* _internal_mutable_compressedzipdata(); public: // int32 grpcServerCompressionFormat = 1; @@ -3384,7 +3384,7 @@ class restoreMapRequest final : public ::google::protobuf::Message const restoreMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -12575,20 +12575,20 @@ class backupMapResponse final : public ::google::protobuf::Message kCompressedZipDataFieldNumber = 1, kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes compressed_zip_data = 1; - void clear_compressed_zip_data() ; - const std::string& compressed_zip_data() const; + // bytes compressedZipData = 1; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; template - void set_compressed_zip_data(Arg_&& arg, Args_... args); - std::string* mutable_compressed_zip_data(); - PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); - void set_allocated_compressed_zip_data(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_compressed_zip_data() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( const std::string& value); - std::string* _internal_mutable_compressed_zip_data(); + std::string* _internal_mutable_compressedzipdata(); public: // sint32 xpcfGrpcReturnValue = 2; @@ -12627,7 +12627,7 @@ class backupMapResponse final : public ::google::protobuf::Message inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, const backupMapResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -12798,20 +12798,20 @@ class backupMapRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // bytes compressed_zip_data = 4; - void clear_compressed_zip_data() ; - const std::string& compressed_zip_data() const; + // bytes compressedZipData = 4; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; template - void set_compressed_zip_data(Arg_&& arg, Args_... args); - std::string* mutable_compressed_zip_data(); - PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); - void set_allocated_compressed_zip_data(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_compressed_zip_data() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( const std::string& value); - std::string* _internal_mutable_compressed_zip_data(); + std::string* _internal_mutable_compressedzipdata(); public: // int32 grpcServerCompressionFormat = 1; @@ -12852,7 +12852,7 @@ class backupMapRequest final : public ::google::protobuf::Message const backupMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr accesstoken_; ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -19489,108 +19489,108 @@ inline void backupMapRequest::set_allocated_mapuuid(std::string* value) { // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.mapUUID) } -// bytes compressed_zip_data = 4; -inline void backupMapRequest::clear_compressed_zip_data() { +// bytes compressedZipData = 4; +inline void backupMapRequest::clear_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); } -inline const std::string& backupMapRequest::compressed_zip_data() const +inline const std::string& backupMapRequest::compressedzipdata() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.compressed_zip_data) - return _internal_compressed_zip_data(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapRequest.compressedZipData) + return _internal_compressedzipdata(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_compressed_zip_data(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_compressedzipdata(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.compressed_zip_data) + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapRequest.compressedZipData) } -inline std::string* backupMapRequest::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_compressed_zip_data(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapRequest.compressed_zip_data) +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& backupMapRequest::_internal_compressed_zip_data() const { +inline const std::string& backupMapRequest::_internal_compressedzipdata() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.compressed_zip_data_.Get(); + return _impl_.compressedzipdata_.Get(); } -inline void backupMapRequest::_internal_set_compressed_zip_data(const std::string& value) { +inline void backupMapRequest::_internal_set_compressedzipdata(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.Set(value, GetArena()); + _impl_.compressedzipdata_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_compressed_zip_data() { +inline std::string* backupMapRequest::_internal_mutable_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.compressed_zip_data_.Mutable( GetArena()); + return _impl_.compressedzipdata_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_compressed_zip_data() { +inline std::string* backupMapRequest::release_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.compressed_zip_data) - return _impl_.compressed_zip_data_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapRequest.compressedZipData) + return _impl_.compressedzipdata_.Release(); } -inline void backupMapRequest::set_allocated_compressed_zip_data(std::string* value) { +inline void backupMapRequest::set_allocated_compressedzipdata(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.compressed_zip_data_.IsDefault()) { - _impl_.compressed_zip_data_.Set("", GetArena()); + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.compressed_zip_data) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapRequest.compressedZipData) } // ------------------------------------------------------------------- // backupMapResponse -// bytes compressed_zip_data = 1; -inline void backupMapResponse::clear_compressed_zip_data() { +// bytes compressedZipData = 1; +inline void backupMapResponse::clear_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); } -inline const std::string& backupMapResponse::compressed_zip_data() const +inline const std::string& backupMapResponse::compressedzipdata() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.compressed_zip_data) - return _internal_compressed_zip_data(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.backupMapResponse.compressedZipData) + return _internal_compressedzipdata(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_compressed_zip_data(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_compressedzipdata(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.compressed_zip_data) + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.backupMapResponse.compressedZipData) } -inline std::string* backupMapResponse::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_compressed_zip_data(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.backupMapResponse.compressed_zip_data) +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_compressed_zip_data() const { +inline const std::string& backupMapResponse::_internal_compressedzipdata() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.compressed_zip_data_.Get(); + return _impl_.compressedzipdata_.Get(); } -inline void backupMapResponse::_internal_set_compressed_zip_data(const std::string& value) { +inline void backupMapResponse::_internal_set_compressedzipdata(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.Set(value, GetArena()); + _impl_.compressedzipdata_.Set(value, GetArena()); } -inline std::string* backupMapResponse::_internal_mutable_compressed_zip_data() { +inline std::string* backupMapResponse::_internal_mutable_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.compressed_zip_data_.Mutable( GetArena()); + return _impl_.compressedzipdata_.Mutable( GetArena()); } -inline std::string* backupMapResponse::release_compressed_zip_data() { +inline std::string* backupMapResponse::release_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.compressed_zip_data) - return _impl_.compressed_zip_data_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.backupMapResponse.compressedZipData) + return _impl_.compressedzipdata_.Release(); } -inline void backupMapResponse::set_allocated_compressed_zip_data(std::string* value) { +inline void backupMapResponse::set_allocated_compressedzipdata(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.compressed_zip_data_.IsDefault()) { - _impl_.compressed_zip_data_.Set("", GetArena()); + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.compressed_zip_data) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.backupMapResponse.compressedZipData) } // sint32 xpcfGrpcReturnValue = 2; @@ -19741,54 +19741,54 @@ inline void restoreMapRequest::set_allocated_mapuuid(std::string* value) { // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.mapUUID) } -// bytes compressed_zip_data = 4; -inline void restoreMapRequest::clear_compressed_zip_data() { +// bytes compressedZipData = 4; +inline void restoreMapRequest::clear_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); } -inline const std::string& restoreMapRequest::compressed_zip_data() const +inline const std::string& restoreMapRequest::compressedzipdata() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.compressed_zip_data) - return _internal_compressed_zip_data(); + // @@protoc_insertion_point(field_get:grpcIFrontEnd.restoreMapRequest.compressedZipData) + return _internal_compressedzipdata(); } template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_compressed_zip_data(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_compressedzipdata(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.compressed_zip_data) + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIFrontEnd.restoreMapRequest.compressedZipData) } -inline std::string* restoreMapRequest::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_compressed_zip_data(); - // @@protoc_insertion_point(field_mutable:grpcIFrontEnd.restoreMapRequest.compressed_zip_data) +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_compressed_zip_data() const { +inline const std::string& restoreMapRequest::_internal_compressedzipdata() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.compressed_zip_data_.Get(); + return _impl_.compressedzipdata_.Get(); } -inline void restoreMapRequest::_internal_set_compressed_zip_data(const std::string& value) { +inline void restoreMapRequest::_internal_set_compressedzipdata(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.Set(value, GetArena()); + _impl_.compressedzipdata_.Set(value, GetArena()); } -inline std::string* restoreMapRequest::_internal_mutable_compressed_zip_data() { +inline std::string* restoreMapRequest::_internal_mutable_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.compressed_zip_data_.Mutable( GetArena()); + return _impl_.compressedzipdata_.Mutable( GetArena()); } -inline std::string* restoreMapRequest::release_compressed_zip_data() { +inline std::string* restoreMapRequest::release_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.compressed_zip_data) - return _impl_.compressed_zip_data_.Release(); + // @@protoc_insertion_point(field_release:grpcIFrontEnd.restoreMapRequest.compressedZipData) + return _impl_.compressedzipdata_.Release(); } -inline void restoreMapRequest::set_allocated_compressed_zip_data(std::string* value) { +inline void restoreMapRequest::set_allocated_compressedzipdata(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.compressed_zip_data_.IsDefault()) { - _impl_.compressed_zip_data_.Set("", GetArena()); + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.compressed_zip_data) + // @@protoc_insertion_point(field_set_allocated:grpcIFrontEnd.restoreMapRequest.compressedZipData) } // ------------------------------------------------------------------- diff --git a/gen/interfaces/grpcIMapsManagerService.pb.h b/gen/interfaces/grpcIMapsManagerService.pb.h index b4c2792..ed36db0 100644 --- a/gen/interfaces/grpcIMapsManagerService.pb.h +++ b/gen/interfaces/grpcIMapsManagerService.pb.h @@ -841,20 +841,20 @@ class restoreMapRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // bytes compressed_zip_data = 3; - void clear_compressed_zip_data() ; - const std::string& compressed_zip_data() const; + // bytes compressedZipData = 3; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; template - void set_compressed_zip_data(Arg_&& arg, Args_... args); - std::string* mutable_compressed_zip_data(); - PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); - void set_allocated_compressed_zip_data(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_compressed_zip_data() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( const std::string& value); - std::string* _internal_mutable_compressed_zip_data(); + std::string* _internal_mutable_compressedzipdata(); public: // int32 grpcServerCompressionFormat = 1; @@ -894,7 +894,7 @@ class restoreMapRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena, const Impl_& from, const restoreMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -5435,20 +5435,20 @@ class backupMapResponse final : public ::google::protobuf::Message kCompressedZipDataFieldNumber = 1, kXpcfGrpcReturnValueFieldNumber = 2, }; - // bytes compressed_zip_data = 1; - void clear_compressed_zip_data() ; - const std::string& compressed_zip_data() const; + // bytes compressedZipData = 1; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; template - void set_compressed_zip_data(Arg_&& arg, Args_... args); - std::string* mutable_compressed_zip_data(); - PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); - void set_allocated_compressed_zip_data(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_compressed_zip_data() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( const std::string& value); - std::string* _internal_mutable_compressed_zip_data(); + std::string* _internal_mutable_compressedzipdata(); public: // sint32 xpcfGrpcReturnValue = 2; @@ -5487,7 +5487,7 @@ class backupMapResponse final : public ::google::protobuf::Message inline explicit Impl_(::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, const backupMapResponse& from_msg); - ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; ::int32_t xpcfgrpcreturnvalue_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -5641,20 +5641,20 @@ class backupMapRequest final : public ::google::protobuf::Message std::string* _internal_mutable_mapuuid(); public: - // bytes compressed_zip_data = 3; - void clear_compressed_zip_data() ; - const std::string& compressed_zip_data() const; + // bytes compressedZipData = 3; + void clear_compressedzipdata() ; + const std::string& compressedzipdata() const; template - void set_compressed_zip_data(Arg_&& arg, Args_... args); - std::string* mutable_compressed_zip_data(); - PROTOBUF_NODISCARD std::string* release_compressed_zip_data(); - void set_allocated_compressed_zip_data(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_compressed_zip_data() const; - inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressed_zip_data( + const std::string& _internal_compressedzipdata() const; + inline PROTOBUF_ALWAYS_INLINE void _internal_set_compressedzipdata( const std::string& value); - std::string* _internal_mutable_compressed_zip_data(); + std::string* _internal_mutable_compressedzipdata(); public: // int32 grpcServerCompressionFormat = 1; @@ -5694,7 +5694,7 @@ class backupMapRequest final : public ::google::protobuf::Message ::google::protobuf::Arena* arena, const Impl_& from, const backupMapRequest& from_msg); ::google::protobuf::internal::ArenaStringPtr mapuuid_; - ::google::protobuf::internal::ArenaStringPtr compressed_zip_data_; + ::google::protobuf::internal::ArenaStringPtr compressedzipdata_; ::int32_t grpcservercompressionformat_; mutable ::google::protobuf::internal::CachedSize _cached_size_; PROTOBUF_TSAN_DECLARE_MEMBER @@ -7407,108 +7407,108 @@ inline void backupMapRequest::set_allocated_mapuuid(std::string* value) { // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.mapUUID) } -// bytes compressed_zip_data = 3; -inline void backupMapRequest::clear_compressed_zip_data() { +// bytes compressedZipData = 3; +inline void backupMapRequest::clear_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); } -inline const std::string& backupMapRequest::compressed_zip_data() const +inline const std::string& backupMapRequest::compressedzipdata() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.compressed_zip_data) - return _internal_compressed_zip_data(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapRequest.compressedZipData) + return _internal_compressedzipdata(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_compressed_zip_data(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapRequest::set_compressedzipdata(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.compressed_zip_data) + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapRequest.compressedZipData) } -inline std::string* backupMapRequest::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_compressed_zip_data(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapRequest.compressed_zip_data) +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_compressed_zip_data() const { +inline const std::string& backupMapRequest::_internal_compressedzipdata() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.compressed_zip_data_.Get(); + return _impl_.compressedzipdata_.Get(); } -inline void backupMapRequest::_internal_set_compressed_zip_data(const std::string& value) { +inline void backupMapRequest::_internal_set_compressedzipdata(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.Set(value, GetArena()); + _impl_.compressedzipdata_.Set(value, GetArena()); } -inline std::string* backupMapRequest::_internal_mutable_compressed_zip_data() { +inline std::string* backupMapRequest::_internal_mutable_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.compressed_zip_data_.Mutable( GetArena()); + return _impl_.compressedzipdata_.Mutable( GetArena()); } -inline std::string* backupMapRequest::release_compressed_zip_data() { +inline std::string* backupMapRequest::release_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.compressed_zip_data) - return _impl_.compressed_zip_data_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapRequest.compressedZipData) + return _impl_.compressedzipdata_.Release(); } -inline void backupMapRequest::set_allocated_compressed_zip_data(std::string* value) { +inline void backupMapRequest::set_allocated_compressedzipdata(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.compressed_zip_data_.IsDefault()) { - _impl_.compressed_zip_data_.Set("", GetArena()); + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.compressed_zip_data) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapRequest.compressedZipData) } // ------------------------------------------------------------------- // backupMapResponse -// bytes compressed_zip_data = 1; -inline void backupMapResponse::clear_compressed_zip_data() { +// bytes compressedZipData = 1; +inline void backupMapResponse::clear_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); } -inline const std::string& backupMapResponse::compressed_zip_data() const +inline const std::string& backupMapResponse::compressedzipdata() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.compressed_zip_data) - return _internal_compressed_zip_data(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.backupMapResponse.compressedZipData) + return _internal_compressedzipdata(); } template -inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_compressed_zip_data(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void backupMapResponse::set_compressedzipdata(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.compressed_zip_data) + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.backupMapResponse.compressedZipData) } -inline std::string* backupMapResponse::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_compressed_zip_data(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.backupMapResponse.compressed_zip_data) +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_compressed_zip_data() const { +inline const std::string& backupMapResponse::_internal_compressedzipdata() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.compressed_zip_data_.Get(); + return _impl_.compressedzipdata_.Get(); } -inline void backupMapResponse::_internal_set_compressed_zip_data(const std::string& value) { +inline void backupMapResponse::_internal_set_compressedzipdata(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.Set(value, GetArena()); + _impl_.compressedzipdata_.Set(value, GetArena()); } -inline std::string* backupMapResponse::_internal_mutable_compressed_zip_data() { +inline std::string* backupMapResponse::_internal_mutable_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.compressed_zip_data_.Mutable( GetArena()); + return _impl_.compressedzipdata_.Mutable( GetArena()); } -inline std::string* backupMapResponse::release_compressed_zip_data() { +inline std::string* backupMapResponse::release_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.compressed_zip_data) - return _impl_.compressed_zip_data_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.backupMapResponse.compressedZipData) + return _impl_.compressedzipdata_.Release(); } -inline void backupMapResponse::set_allocated_compressed_zip_data(std::string* value) { +inline void backupMapResponse::set_allocated_compressedzipdata(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.compressed_zip_data_.IsDefault()) { - _impl_.compressed_zip_data_.Set("", GetArena()); + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.compressed_zip_data) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.backupMapResponse.compressedZipData) } // sint32 xpcfGrpcReturnValue = 2; @@ -7609,54 +7609,54 @@ inline void restoreMapRequest::set_allocated_mapuuid(std::string* value) { // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.mapUUID) } -// bytes compressed_zip_data = 3; -inline void restoreMapRequest::clear_compressed_zip_data() { +// bytes compressedZipData = 3; +inline void restoreMapRequest::clear_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); } -inline const std::string& restoreMapRequest::compressed_zip_data() const +inline const std::string& restoreMapRequest::compressedzipdata() const ABSL_ATTRIBUTE_LIFETIME_BOUND { - // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.compressed_zip_data) - return _internal_compressed_zip_data(); + // @@protoc_insertion_point(field_get:grpcIMapsManager.restoreMapRequest.compressedZipData) + return _internal_compressedzipdata(); } template -inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_compressed_zip_data(Arg_&& arg, +inline PROTOBUF_ALWAYS_INLINE void restoreMapRequest::set_compressedzipdata(Arg_&& arg, Args_... args) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetBytes(static_cast(arg), args..., GetArena()); - // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.compressed_zip_data) + _impl_.compressedzipdata_.SetBytes(static_cast(arg), args..., GetArena()); + // @@protoc_insertion_point(field_set:grpcIMapsManager.restoreMapRequest.compressedZipData) } -inline std::string* restoreMapRequest::mutable_compressed_zip_data() ABSL_ATTRIBUTE_LIFETIME_BOUND { - std::string* _s = _internal_mutable_compressed_zip_data(); - // @@protoc_insertion_point(field_mutable:grpcIMapsManager.restoreMapRequest.compressed_zip_data) +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_compressed_zip_data() const { +inline const std::string& restoreMapRequest::_internal_compressedzipdata() const { ::google::protobuf::internal::TSanRead(&_impl_); - return _impl_.compressed_zip_data_.Get(); + return _impl_.compressedzipdata_.Get(); } -inline void restoreMapRequest::_internal_set_compressed_zip_data(const std::string& value) { +inline void restoreMapRequest::_internal_set_compressedzipdata(const std::string& value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.Set(value, GetArena()); + _impl_.compressedzipdata_.Set(value, GetArena()); } -inline std::string* restoreMapRequest::_internal_mutable_compressed_zip_data() { +inline std::string* restoreMapRequest::_internal_mutable_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - return _impl_.compressed_zip_data_.Mutable( GetArena()); + return _impl_.compressedzipdata_.Mutable( GetArena()); } -inline std::string* restoreMapRequest::release_compressed_zip_data() { +inline std::string* restoreMapRequest::release_compressedzipdata() { ::google::protobuf::internal::TSanWrite(&_impl_); - // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.compressed_zip_data) - return _impl_.compressed_zip_data_.Release(); + // @@protoc_insertion_point(field_release:grpcIMapsManager.restoreMapRequest.compressedZipData) + return _impl_.compressedzipdata_.Release(); } -inline void restoreMapRequest::set_allocated_compressed_zip_data(std::string* value) { +inline void restoreMapRequest::set_allocated_compressedzipdata(std::string* value) { ::google::protobuf::internal::TSanWrite(&_impl_); - _impl_.compressed_zip_data_.SetAllocated(value, GetArena()); + _impl_.compressedzipdata_.SetAllocated(value, GetArena()); #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING - if (_impl_.compressed_zip_data_.IsDefault()) { - _impl_.compressed_zip_data_.Set("", GetArena()); + if (_impl_.compressedzipdata_.IsDefault()) { + _impl_.compressedzipdata_.Set("", GetArena()); } #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING - // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.compressed_zip_data) + // @@protoc_insertion_point(field_set_allocated:grpcIMapsManager.restoreMapRequest.compressedZipData) } // ------------------------------------------------------------------- diff --git a/gen/proto/grpcIFrontEndService.proto b/gen/proto/grpcIFrontEndService.proto index ec95eaa..f5b08c5 100644 --- a/gen/proto/grpcIFrontEndService.proto +++ b/gen/proto/grpcIFrontEndService.proto @@ -374,12 +374,12 @@ message backupMapRequest int32 grpcServerCompressionFormat = 1; string accessToken = 2; string mapUUID = 3; -bytes compressed_zip_data = 4; +bytes compressedZipData = 4; } message backupMapResponse { -bytes compressed_zip_data = 1; +bytes compressedZipData = 1; sint32 xpcfGrpcReturnValue = 2; } @@ -388,7 +388,7 @@ message restoreMapRequest int32 grpcServerCompressionFormat = 1; string accessToken = 2; string mapUUID = 3; -bytes compressed_zip_data = 4; +bytes compressedZipData = 4; } message restoreMapResponse diff --git a/gen/proto/grpcIMapsManagerService.proto b/gen/proto/grpcIMapsManagerService.proto index 8039a3c..e3a365b 100644 --- a/gen/proto/grpcIMapsManagerService.proto +++ b/gen/proto/grpcIMapsManagerService.proto @@ -126,12 +126,12 @@ message backupMapRequest { int32 grpcServerCompressionFormat = 1; string mapUUID = 2; -bytes compressed_zip_data = 3; +bytes compressedZipData = 3; } message backupMapResponse { -bytes compressed_zip_data = 1; +bytes compressedZipData = 1; sint32 xpcfGrpcReturnValue = 2; } @@ -139,7 +139,7 @@ message restoreMapRequest { int32 grpcServerCompressionFormat = 1; string mapUUID = 2; -bytes compressed_zip_data = 3; +bytes compressedZipData = 3; } message restoreMapResponse diff --git a/gen/src/IFrontEnd_grpcProxy.cpp b/gen/src/IFrontEnd_grpcProxy.cpp index 1158840..a091b7e 100644 --- a/gen/src/IFrontEnd_grpcProxy.cpp +++ b/gen/src/IFrontEnd_grpcProxy.cpp @@ -887,7 +887,7 @@ SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::getMapInfo(std::string const& a } -SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::backupMap(std::string const& accessToken, std::string const& mapUUID, std::vector& compressed_zip_data) const +SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::backupMap(std::string const& accessToken, std::string const& mapUUID, std::vector& compressedZipData) const { ::grpc::ClientContext context; ::grpcIFrontEnd::backupMapRequest reqIn; @@ -899,7 +899,7 @@ SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::backupMap(std::string const& ac #endif reqIn.set_accesstoken(accessToken); reqIn.set_mapuuid(mapUUID); - reqIn.set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); + 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; @@ -915,12 +915,12 @@ SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::backupMap(std::string const& ac throw xpcf::RemotingException("grpcIFrontEndService","backupMap",static_cast(grpcRemoteStatus.error_code())); } - compressed_zip_data = xpcf::deserialize>(respOut.compressed_zip_data()); + 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& compressed_zip_data) +SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::restoreMap(std::string const& accessToken, std::string const& mapUUID, std::vector const& compressedZipData) { ::grpc::ClientContext context; ::grpcIFrontEnd::restoreMapRequest reqIn; @@ -932,7 +932,7 @@ SolAR::FrameworkReturnCode IFrontEnd_grpcProxy::restoreMap(std::string const& a #endif reqIn.set_accesstoken(accessToken); reqIn.set_mapuuid(mapUUID); - reqIn.set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); + 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; diff --git a/gen/src/IFrontEnd_grpcServer.cpp b/gen/src/IFrontEnd_grpcServer.cpp index e82473a..33e8fd7 100644 --- a/gen/src/IFrontEnd_grpcServer.cpp +++ b/gen/src/IFrontEnd_grpcServer.cpp @@ -718,9 +718,9 @@ ::grpc::Status IFrontEnd_grpcServer::grpcIFrontEndServiceImpl::backupMap(::grpc: #endif std::string accessToken = request->accesstoken(); std::string mapUUID = request->mapuuid(); - std::vector compressed_zip_data = xpcf::deserialize>(request->compressed_zip_data()); - SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->backupMap(accessToken, mapUUID, compressed_zip_data); - response->set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); + 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(); @@ -744,8 +744,8 @@ ::grpc::Status IFrontEnd_grpcServer::grpcIFrontEndServiceImpl::restoreMap(::grpc #endif std::string accessToken = request->accesstoken(); std::string mapUUID = request->mapuuid(); - std::vector compressed_zip_data = xpcf::deserialize>(request->compressed_zip_data()); - SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->restoreMap(accessToken, mapUUID, compressed_zip_data); + 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(); diff --git a/gen/src/IMapsManager_grpcProxy.cpp b/gen/src/IMapsManager_grpcProxy.cpp index e7fcc52..2ec240e 100644 --- a/gen/src/IMapsManager_grpcProxy.cpp +++ b/gen/src/IMapsManager_grpcProxy.cpp @@ -336,7 +336,7 @@ SolAR::FrameworkReturnCode IMapsManager_grpcProxy::getMapInfo(std::string const } -SolAR::FrameworkReturnCode IMapsManager_grpcProxy::backupMap(std::string const& mapUUID, std::vector& compressed_zip_data) const +SolAR::FrameworkReturnCode IMapsManager_grpcProxy::backupMap(std::string const& mapUUID, std::vector& compressedZipData) const { ::grpc::ClientContext context; ::grpcIMapsManager::backupMapRequest reqIn; @@ -347,7 +347,7 @@ SolAR::FrameworkReturnCode IMapsManager_grpcProxy::backupMap(std::string const& reqIn.set_grpcservercompressionformat (static_cast(serverCompressionType)); #endif reqIn.set_mapuuid(mapUUID); - reqIn.set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); + 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; @@ -363,12 +363,12 @@ SolAR::FrameworkReturnCode IMapsManager_grpcProxy::backupMap(std::string const& throw xpcf::RemotingException("grpcIMapsManagerService","backupMap",static_cast(grpcRemoteStatus.error_code())); } - compressed_zip_data = xpcf::deserialize>(respOut.compressed_zip_data()); + compressedZipData = xpcf::deserialize>(respOut.compressedzipdata()); return static_cast(respOut.xpcfgrpcreturnvalue()); } -SolAR::FrameworkReturnCode IMapsManager_grpcProxy::restoreMap(std::string const& mapUUID, std::vector const& compressed_zip_data) +SolAR::FrameworkReturnCode IMapsManager_grpcProxy::restoreMap(std::string const& mapUUID, std::vector const& compressedZipData) { ::grpc::ClientContext context; ::grpcIMapsManager::restoreMapRequest reqIn; @@ -379,7 +379,7 @@ SolAR::FrameworkReturnCode IMapsManager_grpcProxy::restoreMap(std::string const reqIn.set_grpcservercompressionformat (static_cast(serverCompressionType)); #endif reqIn.set_mapuuid(mapUUID); - reqIn.set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); + 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; diff --git a/gen/src/IMapsManager_grpcServer.cpp b/gen/src/IMapsManager_grpcServer.cpp index 2ba389e..9c70f99 100644 --- a/gen/src/IMapsManager_grpcServer.cpp +++ b/gen/src/IMapsManager_grpcServer.cpp @@ -278,9 +278,9 @@ ::grpc::Status IMapsManager_grpcServer::grpcIMapsManagerServiceImpl::backupMap(: std::cout << "====> IMapsManager_grpcServer::backupMap request received at " << to_simple_string(start) << std::endl; #endif std::string mapUUID = request->mapuuid(); - std::vector compressed_zip_data = xpcf::deserialize>(request->compressed_zip_data()); - SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->backupMap(mapUUID, compressed_zip_data); - response->set_compressed_zip_data(xpcf::serialize>(compressed_zip_data)); + 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(); @@ -303,8 +303,8 @@ ::grpc::Status IMapsManager_grpcServer::grpcIMapsManagerServiceImpl::restoreMap( std::cout << "====> IMapsManager_grpcServer::restoreMap request received at " << to_simple_string(start) << std::endl; #endif std::string mapUUID = request->mapuuid(); - std::vector compressed_zip_data = xpcf::deserialize>(request->compressed_zip_data()); - SolAR::FrameworkReturnCode returnValue = m_xpcfComponent->restoreMap(mapUUID, compressed_zip_data); + 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(); diff --git a/gen/src/grpcIFrontEndService.pb.cc b/gen/src/grpcIFrontEndService.pb.cc index d655a03..17bcce7 100644 --- a/gen/src/grpcIFrontEndService.pb.cc +++ b/gen/src/grpcIFrontEndService.pb.cc @@ -378,7 +378,7 @@ inline constexpr restoreMapRequest::Impl_::Impl_( mapuuid_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), - compressed_zip_data_( + compressedzipdata_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), grpcservercompressionformat_{0}, @@ -1483,7 +1483,7 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT inline constexpr backupMapResponse::Impl_::Impl_( ::_pbi::ConstantInitialized) noexcept - : compressed_zip_data_( + : compressedzipdata_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), xpcfgrpcreturnvalue_{0}, @@ -1511,7 +1511,7 @@ inline constexpr backupMapRequest::Impl_::Impl_( mapuuid_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), - compressed_zip_data_( + compressedzipdata_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), grpcservercompressionformat_{0}, @@ -2114,7 +2114,7 @@ const ::uint32_t 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_.compressed_zip_data_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapRequest, _impl_.compressedzipdata_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _internal_metadata_), ~0u, // no _extensions_ @@ -2123,7 +2123,7 @@ const ::uint32_t ~0u, // no _inlined_string_donated_ ~0u, // no _split_ ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::backupMapResponse, _impl_.compressed_zip_data_), + 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_), @@ -2136,7 +2136,7 @@ const ::uint32_t 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_.compressed_zip_data_), + PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapRequest, _impl_.compressedzipdata_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIFrontEnd::restoreMapResponse, _internal_metadata_), ~0u, // no _extensions_ @@ -2484,112 +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\"z\n\020backupMapRequest\022" + "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\033\n\023co" - "mpressed_zip_data\030\004 \001(\014\"M\n\021backupMapResp" - "onse\022\033\n\023compressed_zip_data\030\001 \001(\014\022\033\n\023xpc" - "fGrpcReturnValue\030\002 \001(\021\"{\n\021restoreMapRequ" - "est\022#\n\033grpcServerCompressionFormat\030\001 \001(\005" - "\022\023\n\013accessToken\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\033" - "\n\023compressed_zip_data\030\004 \001(\014\"1\n\022restoreMa" - "pResponse\022\033\n\023xpcfGrpcReturnValue\030\001 \001(\021\"\227" - "\001\n\033requestMapProcessingRequest\022#\n\033grpcSe" - "rverCompressionFormat\030\001 \001(\005\022\023\n\013accessTok" - "en\030\002 \001(\t\022\017\n\007mapUUID\030\003 \001(\t\022\025\n\rresultMapUU" - "ID\030\004 \001(\t\022\026\n\016processingType\030\005 \001(\021\";\n\034requ" - "estMapProcessingResponse\022\033\n\023xpcfGrpcRetu" - "rnValue\030\001 \001(\021\"\252\001\n\035getMapProcessingStatus" - "Request\022#\n\033grpcServerCompressionFormat\030\001" - " \001(\005\022\023\n\013accessToken\030\002 \001(\t\022\025\n\rresultMapUU" - "ID\030\003 \001(\t\022\016\n\006status\030\004 \001(\021\022\026\n\016processingTy" - "pe\030\005 \001(\021\022\020\n\010progress\030\006 \001(\002\"w\n\036getMapProc" - "essingStatusResponse\022\016\n\006status\030\001 \001(\021\022\026\n\016" - "processingType\030\002 \001(\021\022\020\n\010progress\030\003 \001(\002\022\033" - "\n\023xpcfGrpcReturnValue\030\004 \001(\021\"\231\001\n\033getMapPr" - "ocessingDataRequest\022#\n\033grpcServerCompres" - "sionFormat\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\034getMapProcess" - "ingDataResponse\022\022\n\npointCloud\030\001 \001(\014\022\025\n\rk" - "eyframePoses\030\002 \001(\014\022\033\n\023xpcfGrpcReturnValu" - "e\030\003 \001(\0212\351\027\n\024grpcIFrontEndService\022_\n\016regi" - "sterClient\022$.grpcIFrontEnd.registerClien" - "tRequest\032%.grpcIFrontEnd.registerClientR" - "esponse\"\000\022e\n\020unregisterClient\022&.grpcIFro" - "ntEnd.unregisterClientRequest\032\'.grpcIFro" - "ntEnd.unregisterClientResponse\"\000\022h\n\021getA" - "llClientsUUID\022\'.grpcIFrontEnd.getAllClie" - "ntsUUIDRequest\032(.grpcIFrontEnd.getAllCli" - "entsUUIDResponse\"\000\022\\\n\rgetDeviceInfo\022#.gr" - "pcIFrontEnd.getDeviceInfoRequest\032$.grpcI" - "FrontEnd.getDeviceInfoResponse\"\000\022S\n\ninit" - "_grpc0\022 .grpcIFrontEnd.init_grpc0Request" - "\032!.grpcIFrontEnd.init_grpc0Response\"\000\022S\n" - "\ninit_grpc1\022 .grpcIFrontEnd.init_grpc1Re" - "quest\032!.grpcIFrontEnd.init_grpc1Response" - "\"\000\022D\n\005start\022\033.grpcIFrontEnd.startRequest" - "\032\034.grpcIFrontEnd.startResponse\"\000\022A\n\004stop" - "\022\032.grpcIFrontEnd.stopRequest\032\033.grpcIFron" - "tEnd.stopResponse\"\000\022h\n\021getProcessingMode" - "\022\'.grpcIFrontEnd.getProcessingModeReques" - "t\032(.grpcIFrontEnd.getProcessingModeRespo" - "nse\"\000\022\200\001\n\031setCameraParameters_grpc0\022/.gr" - "pcIFrontEnd.setCameraParameters_grpc0Req" - "uest\0320.grpcIFrontEnd.setCameraParameters" - "_grpc0Response\"\000\022\200\001\n\031setCameraParameters" - "_grpc1\022/.grpcIFrontEnd.setCameraParamete" - "rs_grpc1Request\0320.grpcIFrontEnd.setCamer" - "aParameters_grpc1Response\"\000\022\203\001\n\032setRecti" - "ficationParameters\0220.grpcIFrontEnd.setRe" - "ctificationParametersRequest\0321.grpcIFron" - "tEnd.setRectificationParametersResponse\"" - "\000\022n\n\023getCameraParameters\022).grpcIFrontEnd" - ".getCameraParametersRequest\032*.grpcIFront" - "End.getCameraParametersResponse\"\000\022n\n\023ima" - "geProcessRequest\022).grpcIFrontEnd.imagePr" - "ocessRequestRequest\032*.grpcIFrontEnd.imag" - "eProcessRequestResponse\"\000\022t\n\025getMappingD" - "ataRequest\022+.grpcIFrontEnd.getMappingDat" - "aRequestRequest\032,.grpcIFrontEnd.getMappi" - "ngDataRequestResponse\"\000\022\\\n\rgetClientPose" - "\022#.grpcIFrontEnd.getClientPoseRequest\032$." - "grpcIFrontEnd.getClientPoseResponse\"\000\022P\n" - "\tcreateMap\022\037.grpcIFrontEnd.createMapRequ" - "est\032 .grpcIFrontEnd.createMapResponse\"\000\022" - "P\n\tdeleteMap\022\037.grpcIFrontEnd.deleteMapRe" - "quest\032 .grpcIFrontEnd.deleteMapResponse\"" - "\000\022_\n\016getAllMapsUUID\022$.grpcIFrontEnd.getA" - "llMapsUUIDRequest\032%.grpcIFrontEnd.getAll" - "MapsUUIDResponse\"\000\022e\n\020getClientMapUUID\022&" - ".grpcIFrontEnd.getClientMapUUIDRequest\032\'" - ".grpcIFrontEnd.getClientMapUUIDResponse\"" - "\000\022n\n\023getClientInfoForMap\022).grpcIFrontEnd" - ".getClientInfoForMapRequest\032*.grpcIFront" - "End.getClientInfoForMapResponse\"\000\022\\\n\rget" - "MapRequest\022#.grpcIFrontEnd.getMapRequest" - "Request\032$.grpcIFrontEnd.getMapRequestRes" - "ponse\"\000\022\\\n\rsetMapRequest\022#.grpcIFrontEnd" - ".setMapRequestRequest\032$.grpcIFrontEnd.se" - "tMapRequestResponse\"\000\022q\n\024getPointCloudRe" - "quest\022*.grpcIFrontEnd.getPointCloudReque" - "stRequest\032+.grpcIFrontEnd.getPointCloudR" - "equestResponse\"\000\022S\n\ngetMapInfo\022 .grpcIFr" - "ontEnd.getMapInfoRequest\032!.grpcIFrontEnd" - ".getMapInfoResponse\"\000\022P\n\tbackupMap\022\037.grp" - "cIFrontEnd.backupMapRequest\032 .grpcIFront" - "End.backupMapResponse\"\000\022S\n\nrestoreMap\022 ." - "grpcIFrontEnd.restoreMapRequest\032!.grpcIF" - "rontEnd.restoreMapResponse\"\000\022q\n\024requestM" - "apProcessing\022*.grpcIFrontEnd.requestMapP" - "rocessingRequest\032+.grpcIFrontEnd.request" - "MapProcessingResponse\"\000\022w\n\026getMapProcess" - "ingStatus\022,.grpcIFrontEnd.getMapProcessi" - "ngStatusRequest\032-.grpcIFrontEnd.getMapPr" - "ocessingStatusResponse\"\000\022q\n\024getMapProces" - "singData\022*.grpcIFrontEnd.getMapProcessin" - "gDataRequest\032+.grpcIFrontEnd.getMapProce" - "ssingDataResponse\"\000b\006proto3" + "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] = { @@ -2599,7 +2599,7 @@ static ::absl::once_flag descriptor_table_grpcIFrontEndService_2eproto_once; PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_grpcIFrontEndService_2eproto = { false, false, - 9707, + 9701, descriptor_table_protodef_grpcIFrontEndService_2eproto, "grpcIFrontEndService.proto", &descriptor_table_grpcIFrontEndService_2eproto_once, @@ -15171,7 +15171,7 @@ inline PROTOBUF_NDEBUG_INLINE backupMapRequest::Impl_::Impl_( const Impl_& from, const ::grpcIFrontEnd::backupMapRequest& from_msg) : accesstoken_(arena, from.accesstoken_), mapuuid_(arena, from.mapuuid_), - compressed_zip_data_(arena, from.compressed_zip_data_), + compressedzipdata_(arena, from.compressedzipdata_), _cached_size_{0} {} backupMapRequest::backupMapRequest( @@ -15192,7 +15192,7 @@ inline PROTOBUF_NDEBUG_INLINE backupMapRequest::Impl_::Impl_( ::google::protobuf::Arena* arena) : accesstoken_(arena), mapuuid_(arena), - compressed_zip_data_(arena), + compressedzipdata_(arena), _cached_size_{0} {} inline void backupMapRequest::SharedCtor(::_pb::Arena* arena) { @@ -15208,7 +15208,7 @@ inline void backupMapRequest::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); _impl_.accesstoken_.Destroy(); _impl_.mapuuid_.Destroy(); - _impl_.compressed_zip_data_.Destroy(); + _impl_.compressedzipdata_.Destroy(); _impl_.~Impl_(); } @@ -15251,9 +15251,9 @@ const ::_pbi::TcParseTable<2, 4, 0, 57, 2> backupMapRequest::_table_ = { ::_pbi::TcParser::GetTable<::grpcIFrontEnd::backupMapRequest>(), // to_prefetch #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ - // bytes compressed_zip_data = 4; + // bytes compressedZipData = 4; {::_pbi::TcParser::FastBS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressed_zip_data_)}}, + {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_)}}, @@ -15275,8 +15275,8 @@ const ::_pbi::TcParseTable<2, 4, 0, 57, 2> backupMapRequest::_table_ = { // string mapUUID = 3; {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes compressed_zip_data = 4; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressed_zip_data_), 0, 0, + // bytes compressedZipData = 4; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressedzipdata_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, }}, // no aux_entries @@ -15297,7 +15297,7 @@ PROTOBUF_NOINLINE void backupMapRequest::Clear() { _impl_.accesstoken_.ClearToEmpty(); _impl_.mapuuid_.ClearToEmpty(); - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); _impl_.grpcservercompressionformat_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -15332,9 +15332,9 @@ ::uint8_t* backupMapRequest::_InternalSerialize( target = stream->WriteStringMaybeAliased(3, _s, target); } - // bytes compressed_zip_data = 4; - if (!this->_internal_compressed_zip_data().empty()) { - const std::string& _s = this->_internal_compressed_zip_data(); + // bytes compressedZipData = 4; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); target = stream->WriteBytesMaybeAliased(4, _s, target); } @@ -15368,10 +15368,10 @@ ::size_t backupMapRequest::ByteSizeLong() const { this->_internal_mapuuid()); } - // bytes compressed_zip_data = 4; - if (!this->_internal_compressed_zip_data().empty()) { + // bytes compressedZipData = 4; + if (!this->_internal_compressedzipdata().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_compressed_zip_data()); + this->_internal_compressedzipdata()); } // int32 grpcServerCompressionFormat = 1; @@ -15398,8 +15398,8 @@ void backupMapRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const if (!from._internal_mapuuid().empty()) { _this->_internal_set_mapuuid(from._internal_mapuuid()); } - if (!from._internal_compressed_zip_data().empty()) { - _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); } if (from._internal_grpcservercompressionformat() != 0) { _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; @@ -15422,7 +15422,7 @@ void backupMapRequest::InternalSwap(backupMapRequest* PROTOBUF_RESTRICT other) { _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_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); } @@ -15443,7 +15443,7 @@ backupMapResponse::backupMapResponse(::google::protobuf::Arena* arena) inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, const ::grpcIFrontEnd::backupMapResponse& from_msg) - : compressed_zip_data_(arena, from.compressed_zip_data_), + : compressedzipdata_(arena, from.compressedzipdata_), _cached_size_{0} {} backupMapResponse::backupMapResponse( @@ -15462,7 +15462,7 @@ backupMapResponse::backupMapResponse( inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena) - : compressed_zip_data_(arena), + : compressedzipdata_(arena), _cached_size_{0} {} inline void backupMapResponse::SharedCtor(::_pb::Arena* arena) { @@ -15476,7 +15476,7 @@ backupMapResponse::~backupMapResponse() { } inline void backupMapResponse::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); - _impl_.compressed_zip_data_.Destroy(); + _impl_.compressedzipdata_.Destroy(); _impl_.~Impl_(); } @@ -15522,14 +15522,14 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> backupMapResponse::_table_ = { // sint32 xpcfGrpcReturnValue = 2; {::_pbi::TcParser::FastZ32S1, {16, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, - // bytes compressed_zip_data = 1; + // bytes compressedZipData = 1; {::_pbi::TcParser::FastBS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressed_zip_data_)}}, + {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressedzipdata_)}}, }}, {{ 65535, 65535 }}, {{ - // bytes compressed_zip_data = 1; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressed_zip_data_), 0, 0, + // 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, @@ -15547,7 +15547,7 @@ PROTOBUF_NOINLINE void backupMapResponse::Clear() { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); _impl_.xpcfgrpcreturnvalue_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -15559,9 +15559,9 @@ ::uint8_t* backupMapResponse::_InternalSerialize( ::uint32_t cached_has_bits = 0; (void)cached_has_bits; - // bytes compressed_zip_data = 1; - if (!this->_internal_compressed_zip_data().empty()) { - const std::string& _s = this->_internal_compressed_zip_data(); + // bytes compressedZipData = 1; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); target = stream->WriteBytesMaybeAliased(1, _s, target); } @@ -15590,10 +15590,10 @@ ::size_t backupMapResponse::ByteSizeLong() const { (void) cached_has_bits; ::_pbi::Prefetch5LinesFrom7Lines(reinterpret_cast(this)); - // bytes compressed_zip_data = 1; - if (!this->_internal_compressed_zip_data().empty()) { + // bytes compressedZipData = 1; + if (!this->_internal_compressedzipdata().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_compressed_zip_data()); + this->_internal_compressedzipdata()); } // sint32 xpcfGrpcReturnValue = 2; @@ -15614,8 +15614,8 @@ void backupMapResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (!from._internal_compressed_zip_data().empty()) { - _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); } if (from._internal_xpcfgrpcreturnvalue() != 0) { _this->_impl_.xpcfgrpcreturnvalue_ = from._impl_.xpcfgrpcreturnvalue_; @@ -15636,7 +15636,7 @@ void backupMapResponse::InternalSwap(backupMapResponse* PROTOBUF_RESTRICT other) auto* arena = GetArena(); ABSL_DCHECK_EQ(arena, other->GetArena()); _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); swap(_impl_.xpcfgrpcreturnvalue_, other->_impl_.xpcfgrpcreturnvalue_); } @@ -15659,7 +15659,7 @@ inline PROTOBUF_NDEBUG_INLINE restoreMapRequest::Impl_::Impl_( const Impl_& from, const ::grpcIFrontEnd::restoreMapRequest& from_msg) : accesstoken_(arena, from.accesstoken_), mapuuid_(arena, from.mapuuid_), - compressed_zip_data_(arena, from.compressed_zip_data_), + compressedzipdata_(arena, from.compressedzipdata_), _cached_size_{0} {} restoreMapRequest::restoreMapRequest( @@ -15680,7 +15680,7 @@ inline PROTOBUF_NDEBUG_INLINE restoreMapRequest::Impl_::Impl_( ::google::protobuf::Arena* arena) : accesstoken_(arena), mapuuid_(arena), - compressed_zip_data_(arena), + compressedzipdata_(arena), _cached_size_{0} {} inline void restoreMapRequest::SharedCtor(::_pb::Arena* arena) { @@ -15696,7 +15696,7 @@ inline void restoreMapRequest::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); _impl_.accesstoken_.Destroy(); _impl_.mapuuid_.Destroy(); - _impl_.compressed_zip_data_.Destroy(); + _impl_.compressedzipdata_.Destroy(); _impl_.~Impl_(); } @@ -15739,9 +15739,9 @@ const ::_pbi::TcParseTable<2, 4, 0, 58, 2> restoreMapRequest::_table_ = { ::_pbi::TcParser::GetTable<::grpcIFrontEnd::restoreMapRequest>(), // to_prefetch #endif // PROTOBUF_PREFETCH_PARSE_TABLE }, {{ - // bytes compressed_zip_data = 4; + // bytes compressedZipData = 4; {::_pbi::TcParser::FastBS1, - {34, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressed_zip_data_)}}, + {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_)}}, @@ -15763,8 +15763,8 @@ const ::_pbi::TcParseTable<2, 4, 0, 58, 2> restoreMapRequest::_table_ = { // string mapUUID = 3; {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes compressed_zip_data = 4; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressed_zip_data_), 0, 0, + // bytes compressedZipData = 4; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressedzipdata_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, }}, // no aux_entries @@ -15785,7 +15785,7 @@ PROTOBUF_NOINLINE void restoreMapRequest::Clear() { _impl_.accesstoken_.ClearToEmpty(); _impl_.mapuuid_.ClearToEmpty(); - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); _impl_.grpcservercompressionformat_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -15820,9 +15820,9 @@ ::uint8_t* restoreMapRequest::_InternalSerialize( target = stream->WriteStringMaybeAliased(3, _s, target); } - // bytes compressed_zip_data = 4; - if (!this->_internal_compressed_zip_data().empty()) { - const std::string& _s = this->_internal_compressed_zip_data(); + // bytes compressedZipData = 4; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); target = stream->WriteBytesMaybeAliased(4, _s, target); } @@ -15856,10 +15856,10 @@ ::size_t restoreMapRequest::ByteSizeLong() const { this->_internal_mapuuid()); } - // bytes compressed_zip_data = 4; - if (!this->_internal_compressed_zip_data().empty()) { + // bytes compressedZipData = 4; + if (!this->_internal_compressedzipdata().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_compressed_zip_data()); + this->_internal_compressedzipdata()); } // int32 grpcServerCompressionFormat = 1; @@ -15886,8 +15886,8 @@ void restoreMapRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const if (!from._internal_mapuuid().empty()) { _this->_internal_set_mapuuid(from._internal_mapuuid()); } - if (!from._internal_compressed_zip_data().empty()) { - _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); } if (from._internal_grpcservercompressionformat() != 0) { _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; @@ -15910,7 +15910,7 @@ void restoreMapRequest::InternalSwap(restoreMapRequest* PROTOBUF_RESTRICT other) _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_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); } diff --git a/gen/src/grpcIMapsManagerService.pb.cc b/gen/src/grpcIMapsManagerService.pb.cc index f8f9d63..121c2e8 100644 --- a/gen/src/grpcIMapsManagerService.pb.cc +++ b/gen/src/grpcIMapsManagerService.pb.cc @@ -93,7 +93,7 @@ inline constexpr restoreMapRequest::Impl_::Impl_( : mapuuid_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), - compressed_zip_data_( + compressedzipdata_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), grpcservercompressionformat_{0}, @@ -624,7 +624,7 @@ PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT inline constexpr backupMapResponse::Impl_::Impl_( ::_pbi::ConstantInitialized) noexcept - : compressed_zip_data_( + : compressedzipdata_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), xpcfgrpcreturnvalue_{0}, @@ -649,7 +649,7 @@ inline constexpr backupMapRequest::Impl_::Impl_( : mapuuid_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), - compressed_zip_data_( + compressedzipdata_( &::google::protobuf::internal::fixed_address_empty_string, ::_pbi::ConstantInitialized()), grpcservercompressionformat_{0}, @@ -876,7 +876,7 @@ const ::uint32_t ~0u, // no sizeof(Split) PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.grpcservercompressionformat_), PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.mapuuid_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.compressed_zip_data_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapRequest, _impl_.compressedzipdata_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _internal_metadata_), ~0u, // no _extensions_ @@ -885,7 +885,7 @@ const ::uint32_t ~0u, // no _inlined_string_donated_ ~0u, // no _split_ ~0u, // no sizeof(Split) - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::backupMapResponse, _impl_.compressed_zip_data_), + 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_), @@ -897,7 +897,7 @@ const ::uint32_t ~0u, // no sizeof(Split) PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.grpcservercompressionformat_), PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.mapuuid_), - PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.compressed_zip_data_), + PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapRequest, _impl_.compressedzipdata_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::grpcIMapsManager::restoreMapResponse, _internal_metadata_), ~0u, // no _extensions_ @@ -1083,70 +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\"e\n\020backupMapRequest\022#\n\033grpcServerC" + "\006 \001(\021\"c\n\020backupMapRequest\022#\n\033grpcServerC" "ompressionFormat\030\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t\022" - "\033\n\023compressed_zip_data\030\003 \001(\014\"M\n\021backupMa" - "pResponse\022\033\n\023compressed_zip_data\030\001 \001(\014\022\033" - "\n\023xpcfGrpcReturnValue\030\002 \001(\021\"f\n\021restoreMa" - "pRequest\022#\n\033grpcServerCompressionFormat\030" - "\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t\022\033\n\023compressed_zip" - "_data\030\003 \001(\014\"1\n\022restoreMapResponse\022\033\n\023xpc" - "fGrpcReturnValue\030\001 \001(\021\"\202\001\n\033requestMapPro" - "cessingRequest\022#\n\033grpcServerCompressionF" - "ormat\030\001 \001(\005\022\017\n\007mapUUID\030\002 \001(\t\022\025\n\rresultMa" - "pUUID\030\003 \001(\t\022\026\n\016processingType\030\004 \001(\021\";\n\034r" - "equestMapProcessingResponse\022\033\n\023xpcfGrpcR" - "eturnValue\030\001 \001(\021\"\225\001\n\035getMapProcessingSta" - "tusRequest\022#\n\033grpcServerCompressionForma" - "t\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\010progre" - "ss\030\005 \001(\002\"w\n\036getMapProcessingStatusRespon" - "se\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\023xpcfGrpcReturnVa" - "lue\030\004 \001(\021\"\204\001\n\033getMapProcessingDataReques" - "t\022#\n\033grpcServerCompressionFormat\030\001 \001(\005\022\025" - "\n\rresultMapUUID\030\002 \001(\t\022\022\n\npointCloud\030\003 \001(" - "\014\022\025\n\rkeyframePoses\030\004 \001(\014\"f\n\034getMapProces" - "singDataResponse\022\022\n\npointCloud\030\001 \001(\014\022\025\n\r" - "keyframePoses\030\002 \001(\014\022\033\n\023xpcfGrpcReturnVal" - "ue\030\003 \001(\0212\312\013\n\027grpcIMapsManagerService\022V\n\t" - "createMap\022\".grpcIMapsManager.createMapRe" - "quest\032#.grpcIMapsManager.createMapRespon" - "se\"\000\022V\n\tdeleteMap\022\".grpcIMapsManager.del" - "eteMapRequest\032#.grpcIMapsManager.deleteM" - "apResponse\"\000\022Y\n\ngetAllMaps\022#.grpcIMapsMa" - "nager.getAllMapsRequest\032$.grpcIMapsManag" - "er.getAllMapsResponse\"\000\022q\n\022increaseMapCl" - "ients\022+.grpcIMapsManager.increaseMapClie" - "ntsRequest\032,.grpcIMapsManager.increaseMa" - "pClientsResponse\"\000\022q\n\022decreaseMapClients" - "\022+.grpcIMapsManager.decreaseMapClientsRe" - "quest\032,.grpcIMapsManager.decreaseMapClie" - "ntsResponse\"\000\022b\n\rgetMapRequest\022&.grpcIMa" - "psManager.getMapRequestRequest\032\'.grpcIMa" - "psManager.getMapRequestResponse\"\000\022b\n\rset" - "MapRequest\022&.grpcIMapsManager.setMapRequ" - "estRequest\032\'.grpcIMapsManager.setMapRequ" - "estResponse\"\000\022w\n\024getPointCloudRequest\022-." - "grpcIMapsManager.getPointCloudRequestReq" - "uest\032..grpcIMapsManager.getPointCloudReq" - "uestResponse\"\000\022Y\n\ngetMapInfo\022#.grpcIMaps" - "Manager.getMapInfoRequest\032$.grpcIMapsMan" - "ager.getMapInfoResponse\"\000\022V\n\tbackupMap\022\"" - ".grpcIMapsManager.backupMapRequest\032#.grp" - "cIMapsManager.backupMapResponse\"\000\022Y\n\nres" - "toreMap\022#.grpcIMapsManager.restoreMapReq" - "uest\032$.grpcIMapsManager.restoreMapRespon" - "se\"\000\022w\n\024requestMapProcessing\022-.grpcIMaps" - "Manager.requestMapProcessingRequest\032..gr" - "pcIMapsManager.requestMapProcessingRespo" - "nse\"\000\022}\n\026getMapProcessingStatus\022/.grpcIM" - "apsManager.getMapProcessingStatusRequest" - "\0320.grpcIMapsManager.getMapProcessingStat" - "usResponse\"\000\022w\n\024getMapProcessingData\022-.g" - "rpcIMapsManager.getMapProcessingDataRequ" - "est\032..grpcIMapsManager.getMapProcessingD" - "ataResponse\"\000b\006proto3" + "\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] = { @@ -1156,7 +1156,7 @@ static ::absl::once_flag descriptor_table_grpcIMapsManagerService_2eproto_once; PROTOBUF_CONSTINIT const ::_pbi::DescriptorTable descriptor_table_grpcIMapsManagerService_2eproto = { false, false, - 4221, + 4215, descriptor_table_protodef_grpcIMapsManagerService_2eproto, "grpcIMapsManagerService.proto", &descriptor_table_grpcIMapsManagerService_2eproto_once, @@ -5311,7 +5311,7 @@ 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_), - compressed_zip_data_(arena, from.compressed_zip_data_), + compressedzipdata_(arena, from.compressedzipdata_), _cached_size_{0} {} backupMapRequest::backupMapRequest( @@ -5331,7 +5331,7 @@ inline PROTOBUF_NDEBUG_INLINE backupMapRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena) : mapuuid_(arena), - compressed_zip_data_(arena), + compressedzipdata_(arena), _cached_size_{0} {} inline void backupMapRequest::SharedCtor(::_pb::Arena* arena) { @@ -5346,7 +5346,7 @@ backupMapRequest::~backupMapRequest() { inline void backupMapRequest::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); _impl_.mapuuid_.Destroy(); - _impl_.compressed_zip_data_.Destroy(); + _impl_.compressedzipdata_.Destroy(); _impl_.~Impl_(); } @@ -5396,9 +5396,9 @@ const ::_pbi::TcParseTable<2, 3, 0, 49, 2> backupMapRequest::_table_ = { // string mapUUID = 2; {::_pbi::TcParser::FastUS1, {18, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_)}}, - // bytes compressed_zip_data = 3; + // bytes compressedZipData = 3; {::_pbi::TcParser::FastBS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressed_zip_data_)}}, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressedzipdata_)}}, }}, {{ 65535, 65535 }}, {{ @@ -5408,8 +5408,8 @@ const ::_pbi::TcParseTable<2, 3, 0, 49, 2> backupMapRequest::_table_ = { // string mapUUID = 2; {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.mapuuid_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes compressed_zip_data = 3; - {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressed_zip_data_), 0, 0, + // bytes compressedZipData = 3; + {PROTOBUF_FIELD_OFFSET(backupMapRequest, _impl_.compressedzipdata_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, }}, // no aux_entries @@ -5428,7 +5428,7 @@ PROTOBUF_NOINLINE void backupMapRequest::Clear() { (void) cached_has_bits; _impl_.mapuuid_.ClearToEmpty(); - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); _impl_.grpcservercompressionformat_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -5455,9 +5455,9 @@ ::uint8_t* backupMapRequest::_InternalSerialize( target = stream->WriteStringMaybeAliased(2, _s, target); } - // bytes compressed_zip_data = 3; - if (!this->_internal_compressed_zip_data().empty()) { - const std::string& _s = this->_internal_compressed_zip_data(); + // bytes compressedZipData = 3; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); target = stream->WriteBytesMaybeAliased(3, _s, target); } @@ -5485,10 +5485,10 @@ ::size_t backupMapRequest::ByteSizeLong() const { this->_internal_mapuuid()); } - // bytes compressed_zip_data = 3; - if (!this->_internal_compressed_zip_data().empty()) { + // bytes compressedZipData = 3; + if (!this->_internal_compressedzipdata().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_compressed_zip_data()); + this->_internal_compressedzipdata()); } // int32 grpcServerCompressionFormat = 1; @@ -5512,8 +5512,8 @@ void backupMapRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const if (!from._internal_mapuuid().empty()) { _this->_internal_set_mapuuid(from._internal_mapuuid()); } - if (!from._internal_compressed_zip_data().empty()) { - _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); } if (from._internal_grpcservercompressionformat() != 0) { _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; @@ -5535,7 +5535,7 @@ void backupMapRequest::InternalSwap(backupMapRequest* PROTOBUF_RESTRICT other) { 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_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); } @@ -5556,7 +5556,7 @@ backupMapResponse::backupMapResponse(::google::protobuf::Arena* arena) inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena, const Impl_& from, const ::grpcIMapsManager::backupMapResponse& from_msg) - : compressed_zip_data_(arena, from.compressed_zip_data_), + : compressedzipdata_(arena, from.compressedzipdata_), _cached_size_{0} {} backupMapResponse::backupMapResponse( @@ -5575,7 +5575,7 @@ backupMapResponse::backupMapResponse( inline PROTOBUF_NDEBUG_INLINE backupMapResponse::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena) - : compressed_zip_data_(arena), + : compressedzipdata_(arena), _cached_size_{0} {} inline void backupMapResponse::SharedCtor(::_pb::Arena* arena) { @@ -5589,7 +5589,7 @@ backupMapResponse::~backupMapResponse() { } inline void backupMapResponse::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); - _impl_.compressed_zip_data_.Destroy(); + _impl_.compressedzipdata_.Destroy(); _impl_.~Impl_(); } @@ -5635,14 +5635,14 @@ const ::_pbi::TcParseTable<1, 2, 0, 0, 2> backupMapResponse::_table_ = { // sint32 xpcfGrpcReturnValue = 2; {::_pbi::TcParser::FastZ32S1, {16, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.xpcfgrpcreturnvalue_)}}, - // bytes compressed_zip_data = 1; + // bytes compressedZipData = 1; {::_pbi::TcParser::FastBS1, - {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressed_zip_data_)}}, + {10, 63, 0, PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressedzipdata_)}}, }}, {{ 65535, 65535 }}, {{ - // bytes compressed_zip_data = 1; - {PROTOBUF_FIELD_OFFSET(backupMapResponse, _impl_.compressed_zip_data_), 0, 0, + // 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, @@ -5660,7 +5660,7 @@ PROTOBUF_NOINLINE void backupMapResponse::Clear() { // Prevent compiler warnings about cached_has_bits being unused (void) cached_has_bits; - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); _impl_.xpcfgrpcreturnvalue_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -5672,9 +5672,9 @@ ::uint8_t* backupMapResponse::_InternalSerialize( ::uint32_t cached_has_bits = 0; (void)cached_has_bits; - // bytes compressed_zip_data = 1; - if (!this->_internal_compressed_zip_data().empty()) { - const std::string& _s = this->_internal_compressed_zip_data(); + // bytes compressedZipData = 1; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); target = stream->WriteBytesMaybeAliased(1, _s, target); } @@ -5703,10 +5703,10 @@ ::size_t backupMapResponse::ByteSizeLong() const { (void) cached_has_bits; ::_pbi::Prefetch5LinesFrom7Lines(reinterpret_cast(this)); - // bytes compressed_zip_data = 1; - if (!this->_internal_compressed_zip_data().empty()) { + // bytes compressedZipData = 1; + if (!this->_internal_compressedzipdata().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_compressed_zip_data()); + this->_internal_compressedzipdata()); } // sint32 xpcfGrpcReturnValue = 2; @@ -5727,8 +5727,8 @@ void backupMapResponse::MergeImpl(::google::protobuf::MessageLite& to_msg, const ::uint32_t cached_has_bits = 0; (void) cached_has_bits; - if (!from._internal_compressed_zip_data().empty()) { - _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); } if (from._internal_xpcfgrpcreturnvalue() != 0) { _this->_impl_.xpcfgrpcreturnvalue_ = from._impl_.xpcfgrpcreturnvalue_; @@ -5749,7 +5749,7 @@ void backupMapResponse::InternalSwap(backupMapResponse* PROTOBUF_RESTRICT other) auto* arena = GetArena(); ABSL_DCHECK_EQ(arena, other->GetArena()); _internal_metadata_.InternalSwap(&other->_internal_metadata_); - ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); swap(_impl_.xpcfgrpcreturnvalue_, other->_impl_.xpcfgrpcreturnvalue_); } @@ -5771,7 +5771,7 @@ 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_), - compressed_zip_data_(arena, from.compressed_zip_data_), + compressedzipdata_(arena, from.compressedzipdata_), _cached_size_{0} {} restoreMapRequest::restoreMapRequest( @@ -5791,7 +5791,7 @@ inline PROTOBUF_NDEBUG_INLINE restoreMapRequest::Impl_::Impl_( ::google::protobuf::internal::InternalVisibility visibility, ::google::protobuf::Arena* arena) : mapuuid_(arena), - compressed_zip_data_(arena), + compressedzipdata_(arena), _cached_size_{0} {} inline void restoreMapRequest::SharedCtor(::_pb::Arena* arena) { @@ -5806,7 +5806,7 @@ restoreMapRequest::~restoreMapRequest() { inline void restoreMapRequest::SharedDtor() { ABSL_DCHECK(GetArena() == nullptr); _impl_.mapuuid_.Destroy(); - _impl_.compressed_zip_data_.Destroy(); + _impl_.compressedzipdata_.Destroy(); _impl_.~Impl_(); } @@ -5856,9 +5856,9 @@ const ::_pbi::TcParseTable<2, 3, 0, 50, 2> restoreMapRequest::_table_ = { // string mapUUID = 2; {::_pbi::TcParser::FastUS1, {18, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_)}}, - // bytes compressed_zip_data = 3; + // bytes compressedZipData = 3; {::_pbi::TcParser::FastBS1, - {26, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressed_zip_data_)}}, + {26, 63, 0, PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressedzipdata_)}}, }}, {{ 65535, 65535 }}, {{ @@ -5868,8 +5868,8 @@ const ::_pbi::TcParseTable<2, 3, 0, 50, 2> restoreMapRequest::_table_ = { // string mapUUID = 2; {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.mapuuid_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kUtf8String | ::_fl::kRepAString)}, - // bytes compressed_zip_data = 3; - {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressed_zip_data_), 0, 0, + // bytes compressedZipData = 3; + {PROTOBUF_FIELD_OFFSET(restoreMapRequest, _impl_.compressedzipdata_), 0, 0, (0 | ::_fl::kFcSingular | ::_fl::kBytes | ::_fl::kRepAString)}, }}, // no aux_entries @@ -5888,7 +5888,7 @@ PROTOBUF_NOINLINE void restoreMapRequest::Clear() { (void) cached_has_bits; _impl_.mapuuid_.ClearToEmpty(); - _impl_.compressed_zip_data_.ClearToEmpty(); + _impl_.compressedzipdata_.ClearToEmpty(); _impl_.grpcservercompressionformat_ = 0; _internal_metadata_.Clear<::google::protobuf::UnknownFieldSet>(); } @@ -5915,9 +5915,9 @@ ::uint8_t* restoreMapRequest::_InternalSerialize( target = stream->WriteStringMaybeAliased(2, _s, target); } - // bytes compressed_zip_data = 3; - if (!this->_internal_compressed_zip_data().empty()) { - const std::string& _s = this->_internal_compressed_zip_data(); + // bytes compressedZipData = 3; + if (!this->_internal_compressedzipdata().empty()) { + const std::string& _s = this->_internal_compressedzipdata(); target = stream->WriteBytesMaybeAliased(3, _s, target); } @@ -5945,10 +5945,10 @@ ::size_t restoreMapRequest::ByteSizeLong() const { this->_internal_mapuuid()); } - // bytes compressed_zip_data = 3; - if (!this->_internal_compressed_zip_data().empty()) { + // bytes compressedZipData = 3; + if (!this->_internal_compressedzipdata().empty()) { total_size += 1 + ::google::protobuf::internal::WireFormatLite::BytesSize( - this->_internal_compressed_zip_data()); + this->_internal_compressedzipdata()); } // int32 grpcServerCompressionFormat = 1; @@ -5972,8 +5972,8 @@ void restoreMapRequest::MergeImpl(::google::protobuf::MessageLite& to_msg, const if (!from._internal_mapuuid().empty()) { _this->_internal_set_mapuuid(from._internal_mapuuid()); } - if (!from._internal_compressed_zip_data().empty()) { - _this->_internal_set_compressed_zip_data(from._internal_compressed_zip_data()); + if (!from._internal_compressedzipdata().empty()) { + _this->_internal_set_compressedzipdata(from._internal_compressedzipdata()); } if (from._internal_grpcservercompressionformat() != 0) { _this->_impl_.grpcservercompressionformat_ = from._impl_.grpcservercompressionformat_; @@ -5995,7 +5995,7 @@ void restoreMapRequest::InternalSwap(restoreMapRequest* PROTOBUF_RESTRICT other) 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_.compressed_zip_data_, &other->_impl_.compressed_zip_data_, arena); + ::_pbi::ArenaStringPtr::InternalSwap(&_impl_.compressedzipdata_, &other->_impl_.compressedzipdata_, arena); swap(_impl_.grpcservercompressionformat_, other->_impl_.grpcservercompressionformat_); }