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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
//! Scheduler client implementation
use reqwest::Client as HttpClient;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::time::Duration;
use tokio::time::{sleep, timeout};
use crate::crypto::{encrypt_data, salt_key, decrypt_data};
use crate::error::{Result, SdkError};
use super::{TASK_STATUS_ERROR, TASK_STATUS_DONE, TASK_STATUS_PENDING, TASK_STATUS_PROCESSING};
/// Scheduler client for executing tasks
#[derive(Clone)]
pub struct Client {
base_url: String,
http_client: HttpClient,
}
/// Task execution request
#[derive(Serialize, Debug)]
pub struct ExecuteRequest {
pub method: String,
pub params: Value,
}
/// Encrypted task execution request
#[derive(Serialize, Debug)]
pub struct ExecuteEncryptedRequest {
pub method: String,
pub params: String,
pub key: String,
pub crypto: String,
}
/// Task result response
#[derive(Deserialize, Debug, Clone)]
pub struct ResultResponse {
#[serde(rename = "taskId")]
pub task_id: String,
pub status: String,
pub result: Option<Value>,
}
impl std::fmt::Display for ResultResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Task {} (status: {})", self.task_id, self.status)
}
}
impl Client {
/// Creates a new scheduler client
///
/// # Arguments
///
/// * `base_url` - The base URL of the scheduler server
///
/// # Example
///
/// ```rust
/// use go_server_rust_sdk::scheduler::Client;
///
/// let client = Client::new("http://localhost:8080");
/// ```
pub fn new(base_url: impl Into<String>) -> Self {
Self {
base_url: base_url.into(),
http_client: HttpClient::builder()
.timeout(Duration::from_secs(30))
.build()
.expect("Failed to create HTTP client"),
}
}
/// Executes a task with the given method and parameters
///
/// # Arguments
///
/// * `method` - The method name to execute
/// * `params` - The parameters for the method
///
/// # Returns
///
/// A `ResultResponse` containing the task ID and initial status
///
/// # Example
///
/// ```rust,no_run
/// use go_server_rust_sdk::scheduler::Client;
/// use serde_json::json;
///
/// # #[tokio::main]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let client = Client::new("http://localhost:8080");
/// let params = json!({"a": 10, "b": 20});
/// let response = client.execute("add", params).await?;
/// println!("Task ID: {}", response.task_id);
/// # Ok(())
/// # }
/// ```
pub async fn execute(&self, method: impl Into<String>, params: Value) -> Result<ResultResponse> {
let request = ExecuteRequest {
method: method.into(),
params,
};
let url = format!("{}/api/execute", self.base_url);
let response = self.http_client
.post(&url)
.json(&request)
.send()
.await?
.error_for_status()?;
let result: ResultResponse = response.json().await?;
Ok(result)
}
/// Executes an encrypted task with the given method, key, salt and parameters
///
/// # Arguments
///
/// * `method` - The method name to execute
/// * `key` - The encryption key
/// * `salt` - The salt value for key encryption
/// * `params` - The parameters for the method
///
/// # Returns
///
/// A `ResultResponse` containing the task ID and initial status
///
/// # Example
///
/// ```rust,no_run
/// use go_server_rust_sdk::scheduler::Client;
/// use serde_json::json;
///
/// # #[tokio::main]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let client = Client::new("http://localhost:8080");
/// let params = json!({"a": 10, "b": 20});
/// let response = client.execute_encrypted("add", "my-secret-key", 123456, params).await?;
/// println!("Task ID: {}", response.task_id);
/// # Ok(())
/// # }
/// ```
pub async fn execute_encrypted(
&self,
method: impl Into<String>,
key: &str,
salt: i32,
params: Value,
) -> Result<ResultResponse> {
// Encrypt parameters
let encrypted_params = encrypt_data(¶ms, key)?;
// Salt the key
let salted_key = salt_key(key, salt)?;
let request = ExecuteEncryptedRequest {
method: method.into(),
params: encrypted_params,
key: salted_key,
crypto: salt.to_string(),
};
let url = format!("{}/api/encrypted/execute", self.base_url);
let response = self.http_client
.post(&url)
.json(&request)
.send()
.await?
.error_for_status()?;
let result: ResultResponse = response.json().await?;
Ok(result)
}
/// Retrieves the result of a task by its ID with polling
///
/// This method will automatically poll the server until the task is complete
/// or an error occurs.
///
/// # Arguments
///
/// * `task_id` - The ID of the task to retrieve
///
/// # Returns
///
/// A `ResultResponse` containing the final task result
///
/// # Example
///
/// ```rust,no_run
/// use go_server_rust_sdk::scheduler::Client;
///
/// # #[tokio::main]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let client = Client::new("http://localhost:8080");
/// let result = client.get_result("task-123").await?;
/// println!("Result: {:?}", result.result);
/// # Ok(())
/// # }
/// ```
pub async fn get_result(&self, task_id: &str) -> Result<ResultResponse> {
loop {
let url = format!("{}/api/result/{}", self.base_url, task_id);
let response = self.http_client
.get(&url)
.send()
.await?
.error_for_status()?;
let result: ResultResponse = response.json().await?;
match result.status.as_str() {
TASK_STATUS_PENDING | TASK_STATUS_PROCESSING => {
sleep(Duration::from_secs(1)).await;
continue;
}
TASK_STATUS_ERROR => {
let error_msg = result.result
.as_ref()
.and_then(|v| v.as_str())
.unwrap_or("Unknown error");
return Err(SdkError::Task(error_msg.to_string()));
}
_ => return Ok(result),
}
}
}
/// Retrieves and decrypts the result of an encrypted task by its ID
///
/// This method will automatically poll the server until the task is complete,
/// then decrypt the result using the provided key.
///
/// # Arguments
///
/// * `task_id` - The ID of the task to retrieve
/// * `key` - The decryption key
/// * `salt` - The salt value used for encryption
///
/// # Returns
///
/// A `ResultResponse` containing the decrypted task result
///
/// # Example
///
/// ```rust,no_run
/// use go_server_rust_sdk::scheduler::Client;
///
/// # #[tokio::main]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let client = Client::new("http://localhost:8080");
/// let result = client.get_result_encrypted("task-123", "my-secret-key", 123456).await?;
/// println!("Decrypted result: {:?}", result.result);
/// # Ok(())
/// # }
/// ```
pub async fn get_result_encrypted(
&self,
task_id: &str,
key: &str,
_salt: i32,
) -> Result<ResultResponse> {
loop {
let url = format!("{}/api/encrypted/result/{}", self.base_url, task_id);
let response = self.http_client
.get(&url)
.send()
.await?
.error_for_status()?;
let mut result: ResultResponse = response.json().await?;
match result.status.as_str() {
TASK_STATUS_PENDING | TASK_STATUS_PROCESSING => {
sleep(Duration::from_secs(1)).await;
continue;
}
TASK_STATUS_ERROR => {
let error_msg = result.result
.as_ref()
.and_then(|v| v.as_str())
.unwrap_or("Unknown error");
return Err(SdkError::Task(error_msg.to_string()));
}
TASK_STATUS_DONE => {
// Decrypt result data if present
if let Some(encrypted_result) = &result.result {
if let Some(encrypted_str) = encrypted_result.as_str() {
let decrypted_result = decrypt_data(encrypted_str, key)?;
result.result = Some(decrypted_result);
}
}
return Ok(result);
}
_ => return Ok(result),
}
}
}
/// Executes a task synchronously with polling and timeout
///
/// This is a convenience method that combines `execute` and `get_result`
/// with a timeout.
///
/// # Arguments
///
/// * `method` - The method name to execute
/// * `params` - The parameters for the method
/// * `timeout_duration` - Maximum time to wait for completion
///
/// # Returns
///
/// A `ResultResponse` containing the final task result
///
/// # Example
///
/// ```rust,no_run
/// use go_server_rust_sdk::scheduler::Client;
/// use serde_json::json;
/// use std::time::Duration;
///
/// # #[tokio::main]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let client = Client::new("http://localhost:8080");
/// let params = json!({"a": 10, "b": 20});
/// let result = client.execute_sync("add", params, Duration::from_secs(30)).await?;
/// println!("Result: {:?}", result.result);
/// # Ok(())
/// # }
/// ```
pub async fn execute_sync(
&self,
method: impl Into<String>,
params: Value,
timeout_duration: Duration,
) -> Result<ResultResponse> {
// Submit task
let exec_response = self.execute(method, params).await?;
// Poll for result with timeout
let result = timeout(timeout_duration, self.get_result(&exec_response.task_id)).await
.map_err(|_| SdkError::Timeout)??;
Ok(result)
}
/// Executes an encrypted task synchronously with polling, decryption and timeout
///
/// This is a convenience method that combines `execute_encrypted` and
/// `get_result_encrypted` with a timeout.
///
/// # Arguments
///
/// * `method` - The method name to execute
/// * `key` - The encryption key
/// * `salt` - The salt value for key encryption
/// * `params` - The parameters for the method
/// * `timeout_duration` - Maximum time to wait for completion
///
/// # Returns
///
/// A `ResultResponse` containing the decrypted task result
///
/// # Example
///
/// ```rust,no_run
/// use go_server_rust_sdk::scheduler::Client;
/// use serde_json::json;
/// use std::time::Duration;
///
/// # #[tokio::main]
/// # async fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let client = Client::new("http://localhost:8080");
/// let params = json!({"a": 10, "b": 20});
/// let result = client.execute_sync_encrypted(
/// "add",
/// "my-secret-key",
/// 123456,
/// params,
/// Duration::from_secs(30)
/// ).await?;
/// println!("Decrypted result: {:?}", result.result);
/// # Ok(())
/// # }
/// ```
pub async fn execute_sync_encrypted(
&self,
method: impl Into<String>,
key: &str,
salt: i32,
params: Value,
timeout_duration: Duration,
) -> Result<ResultResponse> {
// Submit encrypted task
let exec_response = self.execute_encrypted(method, key, salt, params).await?;
// Poll for result with timeout and decryption
let result = timeout(
timeout_duration,
self.get_result_encrypted(&exec_response.task_id, key, salt),
)
.await
.map_err(|_| SdkError::Timeout)??;
Ok(result)
}
}
#[cfg(test)]
mod tests {
use super::*;
use serde_json::json;
#[test]
fn test_client_creation() {
let client = Client::new("http://localhost:8080");
assert_eq!(client.base_url, "http://localhost:8080");
}
#[test]
fn test_execute_request_serialization() {
let request = ExecuteRequest {
method: "test_method".to_string(),
params: json!({"key": "value"}),
};
let serialized = serde_json::to_string(&request).unwrap();
assert!(serialized.contains("test_method"));
assert!(serialized.contains("value"));
}
#[test]
fn test_result_response_deserialization() {
let json_str = r#"{
"taskId": "123",
"status": "done",
"result": {"answer": 42}
}"#;
let response: ResultResponse = serde_json::from_str(json_str).unwrap();
assert_eq!(response.task_id, "123");
assert_eq!(response.status, "done");
assert!(response.result.is_some());
}
}