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
mod package_lock;
pub mod compilation;
pub mod package_hooks;
pub mod resolution;
pub mod source_package;
use anyhow::{bail, Result};
use clap::*;
use move_core_types::account_address::AccountAddress;
use move_model::model::GlobalEnv;
use serde::{Deserialize, Serialize};
use source_package::layout::SourcePackageLayout;
use std::{
collections::BTreeMap,
fmt,
io::Write,
path::{Path, PathBuf},
};
use crate::{
compilation::{
build_plan::BuildPlan, compiled_package::CompiledPackage, model_builder::ModelBuilder,
},
package_lock::PackageLock,
resolution::resolution_graph::{ResolutionGraph, ResolvedGraph},
source_package::manifest_parser,
};
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
pub enum Architecture {
Move,
AsyncMove,
Ethereum,
}
impl fmt::Display for Architecture {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::Move => write!(f, "move"),
Self::AsyncMove => write!(f, "async-move"),
Self::Ethereum => write!(f, "ethereum"),
}
}
}
impl Architecture {
fn all() -> impl Iterator<Item = Self> {
IntoIterator::into_iter([
Self::Move,
Self::AsyncMove,
#[cfg(feature = "evm-backend")]
Self::Ethereum,
])
}
fn try_parse_from_str(s: &str) -> Result<Self> {
Ok(match s {
"move" => Self::Move,
"async-move" => Self::AsyncMove,
"ethereum" => Self::Ethereum,
_ => {
let supported_architectures = Self::all()
.map(|arch| format!("\"{}\"", arch))
.collect::<Vec<_>>();
let be = if supported_architectures.len() == 1 {
"is"
} else {
"are"
};
bail!(
"Unrecognized architecture {} -- only {} {} supported",
s,
supported_architectures.join(", "),
be
)
}
})
}
}
#[derive(Debug, Parser, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd)]
#[clap(author, version, about)]
pub struct BuildConfig {
#[clap(name = "dev-mode", short = 'd', long = "dev", global = true)]
pub dev_mode: bool,
#[clap(name = "test-mode", long = "test", global = true)]
pub test_mode: bool,
#[clap(name = "generate-docs", long = "doc", global = true)]
pub generate_docs: bool,
#[clap(name = "generate-abis", long = "abi", global = true)]
pub generate_abis: bool,
#[clap(long = "install-dir", parse(from_os_str), global = true)]
pub install_dir: Option<PathBuf>,
#[clap(name = "force-recompilation", long = "force", global = true)]
pub force_recompilation: bool,
#[clap(skip)]
pub additional_named_addresses: BTreeMap<String, AccountAddress>,
#[clap(long = "arch", global = true, parse(try_from_str = Architecture::try_parse_from_str))]
pub architecture: Option<Architecture>,
#[clap(long = "fetch-deps-only", global = true)]
pub fetch_deps_only: bool,
}
impl Default for BuildConfig {
fn default() -> Self {
Self {
dev_mode: false,
test_mode: false,
generate_docs: false,
generate_abis: false,
install_dir: None,
force_recompilation: false,
additional_named_addresses: BTreeMap::new(),
architecture: None,
fetch_deps_only: false,
}
}
}
#[derive(Debug, Clone, Eq, PartialEq, PartialOrd)]
pub struct ModelConfig {
pub all_files_as_targets: bool,
pub target_filter: Option<String>,
}
impl BuildConfig {
pub fn compile_package<W: Write>(self, path: &Path, writer: &mut W) -> Result<CompiledPackage> {
let resolved_graph = self.resolution_graph_for_package(path)?;
let mutx = PackageLock::lock();
let ret = BuildPlan::create(resolved_graph)?.compile(writer);
mutx.unlock();
ret
}
pub fn compile_package_no_exit<W: Write>(
self,
path: &Path,
writer: &mut W,
) -> Result<CompiledPackage> {
let resolved_graph = self.resolution_graph_for_package(path)?;
let mutx = PackageLock::lock();
let ret = BuildPlan::create(resolved_graph)?.compile_no_exit(writer);
mutx.unlock();
ret
}
#[cfg(feature = "evm-backend")]
pub fn compile_package_evm<W: Write>(self, path: &Path, writer: &mut W) -> Result<()> {
let resolved_graph = self.resolution_graph_for_package(path)?;
let mutx = PackageLock::lock();
let ret = BuildPlan::create(resolved_graph)?.compile_evm(writer);
mutx.unlock();
ret
}
pub fn move_model_for_package(
self,
path: &Path,
model_config: ModelConfig,
) -> Result<GlobalEnv> {
let resolved_graph = self.resolution_graph_for_package(path)?;
let mutx = PackageLock::lock();
let ret = ModelBuilder::create(resolved_graph, model_config).build_model();
mutx.unlock();
ret
}
pub fn download_deps_for_package(&self, path: &Path) -> Result<()> {
let path = SourcePackageLayout::try_find_root(path)?;
let toml_manifest =
self.parse_toml_manifest(path.join(SourcePackageLayout::Manifest.path()))?;
let mutx = PackageLock::lock();
let manifest = manifest_parser::parse_source_manifest(toml_manifest)?;
ResolutionGraph::download_dependency_repos(&manifest, self, &path)?;
mutx.unlock();
Ok(())
}
pub fn resolution_graph_for_package(mut self, path: &Path) -> Result<ResolvedGraph> {
if self.test_mode {
self.dev_mode = true;
}
let path = SourcePackageLayout::try_find_root(path)?;
let toml_manifest =
self.parse_toml_manifest(path.join(SourcePackageLayout::Manifest.path()))?;
let mutx = PackageLock::lock();
let manifest = manifest_parser::parse_source_manifest(toml_manifest)?;
let resolution_graph = ResolutionGraph::new(manifest, path, self)?;
let ret = resolution_graph.resolve();
mutx.unlock();
ret
}
fn parse_toml_manifest(&self, path: PathBuf) -> Result<toml::Value> {
let manifest_string = std::fs::read_to_string(path)?;
manifest_parser::parse_move_manifest_string(manifest_string)
}
}