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
use crate::commands::{queue, Call, CommandResult, Queue};
use crate::fmt::format_size;
use crate::platform::Platform;
use crate::repository::background::BackgroundCommand;
use crate::repository::{BackgroundEvent, Repository, RepositoryFile};
use anyhow::Context;
use chrono::{DateTime, Local};
use num_derive::FromPrimitive;
use num_traits::FromPrimitive;
use std::sync::Arc;
use tokio::sync::mpsc;
#[derive(FromPrimitive)]
pub enum ForegroundCommands {
List,
Scan,
Fetch,
ForceFetch,
Delete,
Store,
IncEpoch,
Epochs,
}
pub fn actor(
platform: Arc<Platform>,
repository: Arc<Repository>,
mut background_task_sender: mpsc::Sender<BackgroundCommand>,
mut update_notifier: mpsc::Receiver<BackgroundEvent>,
) -> Queue {
let (command_queue, mut commands_endpoint) = queue();
tokio::spawn(async move {
use crate::commands::ResultExt;
let mut files = Vec::new();
let mut foreground_epoch = 1;
let mut background_epoch = 1;
if let Err(error) = background_task_sender.send(BackgroundCommand::Scan).await {
log::error!("Failed to start initial repository scan: {}", error);
}
while platform.is_running() {
tokio::select! {
cmd = commands_endpoint.recv() => if let Some(mut call) = cmd {
match ForegroundCommands::from_usize(call.token) {
Some(ForegroundCommands::Scan) => {
scan_command(&mut call, &mut background_task_sender).await.complete(call)
}
Some(ForegroundCommands::List) => list_command(&mut call, &files).complete(call),
Some(ForegroundCommands::Fetch) => {
fetch_command(&mut call, &mut background_task_sender, false).await.complete(call);
},
Some(ForegroundCommands::ForceFetch) => {
fetch_command(&mut call, &mut background_task_sender, true).await.complete(call);
}
Some(ForegroundCommands::Delete) => {
delete_command(&mut call, &mut background_task_sender).await.complete(call);
}
Some(ForegroundCommands::Store) => {
store_command(&mut call, &mut background_task_sender).await.complete(call);
}
Some(ForegroundCommands::IncEpoch) => {
inc_epoch_command(&mut call, &mut foreground_epoch, &mut background_task_sender).await.complete(call);
}
Some(ForegroundCommands::Epochs) => {
epochs_command(&mut call, foreground_epoch, background_epoch).await.complete(call);
}
None => ()
}
},
update = update_notifier.recv() => {
match update {
Some(BackgroundEvent::FileEvent(file_event)) => {
let _ = repository.broadcast_sender.send(file_event);
}
Some(BackgroundEvent::FileListUpdated(new_files)) => files = new_files,
Some(BackgroundEvent::EpochCounter(epoch)) => background_epoch = epoch,
_ => {}
}
}
}
}
});
command_queue
}
async fn scan_command(
call: &mut Call,
background_sender: &mut mpsc::Sender<BackgroundCommand>,
) -> CommandResult {
background_sender
.send(BackgroundCommand::Scan)
.await
.context("Failed to instruct background worker to perform a repository scan.")?;
call.response.ok()?;
Ok(())
}
fn list_command(call: &mut Call, files: &[RepositoryFile]) -> CommandResult {
if call.request.parameter_count() > 0 {
call.response.array(files.len() as i32)?;
for file in files {
call.response.array(3)?;
call.response.simple(&file.name)?;
call.response.number(file.size as i64)?;
call.response
.simple(DateTime::<Local>::from(file.last_modified).to_rfc3339())?;
}
} else {
let mut result = String::new();
result += "Use 'REPO.LIST raw' for to obtain the raw values.\n\n";
result += format!("{:<40} {:>12} {:>25}\n", "Name", "Size", "Last Modified").as_str();
result += crate::response::SEPARATOR;
for file in files {
result += format!(
"{:<40} {:>12} {:>25}\n",
&file.name,
format_size(file.size as usize),
DateTime::<Local>::from(file.last_modified)
.format("%Y-%m-%dT%H:%M:%S")
.to_string()
)
.as_str();
}
result += crate::response::SEPARATOR;
call.response.bulk(result)?;
}
Ok(())
}
async fn fetch_command(
call: &mut Call,
background_sender: &mut mpsc::Sender<BackgroundCommand>,
force: bool,
) -> CommandResult {
let path = call.request.str_parameter(0)?.to_string();
if force {
background_sender
.send(BackgroundCommand::ForceFetch(
path,
call.request.str_parameter(1)?.to_string(),
))
.await
.context("Failed to enqueue FETCH into background queue.")?;
} else {
background_sender
.send(BackgroundCommand::Fetch(
path,
call.request.str_parameter(1)?.to_string(),
))
.await
.context("Failed to enqueue FETCH into background queue.")?;
}
call.response.ok()?;
Ok(())
}
async fn delete_command(
call: &mut Call,
background_sender: &mut mpsc::Sender<BackgroundCommand>,
) -> CommandResult {
let path = call.request.str_parameter(0)?.to_string();
background_sender
.send(BackgroundCommand::Delete(path))
.await
.context("Failed to enqueue DELETE into background queue.")?;
call.response.ok()?;
Ok(())
}
async fn store_command(
call: &mut Call,
background_sender: &mut mpsc::Sender<BackgroundCommand>,
) -> CommandResult {
let path = call.request.str_parameter(0)?.to_string();
let data = call.request.parameter(1)?.to_vec();
background_sender
.send(BackgroundCommand::Store(path, data))
.await
.context("Failed to enqueue STORE into background queue.")?;
call.response.ok()?;
Ok(())
}
async fn inc_epoch_command(
call: &mut Call,
foreground_epoch: &mut i64,
background_sender: &mut mpsc::Sender<BackgroundCommand>,
) -> CommandResult {
*foreground_epoch += 1;
background_sender
.send(BackgroundCommand::EmitEpochCounter(*foreground_epoch))
.await
.context("Failed to enqueue EMIT EPOCH into background queue.")?;
call.response.ok()?;
Ok(())
}
async fn epochs_command(
call: &mut Call,
foreground_epoch: i64,
background_epoch: i64,
) -> CommandResult {
call.response.array(2)?;
call.response.number(foreground_epoch)?;
call.response.number(background_epoch)?;
Ok(())
}