goosefs-sdk 0.1.1

Goosefs Rust gRPC Client - Direct gRPC client for Goosefs Master/Worker
Documentation
// This file is @generated by prost-build.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct GetServiceVersionPRequest {
    #[prost(enumeration = "ServiceType", optional, tag = "1")]
    pub service_type: ::core::option::Option<i32>,
    #[prost(bool, optional, tag = "2")]
    pub allowed_on_standby_masters: ::core::option::Option<bool>,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct GetServiceVersionPResponse {
    #[prost(int64, optional, tag = "1")]
    pub version: ::core::option::Option<i64>,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ServiceType {
    UnknownService = 0,
    FileSystemMasterClientService = 1,
    FileSystemMasterWorkerService = 2,
    FileSystemMasterJobService = 3,
    WorkerManagerMasterClientService = 4,
    WorkerManagerMasterWorkerService = 5,
    MetaMasterConfigService = 6,
    MetaMasterClientService = 7,
    MetaMasterMasterService = 8,
    MetricsMasterClientService = 9,
    JobMasterClientService = 10,
    JobMasterWorkerService = 11,
    FileSystemWorkerWorkerService = 12,
    JournalMasterClientService = 13,
    TableMasterClientService = 14,
    MetaMasterBackupMessagingService = 15,
    RaftJournalService = 16,
    ConfigManagerService = 17,
}
impl ServiceType {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::UnknownService => "UNKNOWN_SERVICE",
            Self::FileSystemMasterClientService => "FILE_SYSTEM_MASTER_CLIENT_SERVICE",
            Self::FileSystemMasterWorkerService => "FILE_SYSTEM_MASTER_WORKER_SERVICE",
            Self::FileSystemMasterJobService => "FILE_SYSTEM_MASTER_JOB_SERVICE",
            Self::WorkerManagerMasterClientService => {
                "WORKER_MANAGER_MASTER_CLIENT_SERVICE"
            }
            Self::WorkerManagerMasterWorkerService => {
                "WORKER_MANAGER_MASTER_WORKER_SERVICE"
            }
            Self::MetaMasterConfigService => "META_MASTER_CONFIG_SERVICE",
            Self::MetaMasterClientService => "META_MASTER_CLIENT_SERVICE",
            Self::MetaMasterMasterService => "META_MASTER_MASTER_SERVICE",
            Self::MetricsMasterClientService => "METRICS_MASTER_CLIENT_SERVICE",
            Self::JobMasterClientService => "JOB_MASTER_CLIENT_SERVICE",
            Self::JobMasterWorkerService => "JOB_MASTER_WORKER_SERVICE",
            Self::FileSystemWorkerWorkerService => "FILE_SYSTEM_WORKER_WORKER_SERVICE",
            Self::JournalMasterClientService => "JOURNAL_MASTER_CLIENT_SERVICE",
            Self::TableMasterClientService => "TABLE_MASTER_CLIENT_SERVICE",
            Self::MetaMasterBackupMessagingService => {
                "META_MASTER_BACKUP_MESSAGING_SERVICE"
            }
            Self::RaftJournalService => "RAFT_JOURNAL_SERVICE",
            Self::ConfigManagerService => "CONFIG_MANAGER_SERVICE",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "UNKNOWN_SERVICE" => Some(Self::UnknownService),
            "FILE_SYSTEM_MASTER_CLIENT_SERVICE" => {
                Some(Self::FileSystemMasterClientService)
            }
            "FILE_SYSTEM_MASTER_WORKER_SERVICE" => {
                Some(Self::FileSystemMasterWorkerService)
            }
            "FILE_SYSTEM_MASTER_JOB_SERVICE" => Some(Self::FileSystemMasterJobService),
            "WORKER_MANAGER_MASTER_CLIENT_SERVICE" => {
                Some(Self::WorkerManagerMasterClientService)
            }
            "WORKER_MANAGER_MASTER_WORKER_SERVICE" => {
                Some(Self::WorkerManagerMasterWorkerService)
            }
            "META_MASTER_CONFIG_SERVICE" => Some(Self::MetaMasterConfigService),
            "META_MASTER_CLIENT_SERVICE" => Some(Self::MetaMasterClientService),
            "META_MASTER_MASTER_SERVICE" => Some(Self::MetaMasterMasterService),
            "METRICS_MASTER_CLIENT_SERVICE" => Some(Self::MetricsMasterClientService),
            "JOB_MASTER_CLIENT_SERVICE" => Some(Self::JobMasterClientService),
            "JOB_MASTER_WORKER_SERVICE" => Some(Self::JobMasterWorkerService),
            "FILE_SYSTEM_WORKER_WORKER_SERVICE" => {
                Some(Self::FileSystemWorkerWorkerService)
            }
            "JOURNAL_MASTER_CLIENT_SERVICE" => Some(Self::JournalMasterClientService),
            "TABLE_MASTER_CLIENT_SERVICE" => Some(Self::TableMasterClientService),
            "META_MASTER_BACKUP_MESSAGING_SERVICE" => {
                Some(Self::MetaMasterBackupMessagingService)
            }
            "RAFT_JOURNAL_SERVICE" => Some(Self::RaftJournalService),
            "CONFIG_MANAGER_SERVICE" => Some(Self::ConfigManagerService),
            _ => None,
        }
    }
}
/// Generated client implementations.
pub mod service_version_client_service_client {
    #![allow(
        unused_variables,
        dead_code,
        missing_docs,
        clippy::wildcard_imports,
        clippy::let_unit_value,
    )]
    use tonic::codegen::*;
    use tonic::codegen::http::Uri;
    #[derive(Debug, Clone)]
    pub struct ServiceVersionClientServiceClient<T> {
        inner: tonic::client::Grpc<T>,
    }
    impl ServiceVersionClientServiceClient<tonic::transport::Channel> {
        /// Attempt to create a new client by connecting to a given endpoint.
        pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
        where
            D: TryInto<tonic::transport::Endpoint>,
            D::Error: Into<StdError>,
        {
            let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
            Ok(Self::new(conn))
        }
    }
    impl<T> ServiceVersionClientServiceClient<T>
    where
        T: tonic::client::GrpcService<tonic::body::BoxBody>,
        T::Error: Into<StdError>,
        T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
        <T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
    {
        pub fn new(inner: T) -> Self {
            let inner = tonic::client::Grpc::new(inner);
            Self { inner }
        }
        pub fn with_origin(inner: T, origin: Uri) -> Self {
            let inner = tonic::client::Grpc::with_origin(inner, origin);
            Self { inner }
        }
        pub fn with_interceptor<F>(
            inner: T,
            interceptor: F,
        ) -> ServiceVersionClientServiceClient<InterceptedService<T, F>>
        where
            F: tonic::service::Interceptor,
            T::ResponseBody: Default,
            T: tonic::codegen::Service<
                http::Request<tonic::body::BoxBody>,
                Response = http::Response<
                    <T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
                >,
            >,
            <T as tonic::codegen::Service<
                http::Request<tonic::body::BoxBody>,
            >>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
        {
            ServiceVersionClientServiceClient::new(
                InterceptedService::new(inner, interceptor),
            )
        }
        /// Compress requests with the given encoding.
        ///
        /// This requires the server to support it otherwise it might respond with an
        /// error.
        #[must_use]
        pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
            self.inner = self.inner.send_compressed(encoding);
            self
        }
        /// Enable decompressing responses.
        #[must_use]
        pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
            self.inner = self.inner.accept_compressed(encoding);
            self
        }
        /// Limits the maximum size of a decoded message.
        ///
        /// Default: `4MB`
        #[must_use]
        pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
            self.inner = self.inner.max_decoding_message_size(limit);
            self
        }
        /// Limits the maximum size of an encoded message.
        ///
        /// Default: `usize::MAX`
        #[must_use]
        pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
            self.inner = self.inner.max_encoding_message_size(limit);
            self
        }
        pub async fn get_service_version(
            &mut self,
            request: impl tonic::IntoRequest<super::GetServiceVersionPRequest>,
        ) -> std::result::Result<
            tonic::Response<super::GetServiceVersionPResponse>,
            tonic::Status,
        > {
            self.inner
                .ready()
                .await
                .map_err(|e| {
                    tonic::Status::unknown(
                        format!("Service was not ready: {}", e.into()),
                    )
                })?;
            let codec = tonic::codec::ProstCodec::default();
            let path = http::uri::PathAndQuery::from_static(
                "/com.qcloud.cos.goosefs.grpc.version.ServiceVersionClientService/getServiceVersion",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "com.qcloud.cos.goosefs.grpc.version.ServiceVersionClientService",
                        "getServiceVersion",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
    }
}