#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ControlMessage {
#[prost(string, tag = "1")]
pub message_id: ::prost::alloc::string::String,
#[prost(
oneof = "control_message::Payload",
tags = "2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 20"
)]
pub payload: ::core::option::Option<control_message::Payload>,
}
pub mod control_message {
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Payload {
#[prost(message, tag = "2")]
ConfigCommand(super::ConfigurationCommand),
#[prost(message, tag = "3")]
Ack(super::Ack),
#[prost(message, tag = "4")]
RouteListRequest(super::RouteListRequest),
#[prost(message, tag = "5")]
RouteListResponse(super::RouteListResponse),
#[prost(message, tag = "6")]
ConnectionListRequest(super::ConnectionListRequest),
#[prost(message, tag = "7")]
ConnectionListResponse(super::ConnectionListResponse),
#[prost(message, tag = "8")]
RegisterNodeRequest(super::RegisterNodeRequest),
#[prost(message, tag = "9")]
RegisterNodeResponse(super::RegisterNodeResponse),
#[prost(message, tag = "10")]
DeregisterNodeRequest(super::DeregisterNodeRequest),
#[prost(message, tag = "11")]
DeregisterNodeResponse(super::DeregisterNodeResponse),
#[prost(message, tag = "20")]
ConfigCommandAck(super::ConfigurationCommandAck),
}
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct Connection {
#[prost(string, tag = "1")]
pub link_id: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub config_data: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct ConnectionAck {
#[prost(string, tag = "1")]
pub link_id: ::prost::alloc::string::String,
#[prost(bool, tag = "2")]
pub success: bool,
#[prost(string, tag = "3")]
pub error_msg: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct Route {
#[prost(message, optional, tag = "1")]
pub name: ::core::option::Option<::slim_datapath::api::proto::dataplane::v1::Name>,
#[prost(string, optional, tag = "2")]
pub link_id: ::core::option::Option<::prost::alloc::string::String>,
#[prost(enumeration = "ConnectionDirection", optional, tag = "3")]
pub direction: ::core::option::Option<i32>,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct RouteAck {
#[prost(message, optional, tag = "1")]
pub route: ::core::option::Option<Route>,
#[prost(bool, tag = "2")]
pub success: bool,
#[prost(string, tag = "3")]
pub error_msg: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ConfigurationCommand {
#[prost(message, repeated, tag = "1")]
pub connections_to_create: ::prost::alloc::vec::Vec<Connection>,
#[prost(message, repeated, tag = "2")]
pub routes_to_set: ::prost::alloc::vec::Vec<Route>,
#[prost(message, repeated, tag = "3")]
pub routes_to_delete: ::prost::alloc::vec::Vec<Route>,
#[prost(string, repeated, tag = "4")]
pub connections_to_delete: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(bool, tag = "5")]
pub reconcile: bool,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ConfigurationCommandAck {
#[prost(string, tag = "1")]
pub original_message_id: ::prost::alloc::string::String,
#[prost(message, repeated, tag = "2")]
pub connections_status: ::prost::alloc::vec::Vec<ConnectionAck>,
#[prost(message, repeated, tag = "3")]
pub routes_status: ::prost::alloc::vec::Vec<RouteAck>,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct Ack {
#[prost(string, tag = "1")]
pub original_message_id: ::prost::alloc::string::String,
#[prost(bool, tag = "2")]
pub success: bool,
#[prost(string, repeated, tag = "3")]
pub messages: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct RouteListRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RouteListResponse {
#[prost(string, tag = "1")]
pub original_message_id: ::prost::alloc::string::String,
#[prost(message, repeated, tag = "2")]
pub entries: ::prost::alloc::vec::Vec<RouteEntry>,
#[prost(bool, tag = "3")]
pub done: bool,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RouteEntry {
#[prost(message, optional, tag = "1")]
pub name: ::core::option::Option<::slim_datapath::api::proto::dataplane::v1::Name>,
#[prost(message, repeated, tag = "2")]
pub connections: ::prost::alloc::vec::Vec<ConnectionEntry>,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct ConnectionEntry {
#[prost(uint64, tag = "1")]
pub id: u64,
#[prost(enumeration = "ConnectionType", tag = "2")]
pub connection_type: i32,
#[prost(string, tag = "3")]
pub config_data: ::prost::alloc::string::String,
#[prost(string, optional, tag = "4")]
pub link_id: ::core::option::Option<::prost::alloc::string::String>,
#[prost(enumeration = "ConnectionDirection", tag = "5")]
pub direction: i32,
}
#[derive(Clone, Copy, PartialEq, Eq, Hash, ::prost::Message)]
pub struct ConnectionListRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ConnectionListResponse {
#[prost(string, tag = "1")]
pub original_message_id: ::prost::alloc::string::String,
#[prost(message, repeated, tag = "2")]
pub entries: ::prost::alloc::vec::Vec<ConnectionEntry>,
#[prost(bool, tag = "3")]
pub done: bool,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct Node {
#[prost(string, tag = "1")]
pub id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ConnectionDetails {
#[prost(string, tag = "1")]
pub endpoint: ::prost::alloc::string::String,
#[prost(string, optional, tag = "2")]
pub external_endpoint: ::core::option::Option<::prost::alloc::string::String>,
#[prost(message, optional, tag = "3")]
pub spire_mtls: ::core::option::Option<connection_details::SpireMtls>,
#[prost(message, optional, tag = "4")]
pub metadata: ::core::option::Option<::prost_types::Struct>,
}
pub mod connection_details {
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct SpireMtls {
#[prost(string, tag = "1")]
pub socket_path: ::prost::alloc::string::String,
#[prost(string, optional, tag = "2")]
pub trust_domain: ::core::option::Option<::prost::alloc::string::String>,
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RegisterNodeRequest {
#[prost(string, tag = "1")]
pub node_id: ::prost::alloc::string::String,
#[prost(message, repeated, tag = "2")]
pub connection_details: ::prost::alloc::vec::Vec<ConnectionDetails>,
#[prost(string, optional, tag = "3")]
pub group_name: ::core::option::Option<::prost::alloc::string::String>,
#[prost(message, repeated, tag = "4")]
pub connections: ::prost::alloc::vec::Vec<ConnectionEntry>,
#[prost(message, repeated, tag = "5")]
pub routes: ::prost::alloc::vec::Vec<Route>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RegisterNodeResponse {
#[prost(string, tag = "1")]
pub original_message_id: ::prost::alloc::string::String,
#[prost(bool, tag = "2")]
pub success: bool,
#[prost(message, repeated, tag = "3")]
pub connections: ::prost::alloc::vec::Vec<Connection>,
#[prost(message, repeated, tag = "4")]
pub routes: ::prost::alloc::vec::Vec<Route>,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct DeregisterNodeRequest {
#[prost(message, optional, tag = "1")]
pub node: ::core::option::Option<Node>,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct DeregisterNodeResponse {
#[prost(string, tag = "1")]
pub original_message_id: ::prost::alloc::string::String,
#[prost(bool, tag = "2")]
pub success: bool,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ConnectionType {
Local = 0,
Remote = 1,
}
impl ConnectionType {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Local => "CONNECTION_TYPE_LOCAL",
Self::Remote => "CONNECTION_TYPE_REMOTE",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"CONNECTION_TYPE_LOCAL" => Some(Self::Local),
"CONNECTION_TYPE_REMOTE" => Some(Self::Remote),
_ => None,
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ConnectionDirection {
Outgoing = 0,
Incoming = 1,
}
impl ConnectionDirection {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Outgoing => "CONNECTION_DIRECTION_OUTGOING",
Self::Incoming => "CONNECTION_DIRECTION_INCOMING",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"CONNECTION_DIRECTION_OUTGOING" => Some(Self::Outgoing),
"CONNECTION_DIRECTION_INCOMING" => Some(Self::Incoming),
_ => None,
}
}
}
pub mod controller_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 ControllerServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl ControllerServiceClient<tonic::transport::Channel> {
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> ControllerServiceClient<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,
) -> ControllerServiceClient<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,
{
ControllerServiceClient::new(InterceptedService::new(inner, interceptor))
}
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
#[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 open_control_channel(
&mut self,
request: impl tonic::IntoStreamingRequest<Message = super::ControlMessage>,
) -> std::result::Result<
tonic::Response<tonic::codec::Streaming<super::ControlMessage>>,
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(
"/controller.proto.v1.ControllerService/OpenControlChannel",
);
let mut req = request.into_streaming_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"controller.proto.v1.ControllerService",
"OpenControlChannel",
),
);
self.inner.streaming(req, path, codec).await
}
}
}
pub mod controller_service_server {
#![allow(
unused_variables,
dead_code,
missing_docs,
clippy::wildcard_imports,
clippy::let_unit_value,
)]
use tonic::codegen::*;
#[async_trait]
pub trait ControllerService: std::marker::Send + std::marker::Sync + 'static {
type OpenControlChannelStream: tonic::codegen::tokio_stream::Stream<
Item = std::result::Result<super::ControlMessage, tonic::Status>,
>
+ std::marker::Send
+ 'static;
async fn open_control_channel(
&self,
request: tonic::Request<tonic::Streaming<super::ControlMessage>>,
) -> std::result::Result<
tonic::Response<Self::OpenControlChannelStream>,
tonic::Status,
>;
}
#[derive(Debug)]
pub struct ControllerServiceServer<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> ControllerServiceServer<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)
}
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.accept_compression_encodings.enable(encoding);
self
}
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.send_compression_encodings.enable(encoding);
self
}
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.max_decoding_message_size = Some(limit);
self
}
#[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 ControllerServiceServer<T>
where
T: ControllerService,
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() {
"/controller.proto.v1.ControllerService/OpenControlChannel" => {
#[allow(non_camel_case_types)]
struct OpenControlChannelSvc<T: ControllerService>(pub Arc<T>);
impl<
T: ControllerService,
> tonic::server::StreamingService<super::ControlMessage>
for OpenControlChannelSvc<T> {
type Response = super::ControlMessage;
type ResponseStream = T::OpenControlChannelStream;
type Future = BoxFuture<
tonic::Response<Self::ResponseStream>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<
tonic::Streaming<super::ControlMessage>,
>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as ControllerService>::open_control_channel(
&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 = OpenControlChannelSvc(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.streaming(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 ControllerServiceServer<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,
}
}
}
pub const SERVICE_NAME: &str = "controller.proto.v1.ControllerService";
impl<T> tonic::server::NamedService for ControllerServiceServer<T> {
const NAME: &'static str = SERVICE_NAME;
}
}