#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AuctionParameters {}
impl ::prost::Name for AuctionParameters {
const NAME: &'static str = "AuctionParameters";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GenesisContent {
#[prost(message, optional, tag = "1")]
pub params: ::core::option::Option<AuctionParameters>,
}
impl ::prost::Name for GenesisContent {
const NAME: &'static str = "GenesisContent";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AuctionStateByIdRequest {
#[prost(message, optional, tag = "1")]
pub id: ::core::option::Option<AuctionId>,
}
impl ::prost::Name for AuctionStateByIdRequest {
const NAME: &'static str = "AuctionStateByIdRequest";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AuctionStateByIdResponse {
#[prost(message, optional, tag = "2")]
pub auction: ::core::option::Option<::pbjson_types::Any>,
#[prost(message, repeated, tag = "3")]
pub positions: ::prost::alloc::vec::Vec<super::super::dex::v1::Position>,
}
impl ::prost::Name for AuctionStateByIdResponse {
const NAME: &'static str = "AuctionStateByIdResponse";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AuctionStateByIdsRequest {
#[prost(message, repeated, tag = "1")]
pub id: ::prost::alloc::vec::Vec<AuctionId>,
}
impl ::prost::Name for AuctionStateByIdsRequest {
const NAME: &'static str = "AuctionStateByIdsRequest";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AuctionStateByIdsResponse {
#[prost(message, optional, tag = "1")]
pub id: ::core::option::Option<AuctionId>,
#[prost(message, optional, tag = "2")]
pub auction: ::core::option::Option<DutchAuctionState>,
#[prost(message, repeated, tag = "3")]
pub positions: ::prost::alloc::vec::Vec<super::super::dex::v1::Position>,
}
impl ::prost::Name for AuctionStateByIdsResponse {
const NAME: &'static str = "AuctionStateByIdsResponse";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AuctionId {
#[prost(bytes = "vec", tag = "1")]
pub inner: ::prost::alloc::vec::Vec<u8>,
}
impl ::prost::Name for AuctionId {
const NAME: &'static str = "AuctionId";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AuctionNft {
#[prost(message, optional, tag = "1")]
pub id: ::core::option::Option<AuctionId>,
#[prost(uint64, tag = "2")]
pub seq: u64,
}
impl ::prost::Name for AuctionNft {
const NAME: &'static str = "AuctionNft";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DutchAuctionDescription {
#[prost(message, optional, tag = "1")]
pub input: ::core::option::Option<super::super::super::asset::v1::Value>,
#[prost(message, optional, tag = "2")]
pub output_id: ::core::option::Option<super::super::super::asset::v1::AssetId>,
#[prost(message, optional, tag = "3")]
pub max_output: ::core::option::Option<super::super::super::num::v1::Amount>,
#[prost(message, optional, tag = "4")]
pub min_output: ::core::option::Option<super::super::super::num::v1::Amount>,
#[prost(uint64, tag = "5")]
pub start_height: u64,
#[prost(uint64, tag = "6")]
pub end_height: u64,
#[prost(uint64, tag = "7")]
pub step_count: u64,
#[prost(bytes = "vec", tag = "8")]
pub nonce: ::prost::alloc::vec::Vec<u8>,
}
impl ::prost::Name for DutchAuctionDescription {
const NAME: &'static str = "DutchAuctionDescription";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DutchAuctionState {
#[prost(uint64, tag = "1")]
pub seq: u64,
#[prost(message, optional, tag = "2")]
pub current_position: ::core::option::Option<super::super::dex::v1::PositionId>,
#[prost(uint64, tag = "3")]
pub next_trigger: u64,
#[prost(message, optional, tag = "4")]
pub input_reserves: ::core::option::Option<super::super::super::num::v1::Amount>,
#[prost(message, optional, tag = "5")]
pub output_reserves: ::core::option::Option<super::super::super::num::v1::Amount>,
}
impl ::prost::Name for DutchAuctionState {
const NAME: &'static str = "DutchAuctionState";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DutchAuction {
#[prost(message, optional, tag = "1")]
pub description: ::core::option::Option<DutchAuctionDescription>,
#[prost(message, optional, tag = "2")]
pub state: ::core::option::Option<DutchAuctionState>,
}
impl ::prost::Name for DutchAuction {
const NAME: &'static str = "DutchAuction";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ActionDutchAuctionSchedule {
#[prost(message, optional, tag = "1")]
pub description: ::core::option::Option<DutchAuctionDescription>,
}
impl ::prost::Name for ActionDutchAuctionSchedule {
const NAME: &'static str = "ActionDutchAuctionSchedule";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ActionDutchAuctionEnd {
#[prost(message, optional, tag = "1")]
pub auction_id: ::core::option::Option<AuctionId>,
}
impl ::prost::Name for ActionDutchAuctionEnd {
const NAME: &'static str = "ActionDutchAuctionEnd";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ActionDutchAuctionWithdraw {
#[prost(message, optional, tag = "1")]
pub auction_id: ::core::option::Option<AuctionId>,
#[prost(uint64, tag = "2")]
pub seq: u64,
#[prost(message, optional, tag = "3")]
pub reserves_commitment: ::core::option::Option<
super::super::super::asset::v1::BalanceCommitment,
>,
}
impl ::prost::Name for ActionDutchAuctionWithdraw {
const NAME: &'static str = "ActionDutchAuctionWithdraw";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ActionDutchAuctionWithdrawPlan {
#[prost(message, optional, tag = "1")]
pub auction_id: ::core::option::Option<AuctionId>,
#[prost(uint64, tag = "2")]
pub seq: u64,
#[prost(message, optional, tag = "3")]
pub reserves_input: ::core::option::Option<super::super::super::asset::v1::Value>,
#[prost(message, optional, tag = "4")]
pub reserves_output: ::core::option::Option<super::super::super::asset::v1::Value>,
}
impl ::prost::Name for ActionDutchAuctionWithdrawPlan {
const NAME: &'static str = "ActionDutchAuctionWithdrawPlan";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ActionDutchAuctionScheduleView {
#[prost(message, optional, tag = "1")]
pub action: ::core::option::Option<ActionDutchAuctionSchedule>,
#[prost(message, optional, tag = "2")]
pub auction_id: ::core::option::Option<AuctionId>,
#[prost(message, optional, tag = "3")]
pub input_metadata: ::core::option::Option<super::super::super::asset::v1::Metadata>,
#[prost(message, optional, tag = "4")]
pub output_metadata: ::core::option::Option<
super::super::super::asset::v1::Metadata,
>,
}
impl ::prost::Name for ActionDutchAuctionScheduleView {
const NAME: &'static str = "ActionDutchAuctionScheduleView";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ActionDutchAuctionWithdrawView {
#[prost(message, optional, tag = "1")]
pub action: ::core::option::Option<ActionDutchAuctionWithdraw>,
#[prost(message, repeated, tag = "2")]
pub reserves: ::prost::alloc::vec::Vec<super::super::super::asset::v1::ValueView>,
}
impl ::prost::Name for ActionDutchAuctionWithdrawView {
const NAME: &'static str = "ActionDutchAuctionWithdrawView";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventDutchAuctionScheduled {
#[prost(message, optional, tag = "1")]
pub auction_id: ::core::option::Option<AuctionId>,
#[prost(message, optional, tag = "2")]
pub description: ::core::option::Option<DutchAuctionDescription>,
}
impl ::prost::Name for EventDutchAuctionScheduled {
const NAME: &'static str = "EventDutchAuctionScheduled";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventDutchAuctionUpdated {
#[prost(message, optional, tag = "1")]
pub auction_id: ::core::option::Option<AuctionId>,
#[prost(message, optional, tag = "2")]
pub state: ::core::option::Option<DutchAuctionState>,
}
impl ::prost::Name for EventDutchAuctionUpdated {
const NAME: &'static str = "EventDutchAuctionUpdated";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventDutchAuctionEnded {
#[prost(message, optional, tag = "1")]
pub auction_id: ::core::option::Option<AuctionId>,
#[prost(message, optional, tag = "2")]
pub state: ::core::option::Option<DutchAuctionState>,
#[prost(enumeration = "event_dutch_auction_ended::Reason", tag = "3")]
pub reason: i32,
}
pub mod event_dutch_auction_ended {
#[derive(
Clone,
Copy,
Debug,
PartialEq,
Eq,
Hash,
PartialOrd,
Ord,
::prost::Enumeration
)]
#[repr(i32)]
pub enum Reason {
Unspecified = 0,
Expired = 1,
Filled = 2,
ClosedByOwner = 3,
}
impl Reason {
pub fn as_str_name(&self) -> &'static str {
match self {
Reason::Unspecified => "REASON_UNSPECIFIED",
Reason::Expired => "REASON_EXPIRED",
Reason::Filled => "REASON_FILLED",
Reason::ClosedByOwner => "REASON_CLOSED_BY_OWNER",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"REASON_UNSPECIFIED" => Some(Self::Unspecified),
"REASON_EXPIRED" => Some(Self::Expired),
"REASON_FILLED" => Some(Self::Filled),
"REASON_CLOSED_BY_OWNER" => Some(Self::ClosedByOwner),
_ => None,
}
}
}
}
impl ::prost::Name for EventDutchAuctionEnded {
const NAME: &'static str = "EventDutchAuctionEnded";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventDutchAuctionWithdrawn {
#[prost(message, optional, tag = "1")]
pub auction_id: ::core::option::Option<AuctionId>,
#[prost(message, optional, tag = "2")]
pub state: ::core::option::Option<DutchAuctionState>,
}
impl ::prost::Name for EventDutchAuctionWithdrawn {
const NAME: &'static str = "EventDutchAuctionWithdrawn";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventValueCircuitBreakerCredit {
#[prost(message, optional, tag = "1")]
pub asset_id: ::core::option::Option<super::super::super::asset::v1::AssetId>,
#[prost(message, optional, tag = "2")]
pub previous_balance: ::core::option::Option<super::super::super::num::v1::Amount>,
#[prost(message, optional, tag = "3")]
pub new_balance: ::core::option::Option<super::super::super::num::v1::Amount>,
}
impl ::prost::Name for EventValueCircuitBreakerCredit {
const NAME: &'static str = "EventValueCircuitBreakerCredit";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventValueCircuitBreakerDebit {
#[prost(message, optional, tag = "1")]
pub asset_id: ::core::option::Option<super::super::super::asset::v1::AssetId>,
#[prost(message, optional, tag = "2")]
pub previous_balance: ::core::option::Option<super::super::super::num::v1::Amount>,
#[prost(message, optional, tag = "3")]
pub new_balance: ::core::option::Option<super::super::super::num::v1::Amount>,
}
impl ::prost::Name for EventValueCircuitBreakerDebit {
const NAME: &'static str = "EventValueCircuitBreakerDebit";
const PACKAGE: &'static str = "penumbra.core.component.auction.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("penumbra.core.component.auction.v1.{}", Self::NAME)
}
}
#[cfg(feature = "rpc")]
pub mod query_service_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
#[derive(Debug, Clone)]
pub struct QueryServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl QueryServiceClient<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> QueryServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + 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,
) -> QueryServiceClient<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> + Send + Sync,
{
QueryServiceClient::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 auction_state_by_id(
&mut self,
request: impl tonic::IntoRequest<super::AuctionStateByIdRequest>,
) -> std::result::Result<
tonic::Response<super::AuctionStateByIdResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/penumbra.core.component.auction.v1.QueryService/AuctionStateById",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"penumbra.core.component.auction.v1.QueryService",
"AuctionStateById",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn auction_state_by_ids(
&mut self,
request: impl tonic::IntoRequest<super::AuctionStateByIdsRequest>,
) -> std::result::Result<
tonic::Response<tonic::codec::Streaming<super::AuctionStateByIdsResponse>>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/penumbra.core.component.auction.v1.QueryService/AuctionStateByIds",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"penumbra.core.component.auction.v1.QueryService",
"AuctionStateByIds",
),
);
self.inner.server_streaming(req, path, codec).await
}
}
}
#[cfg(feature = "rpc")]
pub mod query_service_server {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
#[async_trait]
pub trait QueryService: Send + Sync + 'static {
async fn auction_state_by_id(
&self,
request: tonic::Request<super::AuctionStateByIdRequest>,
) -> std::result::Result<
tonic::Response<super::AuctionStateByIdResponse>,
tonic::Status,
>;
type AuctionStateByIdsStream: tonic::codegen::tokio_stream::Stream<
Item = std::result::Result<
super::AuctionStateByIdsResponse,
tonic::Status,
>,
>
+ Send
+ 'static;
async fn auction_state_by_ids(
&self,
request: tonic::Request<super::AuctionStateByIdsRequest>,
) -> std::result::Result<
tonic::Response<Self::AuctionStateByIdsStream>,
tonic::Status,
>;
}
#[derive(Debug)]
pub struct QueryServiceServer<T: QueryService> {
inner: _Inner<T>,
accept_compression_encodings: EnabledCompressionEncodings,
send_compression_encodings: EnabledCompressionEncodings,
max_decoding_message_size: Option<usize>,
max_encoding_message_size: Option<usize>,
}
struct _Inner<T>(Arc<T>);
impl<T: QueryService> QueryServiceServer<T> {
pub fn new(inner: T) -> Self {
Self::from_arc(Arc::new(inner))
}
pub fn from_arc(inner: Arc<T>) -> Self {
let inner = _Inner(inner);
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 QueryServiceServer<T>
where
T: QueryService,
B: Body + Send + 'static,
B::Error: Into<StdError> + 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 {
let inner = self.inner.clone();
match req.uri().path() {
"/penumbra.core.component.auction.v1.QueryService/AuctionStateById" => {
#[allow(non_camel_case_types)]
struct AuctionStateByIdSvc<T: QueryService>(pub Arc<T>);
impl<
T: QueryService,
> tonic::server::UnaryService<super::AuctionStateByIdRequest>
for AuctionStateByIdSvc<T> {
type Response = super::AuctionStateByIdResponse;
type Future = BoxFuture<
tonic::Response<Self::Response>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::AuctionStateByIdRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as QueryService>::auction_state_by_id(&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 inner = inner.0;
let method = AuctionStateByIdSvc(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)
}
"/penumbra.core.component.auction.v1.QueryService/AuctionStateByIds" => {
#[allow(non_camel_case_types)]
struct AuctionStateByIdsSvc<T: QueryService>(pub Arc<T>);
impl<
T: QueryService,
> tonic::server::ServerStreamingService<
super::AuctionStateByIdsRequest,
> for AuctionStateByIdsSvc<T> {
type Response = super::AuctionStateByIdsResponse;
type ResponseStream = T::AuctionStateByIdsStream;
type Future = BoxFuture<
tonic::Response<Self::ResponseStream>,
tonic::Status,
>;
fn call(
&mut self,
request: tonic::Request<super::AuctionStateByIdsRequest>,
) -> Self::Future {
let inner = Arc::clone(&self.0);
let fut = async move {
<T as QueryService>::auction_state_by_ids(&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 inner = inner.0;
let method = AuctionStateByIdsSvc(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.server_streaming(method, req).await;
Ok(res)
};
Box::pin(fut)
}
_ => {
Box::pin(async move {
Ok(
http::Response::builder()
.status(200)
.header("grpc-status", "12")
.header("content-type", "application/grpc")
.body(empty_body())
.unwrap(),
)
})
}
}
}
}
impl<T: QueryService> Clone for QueryServiceServer<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,
}
}
}
impl<T: QueryService> Clone for _Inner<T> {
fn clone(&self) -> Self {
Self(Arc::clone(&self.0))
}
}
impl<T: std::fmt::Debug> std::fmt::Debug for _Inner<T> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self.0)
}
}
impl<T: QueryService> tonic::server::NamedService for QueryServiceServer<T> {
const NAME: &'static str = "penumbra.core.component.auction.v1.QueryService";
}
}