// This file is @generated by prost-build. #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct VoteRequest { /// term is the candidate's term #[prost(uint64, tag = "1")] pub term: u64, /// candidate_id is the candidate requesting the vote #[prost(uint64, tag = "2")] pub candidate_id: u64, /// last_log_index is index of candidate's last log entry #[prost(uint64, tag = "3")] pub last_log_index: u64, /// last_log_term is term of candidate's last log entry #[prost(uint64, tag = "4")] pub last_log_term: u64, } #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct VoteResponse { /// term is the current term for the voter #[prost(uint64, tag = "1")] pub term: u64, /// vote_granted is true if the candidate received the vote #[prost(bool, tag = "2")] pub vote_granted: bool, /// last_log_id is the voter's last log ID #[prost(uint64, tag = "3")] pub last_log_index: u64, #[prost(uint64, tag = "4")] pub last_log_term: u64, } #[derive(Clone, PartialEq, ::prost::Message)] pub struct AppendEntriesRequest { /// term is the leader's term #[prost(uint64, tag = "1")] pub term: u64, /// leader_id is the leader's ID #[prost(uint64, tag = "2")] pub leader_id: u64, /// prev_log_index is index of log entry immediately preceding new ones #[prost(uint64, tag = "3")] pub prev_log_index: u64, /// prev_log_term is term of prev_log_index entry #[prost(uint64, tag = "4")] pub prev_log_term: u64, /// entries are log entries to append #[prost(message, repeated, tag = "5")] pub entries: ::prost::alloc::vec::Vec, /// leader_commit is leader's commit index #[prost(uint64, tag = "6")] pub leader_commit: u64, } #[derive(Clone, PartialEq, ::prost::Message)] pub struct LogEntry { /// index is the log entry index #[prost(uint64, tag = "1")] pub index: u64, /// term is the term when entry was received #[prost(uint64, tag = "2")] pub term: u64, /// data is the command data #[prost(bytes = "vec", tag = "3")] pub data: ::prost::alloc::vec::Vec, } #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct AppendEntriesResponse { /// term is the current term #[prost(uint64, tag = "1")] pub term: u64, /// success is true if follower contained entry matching prevLogIndex #[prost(bool, tag = "2")] pub success: bool, /// conflict_index is the first conflicting index (for optimization) #[prost(uint64, tag = "3")] pub conflict_index: u64, /// conflict_term is the term of the conflicting entry #[prost(uint64, tag = "4")] pub conflict_term: u64, } #[derive(Clone, PartialEq, ::prost::Message)] pub struct InstallSnapshotRequest { /// term is the leader's term #[prost(uint64, tag = "1")] pub term: u64, /// leader_id is the leader's ID #[prost(uint64, tag = "2")] pub leader_id: u64, /// last_included_index is the snapshot replaces all entries up through and including this index #[prost(uint64, tag = "3")] pub last_included_index: u64, /// last_included_term is term of last_included_index #[prost(uint64, tag = "4")] pub last_included_term: u64, /// offset is byte offset where chunk is positioned in the snapshot file #[prost(uint64, tag = "5")] pub offset: u64, /// data is raw bytes of the snapshot chunk #[prost(bytes = "vec", tag = "6")] pub data: ::prost::alloc::vec::Vec, /// done is true if this is the last chunk #[prost(bool, tag = "7")] pub done: bool, } #[derive(Clone, Copy, PartialEq, ::prost::Message)] pub struct InstallSnapshotResponse { /// term is the current term #[prost(uint64, tag = "1")] pub term: u64, } /// Generated client implementations. pub mod raft_service_client { #![allow( unused_variables, dead_code, missing_docs, clippy::wildcard_imports, clippy::let_unit_value, )] use tonic::codegen::*; use tonic::codegen::http::Uri; /// Internal Raft RPC service for node-to-node communication #[derive(Debug, Clone)] pub struct RaftServiceClient { inner: tonic::client::Grpc, } impl RaftServiceClient { /// Attempt to create a new client by connecting to a given endpoint. pub async fn connect(dst: D) -> Result where D: TryInto, D::Error: Into, { let conn = tonic::transport::Endpoint::new(dst)?.connect().await?; Ok(Self::new(conn)) } } impl RaftServiceClient where T: tonic::client::GrpcService, T::Error: Into, T::ResponseBody: Body + std::marker::Send + 'static, ::Error: Into + 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( inner: T, interceptor: F, ) -> RaftServiceClient> where F: tonic::service::Interceptor, T::ResponseBody: Default, T: tonic::codegen::Service< http::Request, Response = http::Response< >::ResponseBody, >, >, , >>::Error: Into + std::marker::Send + std::marker::Sync, { RaftServiceClient::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 } /// Vote requests a vote from a peer pub async fn vote( &mut self, request: impl tonic::IntoRequest, ) -> std::result::Result, 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( "/chainfire.internal.RaftService/Vote", ); let mut req = request.into_request(); req.extensions_mut() .insert(GrpcMethod::new("chainfire.internal.RaftService", "Vote")); self.inner.unary(req, path, codec).await } /// AppendEntries sends log entries to followers pub async fn append_entries( &mut self, request: impl tonic::IntoRequest, ) -> std::result::Result< tonic::Response, 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( "/chainfire.internal.RaftService/AppendEntries", ); let mut req = request.into_request(); req.extensions_mut() .insert( GrpcMethod::new("chainfire.internal.RaftService", "AppendEntries"), ); self.inner.unary(req, path, codec).await } /// InstallSnapshot sends a snapshot to a follower pub async fn install_snapshot( &mut self, request: impl tonic::IntoStreamingRequest< Message = super::InstallSnapshotRequest, >, ) -> std::result::Result< tonic::Response, 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( "/chainfire.internal.RaftService/InstallSnapshot", ); let mut req = request.into_streaming_request(); req.extensions_mut() .insert( GrpcMethod::new("chainfire.internal.RaftService", "InstallSnapshot"), ); self.inner.client_streaming(req, path, codec).await } } } /// Generated server implementations. pub mod raft_service_server { #![allow( unused_variables, dead_code, missing_docs, clippy::wildcard_imports, clippy::let_unit_value, )] use tonic::codegen::*; /// Generated trait containing gRPC methods that should be implemented for use with RaftServiceServer. #[async_trait] pub trait RaftService: std::marker::Send + std::marker::Sync + 'static { /// Vote requests a vote from a peer async fn vote( &self, request: tonic::Request, ) -> std::result::Result, tonic::Status>; /// AppendEntries sends log entries to followers async fn append_entries( &self, request: tonic::Request, ) -> std::result::Result< tonic::Response, tonic::Status, >; /// InstallSnapshot sends a snapshot to a follower async fn install_snapshot( &self, request: tonic::Request>, ) -> std::result::Result< tonic::Response, tonic::Status, >; } /// Internal Raft RPC service for node-to-node communication #[derive(Debug)] pub struct RaftServiceServer { inner: Arc, accept_compression_encodings: EnabledCompressionEncodings, send_compression_encodings: EnabledCompressionEncodings, max_decoding_message_size: Option, max_encoding_message_size: Option, } impl RaftServiceServer { pub fn new(inner: T) -> Self { Self::from_arc(Arc::new(inner)) } pub fn from_arc(inner: Arc) -> Self { Self { inner, accept_compression_encodings: Default::default(), send_compression_encodings: Default::default(), max_decoding_message_size: None, max_encoding_message_size: None, } } pub fn with_interceptor( inner: T, interceptor: F, ) -> InterceptedService where F: tonic::service::Interceptor, { InterceptedService::new(Self::new(inner), interceptor) } /// Enable decompressing requests with the given encoding. #[must_use] pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self { self.accept_compression_encodings.enable(encoding); self } /// Compress responses with the given encoding, if the client supports it. #[must_use] pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self { self.send_compression_encodings.enable(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.max_decoding_message_size = Some(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.max_encoding_message_size = Some(limit); self } } impl tonic::codegen::Service> for RaftServiceServer where T: RaftService, B: Body + std::marker::Send + 'static, B::Error: Into + std::marker::Send + 'static, { type Response = http::Response; type Error = std::convert::Infallible; type Future = BoxFuture; fn poll_ready( &mut self, _cx: &mut Context<'_>, ) -> Poll> { Poll::Ready(Ok(())) } fn call(&mut self, req: http::Request) -> Self::Future { match req.uri().path() { "/chainfire.internal.RaftService/Vote" => { #[allow(non_camel_case_types)] struct VoteSvc(pub Arc); impl tonic::server::UnaryService for VoteSvc { type Response = super::VoteResponse; type Future = BoxFuture< tonic::Response, tonic::Status, >; fn call( &mut self, request: tonic::Request, ) -> Self::Future { let inner = Arc::clone(&self.0); let fut = async move { ::vote(&inner, request).await }; Box::pin(fut) } } let accept_compression_encodings = self.accept_compression_encodings; let send_compression_encodings = self.send_compression_encodings; let max_decoding_message_size = self.max_decoding_message_size; let max_encoding_message_size = self.max_encoding_message_size; let inner = self.inner.clone(); let fut = async move { let method = VoteSvc(inner); let codec = tonic::codec::ProstCodec::default(); let mut grpc = tonic::server::Grpc::new(codec) .apply_compression_config( accept_compression_encodings, send_compression_encodings, ) .apply_max_message_size_config( max_decoding_message_size, max_encoding_message_size, ); let res = grpc.unary(method, req).await; Ok(res) }; Box::pin(fut) } "/chainfire.internal.RaftService/AppendEntries" => { #[allow(non_camel_case_types)] struct AppendEntriesSvc(pub Arc); impl< T: RaftService, > tonic::server::UnaryService for AppendEntriesSvc { type Response = super::AppendEntriesResponse; type Future = BoxFuture< tonic::Response, tonic::Status, >; fn call( &mut self, request: tonic::Request, ) -> Self::Future { let inner = Arc::clone(&self.0); let fut = async move { ::append_entries(&inner, request).await }; Box::pin(fut) } } let accept_compression_encodings = self.accept_compression_encodings; let send_compression_encodings = self.send_compression_encodings; let max_decoding_message_size = self.max_decoding_message_size; let max_encoding_message_size = self.max_encoding_message_size; let inner = self.inner.clone(); let fut = async move { let method = AppendEntriesSvc(inner); let codec = tonic::codec::ProstCodec::default(); let mut grpc = tonic::server::Grpc::new(codec) .apply_compression_config( accept_compression_encodings, send_compression_encodings, ) .apply_max_message_size_config( max_decoding_message_size, max_encoding_message_size, ); let res = grpc.unary(method, req).await; Ok(res) }; Box::pin(fut) } "/chainfire.internal.RaftService/InstallSnapshot" => { #[allow(non_camel_case_types)] struct InstallSnapshotSvc(pub Arc); impl< T: RaftService, > tonic::server::ClientStreamingService< super::InstallSnapshotRequest, > for InstallSnapshotSvc { type Response = super::InstallSnapshotResponse; type Future = BoxFuture< tonic::Response, tonic::Status, >; fn call( &mut self, request: tonic::Request< tonic::Streaming, >, ) -> Self::Future { let inner = Arc::clone(&self.0); let fut = async move { ::install_snapshot(&inner, request).await }; Box::pin(fut) } } let accept_compression_encodings = self.accept_compression_encodings; let send_compression_encodings = self.send_compression_encodings; let max_decoding_message_size = self.max_decoding_message_size; let max_encoding_message_size = self.max_encoding_message_size; let inner = self.inner.clone(); let fut = async move { let method = InstallSnapshotSvc(inner); let codec = tonic::codec::ProstCodec::default(); let mut grpc = tonic::server::Grpc::new(codec) .apply_compression_config( accept_compression_encodings, send_compression_encodings, ) .apply_max_message_size_config( max_decoding_message_size, max_encoding_message_size, ); let res = grpc.client_streaming(method, req).await; Ok(res) }; Box::pin(fut) } _ => { Box::pin(async move { let mut response = http::Response::new(empty_body()); let headers = response.headers_mut(); headers .insert( tonic::Status::GRPC_STATUS, (tonic::Code::Unimplemented as i32).into(), ); headers .insert( http::header::CONTENT_TYPE, tonic::metadata::GRPC_CONTENT_TYPE, ); Ok(response) }) } } } } impl Clone for RaftServiceServer { fn clone(&self) -> Self { let inner = self.inner.clone(); Self { inner, accept_compression_encodings: self.accept_compression_encodings, send_compression_encodings: self.send_compression_encodings, max_decoding_message_size: self.max_decoding_message_size, max_encoding_message_size: self.max_encoding_message_size, } } } /// Generated gRPC service name pub const SERVICE_NAME: &str = "chainfire.internal.RaftService"; impl tonic::server::NamedService for RaftServiceServer { const NAME: &'static str = SERVICE_NAME; } }