Skip to content

Commit

Permalink
Refactor: proto with build test
Browse files Browse the repository at this point in the history
  • Loading branch information
CherishCai committed May 13, 2023
1 parent 615f5de commit 6eeb3d2
Show file tree
Hide file tree
Showing 6 changed files with 280 additions and 20 deletions.
13 changes: 6 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,12 @@ rand = "0.8.5"

# now only for feature="auth-by-http"
reqwest = { version = "0.11", default-features = false, features = [], optional = true }
async-trait = {version = "0.1", optional = true}
# for feature="async"
async-trait = { version = "0.1", optional = true }

async-stream = "0.3.5"
tonic = "0.9.1"
tower = {version = "0.4.13", features = ["filter", "log"]}
http = "0.2.9"
tonic = "0.9"
tower = { version = "0.4.13", features = ["filter", "log"] }
pin-project = "1.0.12"
futures-util = "0.3.28"
want = "0.3.0"
Expand All @@ -77,9 +78,7 @@ home = "0.5.4"

[dev-dependencies]
tracing-subscriber = { version = "0.3", features = ["default"] }

[build-dependencies]
tonic-build = "0.9.1"
tonic-build = "0.9"

[[example]]
name = "simple_app"
Expand Down
8 changes: 0 additions & 8 deletions build.rs

This file was deleted.

241 changes: 241 additions & 0 deletions src/_.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,241 @@
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Metadata {
#[prost(string, tag = "3")]
pub r#type: ::prost::alloc::string::String,
#[prost(string, tag = "8")]
pub client_ip: ::prost::alloc::string::String,
#[prost(map = "string, string", tag = "7")]
pub headers: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Payload {
#[prost(message, optional, tag = "2")]
pub metadata: ::core::option::Option<Metadata>,
#[prost(message, optional, tag = "3")]
pub body: ::core::option::Option<::prost_types::Any>,
}
/// Generated client implementations.
pub mod request_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 RequestClient<T> {
inner: tonic::client::Grpc<T>,
}
impl RequestClient<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> RequestClient<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,
) -> RequestClient<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,
{
RequestClient::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
}
/// Sends a commonRequest
pub async fn request(
&mut self,
request: impl tonic::IntoRequest<super::Payload>,
) -> std::result::Result<tonic::Response<super::Payload>, 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("/Request/request");
let mut req = request.into_request();
req.extensions_mut().insert(GrpcMethod::new("Request", "request"));
self.inner.unary(req, path, codec).await
}
}
}
/// Generated client implementations.
pub mod bi_request_stream_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 BiRequestStreamClient<T> {
inner: tonic::client::Grpc<T>,
}
impl BiRequestStreamClient<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> BiRequestStreamClient<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,
) -> BiRequestStreamClient<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,
{
BiRequestStreamClient::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
}
/// Sends a biStreamRequest
pub async fn request_bi_stream(
&mut self,
request: impl tonic::IntoStreamingRequest<Message = super::Payload>,
) -> std::result::Result<
tonic::Response<tonic::codec::Streaming<super::Payload>>,
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(
"/BiRequestStream/requestBiStream",
);
let mut req = request.into_streaming_request();
req.extensions_mut()
.insert(GrpcMethod::new("BiRequestStream", "requestBiStream"));
self.inner.streaming(req, path, codec).await
}
}
}
3 changes: 1 addition & 2 deletions src/common/remote/grpc/tonic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ use std::{
};

use futures::{Future, StreamExt};
use http::Uri;
use tonic::transport::{Channel, Endpoint};
use tonic::transport::{Uri, Channel, Endpoint};
use tower::{layer::util::Stack, Service};
use tracing::{debug, debug_span, error, Instrument};

Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ mod config;
mod naming;

#[allow(dead_code)]
#[path = ""]
mod nacos_proto {
pub mod v2 {
tonic::include_proto!("_");
}
#[path = "_.rs"]
pub mod v2;
}

#[cfg(test)]
Expand Down
29 changes: 29 additions & 0 deletions tests/proto_build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

// This test helps to keep files generated and used by tonic_build(proto) update to date.
// If the generated files has been changed, please commit they.
#[test]
#[ignore]
fn build_proto() {
tonic_build::configure()
.build_client(true)
.build_server(false)
.build_transport(true)
.out_dir("src")
.compile(&["./proto/nacos_grpc_service.proto"], &["./proto"])
.unwrap();
}

0 comments on commit 6eeb3d2

Please sign in to comment.