1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
use google_cloud_gax::call_option::{Backoff, BackoffRetrySettings, BackoffRetryer};
use google_cloud_gax::invoke::invoke_reuse;
use google_cloud_gax::util::create_request;
use google_cloud_googleapis::longrunning::operations_client::OperationsClient as InternalOperationsClient;
use google_cloud_googleapis::longrunning::{
CancelOperationRequest, DeleteOperationRequest, GetOperationRequest, Operation,
WaitOperationRequest,
};
use google_cloud_googleapis::{Code, Status};
use google_cloud_grpc::conn::{Channel, Error};
use std::time::Duration;
use tonic::Response;
fn default_setting() -> BackoffRetrySettings {
let mut backoff = Backoff::default();
backoff.initial = Duration::from_millis(500);
backoff.max = Duration::from_millis(10000);
backoff.multiplier = 2.0;
BackoffRetrySettings {
retryer: BackoffRetryer {
backoff,
codes: vec![Code::Unavailable, Code::Unknown],
},
}
}
#[derive(Clone)]
pub struct OperationsClient {
inner: InternalOperationsClient<Channel>,
}
impl OperationsClient {
pub async fn new(channel: Channel) -> Result<Self, Error> {
Ok(OperationsClient {
inner: InternalOperationsClient::new(channel),
})
}
fn get_call_setting(call_setting: Option<BackoffRetrySettings>) -> BackoffRetrySettings {
match call_setting {
Some(s) => s,
None => default_setting(),
}
}
pub async fn get_operation(
&mut self,
req: GetOperationRequest,
opt: Option<BackoffRetrySettings>,
) -> Result<Response<Operation>, Status> {
let mut setting = Self::get_call_setting(opt);
let name = &req.name;
return invoke_reuse(
|client| async {
let request = create_request(format!("name={}", name), req.clone());
client
.get_operation(request)
.await
.map_err(|e| (e.into(), client))
},
&mut self.inner,
&mut setting,
)
.await;
}
pub async fn delete_operation(
&mut self,
req: DeleteOperationRequest,
opt: Option<BackoffRetrySettings>,
) -> Result<Response<()>, Status> {
let mut setting = Self::get_call_setting(opt);
let name = &req.name;
return invoke_reuse(
|client| async {
let request = create_request(format!("name={}", name), req.clone());
client
.delete_operation(request)
.await
.map_err(|e| (e.into(), client))
},
&mut self.inner,
&mut setting,
)
.await;
}
pub async fn cancel_operation(
&mut self,
req: CancelOperationRequest,
opt: Option<BackoffRetrySettings>,
) -> Result<Response<()>, Status> {
let mut setting = Self::get_call_setting(opt);
let name = &req.name;
return invoke_reuse(
|client| async {
let request = create_request(format!("name={}", name), req.clone());
client
.cancel_operation(request)
.await
.map_err(|e| (e.into(), client))
},
&mut self.inner,
&mut setting,
)
.await;
}
pub async fn wait_operation(
&mut self,
req: WaitOperationRequest,
opt: Option<BackoffRetrySettings>,
) -> Result<Response<Operation>, Status> {
let mut setting = Self::get_call_setting(opt);
return invoke_reuse(
|client| async {
let request = create_request("".to_string(), req.clone());
client
.wait_operation(request)
.await
.map_err(|e| (e.into(), client))
},
&mut self.inner,
&mut setting,
)
.await;
}
}