-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmod.rs
360 lines (314 loc) · 10.6 KB
/
mod.rs
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
use std::collections::HashMap;
use action::post_and_wait_tx;
use anyhow::Result;
use clap::{Parser, ValueHint};
use clap_stdin::FileOrStdin;
use reqwest::{Client, RequestBuilder, Response};
use serde_json::Value;
use snops_cli::events::EventsClient;
use snops_common::{
action_models::AleoValue,
events::{AgentEvent, Event, EventKind},
key_source::KeySource,
state::{AgentId, Authorization, CannonId, EnvId, InternedId, NodeKey, ReconcileStatus},
};
mod action;
/// For interacting with snop environments.
#[derive(Debug, Parser)]
pub struct Env {
/// Work with a specific env.
#[clap(default_value = "default", value_hint = ValueHint::Other)]
id: InternedId,
#[clap(subcommand)]
command: EnvCommands,
}
/// Env commands.
#[derive(Debug, Parser)]
enum EnvCommands {
/// Run an action on an environment.
#[clap(subcommand)]
Action(action::Action),
/// Get an env's specific agent by.
#[clap(alias = "a")]
Agent {
/// The agent's key. i.e validator/0, client/foo, prover/9,
/// or combination.
#[clap(value_hint = ValueHint::Other)]
key: NodeKey,
},
/// List an env's agents
Agents,
// execute and broadcast
Auth {
/// When present, don't wait for transaction execution before returning
#[clap(long = "async")]
async_mode: bool,
/// Desired cannon to fire the transaction
#[clap(long, short, default_value = "default")]
cannon: CannonId,
/// Authorization to execute and broadcast
auth: FileOrStdin<Authorization>,
},
/// Lookup an account's balance
#[clap(alias = "bal")]
Balance {
/// Address to lookup balance for
address: KeySource,
},
/// Lookup a block or get the latest block
Block {
/// The block's height or hash.
#[clap(default_value = "latest")]
height_or_hash: String,
},
/// Get the latest height from all agents in the env.
Height,
/// Lookup a transaction's block by a transaction id.
#[clap(alias = "tx")]
Transaction { id: String },
/// Lookup a transaction's details by a transaction id.
#[clap(alias = "tx-details")]
TransactionDetails { id: String },
/// Delete a specific environment.
#[clap(alias = "d")]
Delete,
/// Get an env's latest block/state root info.
Info,
/// List all environments.
/// Ignores the env id.
#[clap(alias = "ls")]
List,
/// Show the current topology of a specific environment.
#[clap(alias = "top")]
Topology,
/// Show the resolved topology of a specific environment.
/// Shows only internal agents.
#[clap(alias = "top-res")]
TopologyResolved,
/// Apply an environment spec.
#[clap(alias = "p")]
Apply {
/// The environment spec file.
#[clap(value_hint = ValueHint::AnyPath)]
spec: FileOrStdin<String>,
/// When present, don't wait for reconciles to finish before returning
#[clap(long = "async")]
async_mode: bool,
},
/// Lookup a mapping by program id and mapping name.
Mapping {
/// The program name.
program: String,
/// The mapping name.
mapping: String,
/// The key to lookup.
key: AleoValue,
},
/// Lookup a program's mappings only.
Mappings {
/// The program name.
program: String,
},
/// Lookup a program by its id.
Program { id: String },
/// Get an env's storage info.
#[clap(alias = "store")]
Storage,
}
impl Env {
pub async fn run(self, url: &str, client: Client) -> Result<Response> {
let id = self.id;
use EnvCommands::*;
Ok(match self.command {
Action(action) => action.execute(url, id, client).await?,
Agent { key } => {
let ep = format!("{url}/api/v1/env/{id}/agents/{key}");
client.get(ep).send().await?
}
Agents => {
let ep = format!("{url}/api/v1/env/{id}/agents");
client.get(ep).send().await?
}
Auth {
async_mode,
cannon,
auth,
} => {
let ep = format!("{url}/api/v1/env/{id}/cannons/{cannon}/auth");
let mut req = client.post(ep).json(&auth.contents()?);
if async_mode {
req = req.query(&[("async", "true")]);
}
if async_mode {
req.send().await?
} else {
post_and_wait_tx(url, req).await?;
std::process::exit(0);
}
}
Balance { address: key } => {
let ep = format!("{url}/api/v1/env/{id}/balance/{key}");
client.get(ep).json(&key).send().await?
}
Block { height_or_hash } => {
let ep = format!("{url}/api/v1/env/{id}/block/{height_or_hash}");
client.get(ep).send().await?
}
Delete => {
let ep = format!("{url}/api/v1/env/{id}");
client.delete(ep).send().await?
}
Info => {
let ep = format!("{url}/api/v1/env/{id}/info");
client.get(ep).send().await?
}
List => {
let ep = format!("{url}/api/v1/env/list");
client.get(ep).send().await?
}
Topology => {
let ep = format!("{url}/api/v1/env/{id}/topology");
client.get(ep).send().await?
}
TopologyResolved => {
let ep = format!("{url}/api/v1/env/{id}/topology/resolved");
client.get(ep).send().await?
}
Apply { spec, async_mode } => {
let ep = format!("{url}/api/v1/env/{id}/apply");
let req = client.post(ep).body(spec.contents()?);
if async_mode {
req.send().await?
} else {
post_and_wait(url, req, id).await?;
std::process::exit(0);
}
}
Mapping {
program,
mapping,
key,
} => {
let ep = match key {
AleoValue::Other(key) => {
format!(
"{url}/api/v1/env/{id}/program/{program}/mapping/{mapping}?key={key}"
)
}
AleoValue::Key(source) => {
format!(
"{url}/api/v1/env/{id}/program/{program}/mapping/{mapping}?keysource={source}"
)
}
};
client.get(ep).send().await?
}
Mappings { program } => {
let ep = format!("{url}/api/v1/env/{id}/program/{program}/mappings");
client.get(ep).send().await?
}
Program { id: prog } => {
let ep = format!("{url}/api/v1/env/{id}/program/{prog}");
println!("{}", client.get(ep).send().await?.text().await?);
std::process::exit(0);
}
Storage => {
let ep = format!("{url}/api/v1/env/{id}/storage");
client.get(ep).send().await?
}
Transaction { id: hash } => {
let ep = format!("{url}/api/v1/env/{id}/transaction_block/{hash}");
client.get(ep).send().await?
}
TransactionDetails { id: hash } => {
let ep = format!("{url}/api/v1/env/{id}/transaction/{hash}");
client.get(ep).send().await?
}
Height => {
let ep = format!("{url}/api/v1/env/{id}/height");
client.get(ep).send().await?
}
})
}
}
pub async fn post_and_wait(url: &str, req: RequestBuilder, env_id: EnvId) -> Result<()> {
use snops_common::events::EventFilter::*;
use snops_common::events::EventKindFilter::*;
let mut events = EventsClient::open_with_filter(
url,
EnvIs(env_id)
& (AgentConnected
| AgentDisconnected
| AgentReconcile
| AgentReconcileComplete
| AgentReconcileError),
)
.await?;
let res = req.send().await?;
if !res.status().is_success() {
let value = match res.content_length() {
Some(0) | None => {
eprintln!("error: {}", res.status());
return Ok(());
}
_ => {
let text = res.text().await?;
serde_json::from_str(&text).unwrap_or_else(|_| Value::String(text))
}
};
println!("{}", serde_json::to_string_pretty(&value)?);
return Ok(());
}
let mut node_map: HashMap<NodeKey, AgentId> = res.json().await?;
println!("{}", serde_json::to_string_pretty(&node_map)?);
let filter = node_map
.values()
.copied()
.fold(!Unfiltered, |id, filter| (id | AgentIs(filter)));
while let Some(event) = events.next().await? {
// Ensure the event is based on the response
if !event.matches(&filter) {
continue;
}
if let Event {
node_key: Some(node),
content: EventKind::Agent(e),
..
} = &event
{
match &e {
AgentEvent::Reconcile(ReconcileStatus {
scopes, conditions, ..
}) => {
println!(
"{node}: {} {}",
scopes.join(";"),
conditions
.iter()
// unwrap safety - it was literally just serialized
.map(|s| serde_json::to_string(s).unwrap())
.collect::<Vec<_>>()
.join(",")
);
}
AgentEvent::ReconcileError(err) => {
println!("{node}: error: {err}");
}
AgentEvent::ReconcileComplete => {
println!("{node}: done");
}
_ => {}
}
}
if let (Some(node_key), true) = (
event.node_key.as_ref(),
event.matches(&AgentReconcileComplete.into()),
) {
node_map.remove(node_key);
if node_map.is_empty() {
break;
}
}
}
events.close().await
}