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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
//! A library for retrying calls to the Internet Computer with configurable retry policies.
//!
//! This library provides utilities for retrying calls to the Internet Computer with different
//! retry policies. It supports both idempotent and non-idempotent calls, though you must
//! decide yourself which calls are idempotent and which are not.
//!
//! Note that retries are always executed immediately, there is no backoff strategy. This is
//! because the Internet Computer doesn't (yet?) support "pausing" a call context. Retries
//! with backoffs would have to be implemented as background tasks.
//!
//! # Features
//!
//! - Support for both idempotent and non-idempotent calls
//! - Configurable retry policies with deadlines
//! - Detailed error reporting
//!
//! # Examples
//!
//! ```rust
//! use ic_call_retry::{call_idempotent_method_with_retry, when_out_of_time_or_stopping, Deadline};
//! use ic_cdk::api::time;
//! use ic_cdk::call::Call;
//!
//! async fn example_retry_call() -> Result<(), String> {
//! // Set a deadline 5 seconds in the future
//! let deadline = time() + 5_000_000_000; // 5 seconds in nanoseconds
//! let deadline = Deadline::TimeOrStopping(deadline);
//!
//! // Create a call to some canister
//! let call = Call::bounded_wait(canister_id, "some_method")
//! .with_arg(&arg);
//!
//! // Retry the call until either:
//! // 1. The call succeeds
//! // 2. The deadline is reached
//! // 3. The caller canister enters the stopping state
//! // 4. A non-retryable error occurs
//! call_idempotent_method_with_retry(
//! call,
//! &mut when_out_of_time_or_stopping(&deadline),
//! )
//! .await
//! .map_err(|e| format!("Call failed: {:?}", e))?;
//!
//! Ok(())
//! }
//! ```
//!
//! # Note
//!
//! Retrying indefinitely is not recommended, as this can make your canister unupgradable.
//! For example, the following are safe to use:
//!
//! - A time-based deadline (`Deadline::TimeOrStopping`)
//! - A stopping-based deadline (`Deadline::Stopping`)
//! - A maximum number of retries (`max_retries`)
use Call;
use ;
use Call;
use ;
/// Represents a deadline for retrying calls.
///
/// The deadline can be based on:
/// - The stopping state of the caller canister
/// - A combination of time and stopping state
/// Represents the cause of a retry error.
/// An error type for retried calls.
///
/// This enum distinguishes between cases where we know the call failed
/// and cases where we cannot determine the final status of the call.
/// Makes and, in case of failure, retries an idempotent call until instructed otherwise
///
/// This function is suitable for calls that can be safely retried without side effects.
/// It will retry the call until either:
/// - The call succeeds
/// - The retry condition returns false
/// - A non-retryable error occurs
///
/// # Arguments
///
/// * `call` - The (idempotent) call to execute and retry if needed
/// * `stop_trying` - A function that determines when to stop (re)trying the call
///
/// # Returns
///
/// * `Ok(Response)` if the call succeeds
/// * `Err(RetryError)` if the call fails and cannot be retried
pub async
/// Makes and, in case of failure, retries a non-idempotent call until instructed otherwise
///
/// This function is suitable for calls that may have side effects and should be
/// retried with caution. It will retry the call until either:
/// - The call succeeds
/// - The retry condition returns false
/// - A non-retryable error occurs
/// - An error occurs where we cannot determine the final status of the call
///
/// # Arguments
///
/// * `call` - The call to retry
/// * `stop_trying` - A function that determines whether to stop (re)trying the call
///
/// # Returns
///
/// * `Ok(Response)` if the call succeeds
/// * `Err(RetryError)` if the call fails and cannot be retried
pub async
/// Returns a function that determines whether to stop retrying based on the deadline.
///
/// This function returns a closure that can be used directly with the retry functions.
///
/// # Arguments
///
/// * `deadline` - The deadline to check against
///
/// # Returns
///
/// A closure that returns `true` if we should continue retrying
/// Returns a function that retries up to the specified number of times.
///
/// This function returns a closure that can be used directly with the retry functions.
///
/// # Arguments
///
/// * `max_retries` - The maximum number of retries
///
/// # Returns
///
/// A closure that returns `true` if we should continue retrying