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
use crate::{
NodeID,
beacon_based::{
common::CustomData,
ddev::{Env, EnvMeta, Node, NodeCmdGenerator, NodePorts},
},
check_errlist,
common::remote::Remote,
};
use ruc::*;
use std::collections::BTreeMap;
use std::thread;
pub fn chg_file_on_nodes<C, P, S>(
env: &Env<C, P, S>,
ids: Option<&[NodeID]>,
local_file: &str, // local absolute path on the control host
remote_file: &str, // remote file path relative to the node home
) -> Result<()>
where
C: CustomData,
P: NodePorts,
S: NodeCmdGenerator<Node<P>, EnvMeta<C, Node<P>>>,
{
if let Some(ids) = ids {
for id in ids.iter() {
if env
.meta
.nodes
.get(id)
.or_else(|| env.meta.fuhrers.get(id))
.is_none()
{
return Err(eg!("The node(id: {}) does not exist!", id));
}
}
}
let mut errlist = vec![];
// Use chunks to avoid resource overload
for (idx, nodes) in env
.meta
.fuhrers
.values()
.chain(env.meta.nodes.values())
.filter(|n| ids.map(|ids| ids.contains(&n.id)).unwrap_or(true))
.collect::<Vec<_>>()
.chunks(12)
.enumerate()
{
let mut path_map = BTreeMap::new();
thread::scope(|s| {
nodes
.iter()
.map(|n| {
let host = n.host.clone();
let remote_file = format!("{}/{remote_file}", n.home);
s.spawn(move || {
let remote = Remote::from(&host);
remote.put_file(local_file, &remote_file).c(d!()).map(|_| {
(
local_file,
format!(
"[{}, N{}, {}] {}",
host.addr.connection_addr(),
n.id,
n.kind,
remote_file
),
)
})
})
})
.collect::<Vec<_>>()
.into_iter()
.flat_map(|h| h.join())
.for_each(|t| match t {
Ok((f, lp)) => {
path_map.entry(f).or_insert_with(Vec::new).push(lp);
}
Err(e) => {
errlist.push(e);
}
});
});
// Print good resp at first,
path_map.into_iter().for_each(|(f, mut paths)| {
println!("[Chunk {idx}] The '{}' have been put at:", f);
paths.sort();
paths.iter().for_each(|p| {
println!("\t- {}", p);
});
});
}
// Then pop err msg
check_errlist!(errlist)
}
pub fn collect_files_from_nodes<C, P, S>(
env: &Env<C, P, S>,
ids: Option<&[NodeID]>,
files: &[&str], // file paths relative to the node home
local_base_dir: Option<&str>,
) -> Result<()>
where
C: CustomData,
P: NodePorts,
S: NodeCmdGenerator<Node<P>, EnvMeta<C, Node<P>>>,
{
if let Some(ids) = ids {
for id in ids.iter() {
if env
.meta
.nodes
.get(id)
.or_else(|| env.meta.fuhrers.get(id))
.is_none()
{
return Err(eg!("The node(id: {}) does not exist!", id));
}
}
}
let local_base_dir = local_base_dir.unwrap_or("/tmp");
let mut errlist = vec![];
// Use chunks to avoid resource overload
for (idx, nodes) in env
.meta
.fuhrers
.values()
.chain(env.meta.nodes.values())
.filter(|n| ids.map(|ids| ids.contains(&n.id)).unwrap_or(true))
.collect::<Vec<_>>()
.chunks(12)
.enumerate()
{
let mut path_map = BTreeMap::new();
thread::scope(|s| {
nodes
.iter()
.flat_map(|n| {
files.iter().map(|f| {
(
n.host.clone(),
*f,
format!("{}/{}", &n.home, f),
format!("N{}_{}_{}", n.id, n.kind, f.replace('/', "_")),
)
})
})
.map(|(host, relative_path, remote_path, remote_file)| {
let local_path = format!(
"{}/{}.{{{}}}",
local_base_dir,
remote_file,
host.addr.connection_addr()
);
s.spawn(move || {
let remote = Remote::from(&host);
remote
.get_file(remote_path, &local_path)
.c(d!())
.map(|_| (relative_path, local_path))
})
})
.collect::<Vec<_>>()
.into_iter()
.flat_map(|h| h.join())
.for_each(|t| match t {
Ok((f, lp)) => {
path_map.entry(f).or_insert_with(Vec::new).push(lp);
}
Err(e) => {
errlist.push(e);
}
});
});
// Print good resp at first,
path_map.into_iter().for_each(|(f, mut paths)| {
println!("[Chunk {idx}] Files of the '{}' have been put at:", f);
paths.sort();
paths.iter().for_each(|p| {
println!("\t- {}", p);
});
});
}
// Then pop err msg
check_errlist!(errlist)
}
pub fn collect_tgz_from_nodes<'a, C, P, S>(
env: &'a Env<C, P, S>,
ids: Option<&[NodeID]>,
paths: &'a [&'a str], // paths relative to the node home
local_base_dir: Option<&'a str>,
) -> Result<()>
where
C: CustomData,
P: NodePorts,
S: NodeCmdGenerator<Node<P>, EnvMeta<C, Node<P>>>,
{
if let Some(ids) = ids {
for id in ids.iter() {
if env
.meta
.nodes
.get(id)
.or_else(|| env.meta.fuhrers.get(id))
.is_none()
{
return Err(eg!("The node(id: {}) does not exist!", id));
}
}
}
let local_base_dir = local_base_dir.unwrap_or("/tmp");
let mut errlist = vec![];
// Use chunks to avoid resource overload
for (idx, nodes) in env
.meta
.fuhrers
.values()
.chain(env.meta.nodes.values())
.filter(|n| ids.map(|ids| ids.contains(&n.id)).unwrap_or(true))
.collect::<Vec<_>>()
.chunks(12)
.enumerate()
{
let mut path_map = BTreeMap::new();
thread::scope(|s| {
nodes
.iter()
.flat_map(|n| {
paths.iter().map(|path| {
(
n.host.clone(),
*path,
format!("{}/{}", &n.home, path),
format!(
"N{}_{}_{}.tgz",
n.id,
n.kind,
path.replace('/', "_")
),
)
})
})
.map(|(host, relative_path, remote_path, tgz_name)| {
let tgzcmd =
format!("cd /tmp && tar -zcf {} {}", &tgz_name, &remote_path);
let remote_tgz_path = format!("/tmp/{}", tgz_name);
let local_path = format!(
"{}/{}.{{{}}}",
local_base_dir,
&tgz_name,
host.addr.connection_addr()
);
s.spawn(move || {
let remote = Remote::from(&host);
remote
.exec_cmd(&tgzcmd)
.c(d!())
.and_then(|_| {
remote.get_file(remote_tgz_path, &local_path).c(d!())
})
.map(|_| (relative_path, local_path))
})
})
.collect::<Vec<_>>()
.into_iter()
.flat_map(|h| h.join())
.for_each(|t| match t {
Ok((f, lp)) => {
path_map.entry(f).or_insert_with(Vec::new).push(lp);
}
Err(e) => {
errlist.push(e);
}
});
});
// Print good resp at first,
path_map.into_iter().for_each(|(f, mut paths)| {
println!(
"[Chunk {idx}] Tar packages of the '{}' have been put at:",
f
);
paths.sort();
paths.iter().for_each(|p| {
println!("\t- {}", p);
});
});
}
// Then pop err msg
check_errlist!(errlist)
}