photoncloud-monorepo/chainfire/crates/chainfire-api/src/generated/chainfire.internal.rs
centra 8f94aee1fa Fix R8: Convert submodule gitlinks to regular directories
- Remove gitlinks (160000 mode) for chainfire, flaredb, iam
- Add workspace contents as regular tracked files
- Update flake.nix to use simple paths instead of builtins.fetchGit

This resolves the nix build failure where submodule directories
appeared empty in the nix store.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-09 16:51:20 +09:00

566 lines
23 KiB
Rust

// 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<LogEntry>,
/// 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<u8>,
}
#[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<u8>,
/// 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<T> {
inner: tonic::client::Grpc<T>,
}
impl RaftServiceClient<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> RaftServiceClient<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,
) -> RaftServiceClient<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,
{
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<super::VoteRequest>,
) -> std::result::Result<tonic::Response<super::VoteResponse>, 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<super::AppendEntriesRequest>,
) -> std::result::Result<
tonic::Response<super::AppendEntriesResponse>,
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<super::InstallSnapshotResponse>,
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<super::VoteRequest>,
) -> std::result::Result<tonic::Response<super::VoteResponse>, tonic::Status>;
/// AppendEntries sends log entries to followers
async fn append_entries(
&self,
request: tonic::Request<super::AppendEntriesRequest>,
) -> std::result::Result<
tonic::Response<super::AppendEntriesResponse>,
tonic::Status,
>;
/// InstallSnapshot sends a snapshot to a follower
async fn install_snapshot(
&self,
request: tonic::Request<tonic::Streaming<super::InstallSnapshotRequest>>,
) -> std::result::Result<
tonic::Response<super::InstallSnapshotResponse>,
tonic::Status,
>;
}
/// Internal Raft RPC service for node-to-node communication
#[derive(Debug)]
pub struct RaftServiceServer<T> {
inner: Arc<T>,
accept_compression_encodings: EnabledCompressionEncodings,
send_compression_encodings: EnabledCompressionEncodings,
max_decoding_message_size: Option<usize>,
max_encoding_message_size: Option<usize>,
}
impl<T> RaftServiceServer<T> {
pub fn new(inner: T) -> Self {
Self::from_arc(Arc::new(inner))
}
pub fn from_arc(inner: Arc<T>) -> 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<F>(
inner: T,
interceptor: F,
) -> InterceptedService<Self, F>
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<T, B> tonic::codegen::Service<http::Request<B>> for RaftServiceServer<T>
where
T: RaftService,
B: Body + std::marker::Send + 'static,
B::Error: Into<StdError> + std::marker::Send + 'static,
{
type Response = http::Response<tonic::body::BoxBody>;
type Error = std::convert::Infallible;
type Future = BoxFuture<Self::Response, Self::Error>;
fn poll_ready(
&mut self,
_cx: &mut Context<'_>,
) -> Poll<std::result::Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
fn call(&mut self, req: http::Request<B>) -> Self::Future {
match req.uri().path() {
"/chainfire.internal.RaftService/Vote" => {
#[allow(non_camel_case_types)]
struct VoteSvc<T: RaftService>(pub Arc<T>);
impl<T: RaftService> tonic::server::UnaryService<super::VoteRequest>
for VoteSvc<T> {
type Response = super::VoteResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::VoteRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as RaftService>::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<T: RaftService>(pub Arc<T>);
impl<
T: RaftService,
> tonic::server::UnaryService<super::AppendEntriesRequest>
for AppendEntriesSvc<T> {
type Response = super::AppendEntriesResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::AppendEntriesRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as RaftService>::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<T: RaftService>(pub Arc<T>);
impl<
T: RaftService,
> tonic::server::ClientStreamingService<
super::InstallSnapshotRequest,
> for InstallSnapshotSvc<T> {
type Response = super::InstallSnapshotResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<
tonic::Streaming<super::InstallSnapshotRequest>,
>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as RaftService>::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<T> Clone for RaftServiceServer<T> {
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<T> tonic::server::NamedService for RaftServiceServer<T> {
const NAME: &'static str = SERVICE_NAME;
}
}