mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-23 09:08:32 +02:00
Grap gRPC status codes
This commit is contained in:
@@ -11,7 +11,7 @@ use tokio_stream::wrappers::ReceiverStream;
|
|||||||
use tokio_stream::StreamExt;
|
use tokio_stream::StreamExt;
|
||||||
use tonic::body::BoxBody;
|
use tonic::body::BoxBody;
|
||||||
use tonic::transport::Uri;
|
use tonic::transport::Uri;
|
||||||
use tonic::{IntoRequest, IntoStreamingRequest, Streaming};
|
use tonic::{IntoRequest, IntoStreamingRequest, Response, Status, Streaming};
|
||||||
|
|
||||||
use crate::codec::DynamicCodec;
|
use crate::codec::DynamicCodec;
|
||||||
use crate::proto::{fill_pool, fill_pool_from_files, get_transport, method_desc_to_path};
|
use crate::proto::{fill_pool, fill_pool_from_files, get_transport, method_desc_to_path};
|
||||||
@@ -75,7 +75,7 @@ impl GrpcConnection {
|
|||||||
service: &str,
|
service: &str,
|
||||||
method: &str,
|
method: &str,
|
||||||
stream: ReceiverStream<String>,
|
stream: ReceiverStream<String>,
|
||||||
) -> Result<Streaming<DynamicMessage>, String> {
|
) -> Result<Result<Response<Streaming<DynamicMessage>>, Status>, String> {
|
||||||
let method = &self.method(&service, &method)?;
|
let method = &self.method(&service, &method)?;
|
||||||
let mut client = tonic::client::Grpc::with_origin(self.conn.clone(), self.uri.clone());
|
let mut client = tonic::client::Grpc::with_origin(self.conn.clone(), self.uri.clone());
|
||||||
|
|
||||||
@@ -92,12 +92,8 @@ impl GrpcConnection {
|
|||||||
.into_streaming_request();
|
.into_streaming_request();
|
||||||
let path = method_desc_to_path(method);
|
let path = method_desc_to_path(method);
|
||||||
let codec = DynamicCodec::new(method.clone());
|
let codec = DynamicCodec::new(method.clone());
|
||||||
client.ready().await.unwrap();
|
client.ready().await.map_err(|e| e.to_string())?;
|
||||||
Ok(client
|
Ok(client.streaming(req, path, codec).await)
|
||||||
.streaming(req, path, codec)
|
|
||||||
.await
|
|
||||||
.map_err(|s| s.to_string())?
|
|
||||||
.into_inner())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn client_streaming(
|
pub async fn client_streaming(
|
||||||
@@ -138,7 +134,7 @@ impl GrpcConnection {
|
|||||||
service: &str,
|
service: &str,
|
||||||
method: &str,
|
method: &str,
|
||||||
message: &str,
|
message: &str,
|
||||||
) -> Result<Streaming<DynamicMessage>, String> {
|
) -> Result<Result<Response<Streaming<DynamicMessage>>, Status>, String> {
|
||||||
let method = &self.method(&service, &method)?;
|
let method = &self.method(&service, &method)?;
|
||||||
let input_message = method.input();
|
let input_message = method.input();
|
||||||
|
|
||||||
@@ -152,12 +148,8 @@ impl GrpcConnection {
|
|||||||
let req = req_message.into_request();
|
let req = req_message.into_request();
|
||||||
let path = method_desc_to_path(method);
|
let path = method_desc_to_path(method);
|
||||||
let codec = DynamicCodec::new(method.clone());
|
let codec = DynamicCodec::new(method.clone());
|
||||||
client.ready().await.unwrap();
|
client.ready().await.map_err(|e| e.to_string())?;
|
||||||
Ok(client
|
Ok(client.server_streaming(req, path, codec).await)
|
||||||
.server_streaming(req, path, codec)
|
|
||||||
.await
|
|
||||||
.map_err(|s| s.to_string())?
|
|
||||||
.into_inner())
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -230,7 +222,7 @@ impl GrpcHandle {
|
|||||||
service: &str,
|
service: &str,
|
||||||
method: &str,
|
method: &str,
|
||||||
message: &str,
|
message: &str,
|
||||||
) -> Result<Streaming<DynamicMessage>, String> {
|
) -> Result<Result<Response<Streaming<DynamicMessage>>, Status>, String> {
|
||||||
self.connect(id, uri, proto_files)
|
self.connect(id, uri, proto_files)
|
||||||
.await?
|
.await?
|
||||||
.server_streaming(service, method, message)
|
.server_streaming(service, method, message)
|
||||||
@@ -260,7 +252,7 @@ impl GrpcHandle {
|
|||||||
service: &str,
|
service: &str,
|
||||||
method: &str,
|
method: &str,
|
||||||
stream: ReceiverStream<String>,
|
stream: ReceiverStream<String>,
|
||||||
) -> Result<Streaming<DynamicMessage>, String> {
|
) -> Result<Result<Response<Streaming<DynamicMessage>>, Status>, String> {
|
||||||
self.connect(id, uri, proto_files)
|
self.connect(id, uri, proto_files)
|
||||||
.await?
|
.await?
|
||||||
.streaming(service, method, stream)
|
.streaming(service, method, stream)
|
||||||
|
|||||||
@@ -312,6 +312,7 @@ async fn cmd_grpc_go(
|
|||||||
}
|
}
|
||||||
Some(Err(e)) => {
|
Some(Err(e)) => {
|
||||||
// TODO: Make into error
|
// TODO: Make into error
|
||||||
|
println!("Error connecting: {:?}", e);
|
||||||
upsert_grpc_message(
|
upsert_grpc_message(
|
||||||
&w,
|
&w,
|
||||||
&GrpcMessage {
|
&GrpcMessage {
|
||||||
@@ -328,9 +329,26 @@ async fn cmd_grpc_go(
|
|||||||
}
|
}
|
||||||
|
|
||||||
let mut stream = match maybe_stream {
|
let mut stream = match maybe_stream {
|
||||||
Some(Ok(s)) => s,
|
Some(Ok(Ok(s))) => s.into_inner(),
|
||||||
|
Some(Ok(Err(e))) => {
|
||||||
|
// TODO: Make into error, and use status
|
||||||
|
println!("Connection status error: {:?}", e);
|
||||||
|
upsert_grpc_message(
|
||||||
|
&w,
|
||||||
|
&GrpcMessage {
|
||||||
|
message: e.message().to_string(),
|
||||||
|
is_server: true,
|
||||||
|
is_info: true,
|
||||||
|
..base_msg.clone()
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.unwrap();
|
||||||
|
return;
|
||||||
|
}
|
||||||
Some(Err(e)) => {
|
Some(Err(e)) => {
|
||||||
// TODO: Make into error
|
// TODO: Make into error
|
||||||
|
println!("Generic error: {:?}", e);
|
||||||
upsert_grpc_message(
|
upsert_grpc_message(
|
||||||
&w,
|
&w,
|
||||||
&GrpcMessage {
|
&GrpcMessage {
|
||||||
@@ -370,7 +388,8 @@ async fn cmd_grpc_go(
|
|||||||
upsert_grpc_message(
|
upsert_grpc_message(
|
||||||
&w,
|
&w,
|
||||||
&GrpcMessage {
|
&GrpcMessage {
|
||||||
message: "Connection completed".to_string(),
|
message: "Connection closed".to_string(),
|
||||||
|
is_info: true,
|
||||||
..base_msg.clone()
|
..base_msg.clone()
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
@@ -378,12 +397,13 @@ async fn cmd_grpc_go(
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
Err(e) => {
|
Err(status) => {
|
||||||
// TODO: Make into error
|
// TODO: Make into error
|
||||||
|
println!("Error status: {:?}", status);
|
||||||
upsert_grpc_message(
|
upsert_grpc_message(
|
||||||
&w,
|
&w,
|
||||||
&GrpcMessage {
|
&GrpcMessage {
|
||||||
message: e.to_string(),
|
message: status.message().to_string(),
|
||||||
is_server: true,
|
is_server: true,
|
||||||
is_info: true,
|
is_info: true,
|
||||||
..base_msg.clone()
|
..base_msg.clone()
|
||||||
|
|||||||
Reference in New Issue
Block a user