-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathinfo.rs
More file actions
81 lines (73 loc) · 3.05 KB
/
info.rs
File metadata and controls
81 lines (73 loc) · 3.05 KB
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
use std::fmt::Debug;
use crate::commands::global;
pub mod env_meta;
pub mod interface;
pub mod meta;
pub mod shared;
pub mod wasm_hash;
#[derive(Debug, clap::Subcommand)]
pub enum Cmd {
/// Output the interface of a contract.
///
/// A contract's interface describes the functions, parameters, and
/// types that the contract makes accessible to be called.
///
/// The data outputted by this command is a stream of `SCSpecEntry` XDR values.
/// See the type definitions in [stellar-xdr](https://github.com/stellar/stellar-xdr).
/// [See also XDR data format](https://developers.stellar.org/docs/learn/encyclopedia/data-format/xdr).
///
/// Outputs no data when no data is present in the contract.
Interface(interface::Cmd),
/// Output the metadata stored in a contract.
///
/// A contract's meta is a series of key-value pairs that the contract
/// developer can set with any values to provided metadata about the
/// contract. The meta also contains some information like the version
/// of Rust SDK, and Rust compiler version.
///
/// The data outputted by this command is a stream of `SCMetaEntry` XDR values.
/// See the type definitions in [stellar-xdr](https://github.com/stellar/stellar-xdr).
/// [See also XDR data format](https://developers.stellar.org/docs/learn/encyclopedia/data-format/xdr).
///
/// Outputs no data when no data is present in the contract.
Meta(meta::Cmd),
/// Output the env required metadata stored in a contract.
///
/// Env-meta is information stored in all contracts, in the
/// `contractenvmetav0` WASM custom section, about the environment
/// that the contract was built for. Env-meta allows the Soroban Env
/// to know whether the contract is compatibility with the network in
/// its current configuration.
///
/// The data outputted by this command is a stream of `SCEnvMetaEntry` XDR values.
/// See the type definitions in [stellar-xdr](https://github.com/stellar/stellar-xdr).
/// [See also XDR data format](https://developers.stellar.org/docs/learn/encyclopedia/data-format/xdr).
///
/// Outputs no data when no data is present in the contract.
EnvMeta(env_meta::Cmd),
/// Get the wasm hash of a deployed contract
WasmHash(wasm_hash::Cmd),
}
#[derive(thiserror::Error, Debug)]
pub enum Error {
#[error(transparent)]
Interface(#[from] interface::Error),
#[error(transparent)]
Meta(#[from] meta::Error),
#[error(transparent)]
EnvMeta(#[from] env_meta::Error),
#[error(transparent)]
WasmHash(#[from] wasm_hash::Error),
}
impl Cmd {
pub async fn run(&self, global_args: &global::Args) -> Result<(), Error> {
let result = match &self {
Cmd::Interface(interface) => interface.run(global_args).await?,
Cmd::Meta(meta) => meta.run(global_args).await?,
Cmd::EnvMeta(env_meta) => env_meta.run(global_args).await?,
Cmd::WasmHash(cmd) => cmd.run(global_args).await?,
};
println!("{result}");
Ok(())
}
}