1
1
pub mod errors;
2
2
pub mod rpc;
3
3
4
+ use bytes:: Bytes ;
5
+ use common:: misc:: ToBytes ;
4
6
use kvstore_api:: kvstore:: KVStore ;
5
7
use kvstore_inmemory:: hashmap_store:: HashMapKVStore ;
6
- use prost:: bytes:: Bytes ;
7
- use protocol:: btree:: { BtreeCallback , ClientPutDetails , PutCallback , SearchCallback , SearchResult } ;
8
- use protocol:: RpcFuture ;
9
8
use rpc:: db_rpc_server:: DbRpc ;
10
- use rpc:: { DbInfo , PutValue } ;
11
-
12
- use crate :: grpc:: rpc:: get:: value_msg;
13
- use common:: misc:: { FromVecBytes , ToBytes , ToVecBytes } ;
14
- use futures:: FutureExt ;
15
- use log:: * ;
16
9
use rpc:: get_callback_reply:: Reply as GetReply ;
17
10
use rpc:: put_callback_reply:: Reply as PutReply ;
18
- use server :: ope_btree :: BTreeErr :: ProtocolErr ;
19
- use server:: ope_btree:: { OpeBTree , OpeBTreeConf , ValRefGen } ;
20
- use server:: ope_db:: { DatasetChanged , DbError , OpeDatabase } ;
11
+ use rpc :: DbInfo ;
12
+ use server:: ope_btree:: OpeBTreeConf ;
13
+ use server:: ope_db:: { DatasetChanged , OpeDatabase } ;
21
14
use server:: Digest ;
22
- use std:: future:: Future ;
23
15
use std:: pin:: Pin ;
24
16
use std:: sync:: Arc ;
25
17
use tokio:: sync:: mpsc:: Sender ;
18
+ use tokio:: sync:: oneshot;
26
19
use tokio_stream:: wrappers:: ReceiverStream ;
27
20
use tokio_stream:: StreamExt ;
28
21
use tonic:: codegen:: Stream ;
72
65
Some ( client_reply) => {
73
66
if let Err ( status) = client_reply {
74
67
log:: warn!( "Client's reply error: {:?}" , status) ;
75
- result_in . send ( Err ( status) ) ;
68
+ reply ( result_in , Err ( status) ) ? ;
76
69
} else {
77
70
match client_reply. unwrap ( ) . reply {
78
71
Some ( GetReply :: DbInfo ( DbInfo { id, version } ) ) => {
@@ -103,14 +96,19 @@ where
103
96
}
104
97
} ;
105
98
106
- server_requests_in. send ( Ok ( search_result) ) . await ;
99
+ server_requests_in
100
+ . send ( Ok ( search_result) )
101
+ . await
102
+ . unwrap_or_else ( |_| {
103
+ log:: warn!( "Sending reply to client failed" )
104
+ } ) ;
107
105
} ) ;
108
106
109
107
log:: debug!( "Return server request stream" ) ;
110
108
let stream: Self :: GetStream =
111
109
Box :: pin ( ReceiverStream :: new ( server_requests_out) ) ;
112
110
113
- result_in . send ( Ok ( Response :: new ( stream) ) ) ;
111
+ reply ( result_in , Ok ( Response :: new ( stream) ) ) ? ;
114
112
}
115
113
116
114
//
@@ -122,7 +120,7 @@ where
122
120
unexpected
123
121
) ;
124
122
log:: warn!( "{}" , msg) ;
125
- result_in . send ( Err ( Status :: invalid_argument ( msg. to_string ( ) ) ) ) ;
123
+ reply ( result_in , Err ( Status :: invalid_argument ( msg. to_string ( ) ) ) ) ? ;
126
124
}
127
125
}
128
126
}
@@ -194,32 +192,35 @@ where
194
192
}
195
193
} ;
196
194
197
- server_requests_in. send ( Ok ( search_result) ) . await ;
195
+ server_requests_in
196
+ . send ( Ok ( search_result) )
197
+ . await
198
+ . unwrap_or_else ( |_| log:: warn!( "Sending reply to client failed" ) ) ;
198
199
} ) ;
199
200
200
201
log:: debug!( "Return server request stream" ) ;
201
202
let stream: Self :: PutStream =
202
203
Box :: pin ( ReceiverStream :: new ( server_requests_out) ) ;
203
204
204
- result_in . send ( Ok ( Response :: new ( stream) ) ) ;
205
+ reply ( result_in , Ok ( Response :: new ( stream) ) ) ? ;
205
206
}
206
207
Ok ( unexpected) => {
207
208
let status = errors:: unexpected_msg_status ( "PutValue" , unexpected) ;
208
- result_in . send ( Err ( status) ) ;
209
+ reply ( result_in , Err ( status) ) ? ;
209
210
}
210
211
Err ( status) => {
211
212
log:: warn!( "Client's reply error: {:?}" , status) ;
212
- result_in . send ( Err ( status) ) ;
213
+ reply ( result_in , Err ( status) ) ? ;
213
214
}
214
215
}
215
216
}
216
217
Ok ( unexpected) => {
217
218
let status = errors:: unexpected_msg_status ( "DbInfo" , unexpected) ;
218
- result_in . send ( Err ( status) ) ;
219
+ reply ( result_in , Err ( status) ) ? ;
219
220
}
220
221
Err ( status) => {
221
222
log:: warn!( "Client's reply error: {:?}" , status) ;
222
- result_in . send ( Err ( status) ) ;
223
+ reply ( result_in , Err ( status) ) ? ;
223
224
}
224
225
}
225
226
@@ -229,3 +230,12 @@ where
229
230
. map_err ( |_| Status :: internal ( "Result channel error" ) ) ?
230
231
}
231
232
}
233
+
234
+ fn reply < T > (
235
+ sender : oneshot:: Sender < Result < Response < T > , Status > > ,
236
+ payload : Result < Response < T > , Status > ,
237
+ ) -> Result < ( ) , Status > {
238
+ sender
239
+ . send ( payload)
240
+ . map_err ( |msg| errors:: send_err_to_status ( msg) )
241
+ }
0 commit comments