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
use std::{collections::HashMap, fmt::Debug, time::Duration};
use crate::{
error::{JobError, JobStreamError, WorkerError},
request::{JobRequest, JobState},
};
use chrono::{DateTime, Utc};
use futures::{future::BoxFuture, stream::BoxStream};
use serde::{de::DeserializeOwned, Deserialize, Serialize};
pub type JobFuture<I> = BoxFuture<'static, I>;
pub type JobStreamResult<T> = BoxStream<'static, Result<Option<JobRequest<T>>, JobStreamError>>;
#[derive(Debug)]
pub struct JobRequestWrapper<T>(pub Result<Option<JobRequest<T>>, JobStreamError>);
pub trait Job: Sized + Send + Unpin + Serialize + DeserializeOwned + Debug + Sync {
const NAME: &'static str;
fn on_service_ready(&self, _req: &JobRequest<Self>, _latency: Duration) {
#[cfg(feature = "trace")]
tracing::debug!(latency = ?_latency, "service.ready");
}
fn on_worker_error(&self, _req: &JobRequest<Self>, _error: &WorkerError) {
#[cfg(feature = "trace")]
tracing::warn!(error =?_error, "storage.error");
}
}
trait JobDecodable
where
Self: Sized,
{
fn decode_job(value: &[u8]) -> Result<Self, JobError>;
}
trait JobEncodable
where
Self: Sized,
{
fn encode_job(&self) -> Result<Vec<u8>, JobError>;
}
pub trait JobStream {
type Job: Job;
fn stream(&mut self, worker_id: String, interval: Duration) -> JobStreamResult<Self::Job>;
}
#[derive(Debug, Serialize, Deserialize)]
pub struct JobStreamWorker {
worker_id: String,
job_type: String,
source: String,
layers: String,
last_seen: DateTime<Utc>,
}
impl JobStreamWorker {
pub fn new<S, T>(worker_id: String, last_seen: DateTime<Utc>) -> Self
where
S: JobStream<Job = T>,
{
JobStreamWorker {
worker_id,
job_type: std::any::type_name::<T>().to_string(),
source: std::any::type_name::<S>().to_string(),
layers: String::new(),
last_seen,
}
}
pub fn set_layers(&mut self, layers: String) {
self.layers = layers;
}
}
#[derive(Debug, Deserialize, Serialize, Default)]
pub struct Counts {
#[serde(flatten)]
pub inner: HashMap<JobState, i64>,
}
#[async_trait::async_trait]
pub trait JobStreamExt<Job>: JobStream<Job = Job>
where
Self: Sized,
{
async fn list_workers(&mut self) -> Result<Vec<JobStreamWorker>, JobError>;
async fn counts(&mut self) -> Result<Counts, JobError> {
Ok(Counts {
..Default::default()
})
}
async fn list_jobs(
&mut self,
status: &JobState,
page: i32,
) -> Result<Vec<JobRequest<Job>>, JobError>;
}