Files
komp_ac/common/src/proto/komp_ac.document_data.rs
2026-07-08 22:41:43 +02:00

762 lines
32 KiB
Rust

// This file is @generated by prost-build.
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct SourceRecord {
#[prost(string, tag = "1")]
pub profile_name: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub table_name: ::prost::alloc::string::String,
#[prost(int64, tag = "3")]
pub table_def_id: i64,
#[prost(int64, tag = "4")]
pub record_id: i64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SaveDocumentRequest {
#[prost(int64, optional, tag = "1")]
pub schema_id: ::core::option::Option<i64>,
#[prost(message, repeated, tag = "2")]
pub source_records: ::prost::alloc::vec::Vec<SourceRecord>,
#[prost(string, optional, tag = "3")]
pub template_name: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "4")]
pub template_kind: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "5")]
pub template_path: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, tag = "6")]
pub data_json: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct SaveDocumentResponse {
#[prost(int64, tag = "1")]
pub document_id: i64,
#[prost(int64, tag = "2")]
pub snapshot_id: i64,
#[prost(int32, tag = "3")]
pub version_number: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateDocumentRequest {
#[prost(int64, tag = "1")]
pub document_id: i64,
#[prost(int64, optional, tag = "2")]
pub schema_id: ::core::option::Option<i64>,
#[prost(message, repeated, tag = "3")]
pub source_records: ::prost::alloc::vec::Vec<SourceRecord>,
#[prost(string, optional, tag = "4")]
pub template_name: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "5")]
pub template_kind: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "6")]
pub template_path: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, tag = "7")]
pub data_json: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct UpdateDocumentResponse {
#[prost(int64, tag = "1")]
pub document_id: i64,
#[prost(int64, tag = "2")]
pub snapshot_id: i64,
#[prost(int32, tag = "3")]
pub version_number: i32,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct GetDocumentsRequest {
#[prost(int64, optional, tag = "1")]
pub schema_id: ::core::option::Option<i64>,
#[prost(uint32, tag = "2")]
pub limit: u32,
#[prost(string, optional, tag = "3")]
pub template_name: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Document {
#[prost(int64, tag = "1")]
pub snapshot_id: i64,
#[prost(int64, tag = "2")]
pub document_id: i64,
#[prost(int64, optional, tag = "3")]
pub schema_id: ::core::option::Option<i64>,
#[prost(message, repeated, tag = "4")]
pub source_records: ::prost::alloc::vec::Vec<SourceRecord>,
#[prost(string, optional, tag = "5")]
pub template_name: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "6")]
pub template_kind: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "7")]
pub template_path: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, tag = "8")]
pub data_json: ::prost::alloc::string::String,
#[prost(string, tag = "9")]
pub change_kind: ::prost::alloc::string::String,
#[prost(int32, tag = "10")]
pub version_number: i32,
#[prost(string, tag = "11")]
pub created_at: ::prost::alloc::string::String,
#[prost(string, tag = "12")]
pub updated_at: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetDocumentsResponse {
#[prost(message, repeated, tag = "1")]
pub documents: ::prost::alloc::vec::Vec<Document>,
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct GetDocumentRequest {
#[prost(int64, tag = "1")]
pub document_id: i64,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetDocumentResponse {
#[prost(message, optional, tag = "1")]
pub document: ::core::option::Option<Document>,
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct GetDocumentVersionRequest {
#[prost(int64, tag = "1")]
pub document_id: i64,
#[prost(int32, tag = "2")]
pub version_number: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetDocumentVersionResponse {
#[prost(message, optional, tag = "1")]
pub document: ::core::option::Option<Document>,
}
/// Generated client implementations.
pub mod document_data_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 DocumentDataServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl DocumentDataServiceClient<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> DocumentDataServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::Body>,
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,
) -> DocumentDataServiceClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::Body>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::Body>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::Body>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
DocumentDataServiceClient::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 save_document(
&mut self,
request: impl tonic::IntoRequest<super::SaveDocumentRequest>,
) -> std::result::Result<
tonic::Response<super::SaveDocumentResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic_prost::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/komp_ac.document_data.DocumentDataService/SaveDocument",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"komp_ac.document_data.DocumentDataService",
"SaveDocument",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn update_document(
&mut self,
request: impl tonic::IntoRequest<super::UpdateDocumentRequest>,
) -> std::result::Result<
tonic::Response<super::UpdateDocumentResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic_prost::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/komp_ac.document_data.DocumentDataService/UpdateDocument",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"komp_ac.document_data.DocumentDataService",
"UpdateDocument",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn get_documents(
&mut self,
request: impl tonic::IntoRequest<super::GetDocumentsRequest>,
) -> std::result::Result<
tonic::Response<super::GetDocumentsResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic_prost::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/komp_ac.document_data.DocumentDataService/GetDocuments",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"komp_ac.document_data.DocumentDataService",
"GetDocuments",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn get_document(
&mut self,
request: impl tonic::IntoRequest<super::GetDocumentRequest>,
) -> std::result::Result<
tonic::Response<super::GetDocumentResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic_prost::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/komp_ac.document_data.DocumentDataService/GetDocument",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"komp_ac.document_data.DocumentDataService",
"GetDocument",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn get_document_version(
&mut self,
request: impl tonic::IntoRequest<super::GetDocumentVersionRequest>,
) -> std::result::Result<
tonic::Response<super::GetDocumentVersionResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic_prost::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/komp_ac.document_data.DocumentDataService/GetDocumentVersion",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"komp_ac.document_data.DocumentDataService",
"GetDocumentVersion",
),
);
self.inner.unary(req, path, codec).await
}
}
}
/// Generated server implementations.
pub mod document_data_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 DocumentDataServiceServer.
#[async_trait]
pub trait DocumentDataService: std::marker::Send + std::marker::Sync + 'static {
async fn save_document(
&self,
request: tonic::Request<super::SaveDocumentRequest>,
) -> std::result::Result<
tonic::Response<super::SaveDocumentResponse>,
tonic::Status,
>;
async fn update_document(
&self,
request: tonic::Request<super::UpdateDocumentRequest>,
) -> std::result::Result<
tonic::Response<super::UpdateDocumentResponse>,
tonic::Status,
>;
async fn get_documents(
&self,
request: tonic::Request<super::GetDocumentsRequest>,
) -> std::result::Result<
tonic::Response<super::GetDocumentsResponse>,
tonic::Status,
>;
async fn get_document(
&self,
request: tonic::Request<super::GetDocumentRequest>,
) -> std::result::Result<
tonic::Response<super::GetDocumentResponse>,
tonic::Status,
>;
async fn get_document_version(
&self,
request: tonic::Request<super::GetDocumentVersionRequest>,
) -> std::result::Result<
tonic::Response<super::GetDocumentVersionResponse>,
tonic::Status,
>;
}
#[derive(Debug)]
pub struct DocumentDataServiceServer<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> DocumentDataServiceServer<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 DocumentDataServiceServer<T>
where
T: DocumentDataService,
B: Body + std::marker::Send + 'static,
B::Error: Into<StdError> + std::marker::Send + 'static,
{
type Response = http::Response<tonic::body::Body>;
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() {
"/komp_ac.document_data.DocumentDataService/SaveDocument" => {
#[allow(non_camel_case_types)]
struct SaveDocumentSvc<T: DocumentDataService>(pub Arc<T>);
impl<
T: DocumentDataService,
> tonic::server::UnaryService<super::SaveDocumentRequest>
for SaveDocumentSvc<T> {
type Response = super::SaveDocumentResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::SaveDocumentRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as DocumentDataService>::save_document(&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 = SaveDocumentSvc(inner);
let codec = tonic_prost::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)
}
"/komp_ac.document_data.DocumentDataService/UpdateDocument" => {
#[allow(non_camel_case_types)]
struct UpdateDocumentSvc<T: DocumentDataService>(pub Arc<T>);
impl<
T: DocumentDataService,
> tonic::server::UnaryService<super::UpdateDocumentRequest>
for UpdateDocumentSvc<T> {
type Response = super::UpdateDocumentResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::UpdateDocumentRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as DocumentDataService>::update_document(&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 = UpdateDocumentSvc(inner);
let codec = tonic_prost::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)
}
"/komp_ac.document_data.DocumentDataService/GetDocuments" => {
#[allow(non_camel_case_types)]
struct GetDocumentsSvc<T: DocumentDataService>(pub Arc<T>);
impl<
T: DocumentDataService,
> tonic::server::UnaryService<super::GetDocumentsRequest>
for GetDocumentsSvc<T> {
type Response = super::GetDocumentsResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::GetDocumentsRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as DocumentDataService>::get_documents(&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 = GetDocumentsSvc(inner);
let codec = tonic_prost::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)
}
"/komp_ac.document_data.DocumentDataService/GetDocument" => {
#[allow(non_camel_case_types)]
struct GetDocumentSvc<T: DocumentDataService>(pub Arc<T>);
impl<
T: DocumentDataService,
> tonic::server::UnaryService<super::GetDocumentRequest>
for GetDocumentSvc<T> {
type Response = super::GetDocumentResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::GetDocumentRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as DocumentDataService>::get_document(&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 = GetDocumentSvc(inner);
let codec = tonic_prost::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)
}
"/komp_ac.document_data.DocumentDataService/GetDocumentVersion" => {
#[allow(non_camel_case_types)]
struct GetDocumentVersionSvc<T: DocumentDataService>(pub Arc<T>);
impl<
T: DocumentDataService,
> tonic::server::UnaryService<super::GetDocumentVersionRequest>
for GetDocumentVersionSvc<T> {
type Response = super::GetDocumentVersionResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::GetDocumentVersionRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as DocumentDataService>::get_document_version(
&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 = GetDocumentVersionSvc(inner);
let codec = tonic_prost::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)
}
_ => {
Box::pin(async move {
let mut response = http::Response::new(
tonic::body::Body::default(),
);
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 DocumentDataServiceServer<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 = "komp_ac.document_data.DocumentDataService";
impl<T> tonic::server::NamedService for DocumentDataServiceServer<T> {
const NAME: &'static str = SERVICE_NAME;
}
}