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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
// Copyright (c) The Diem Core Contributors
// Copyright (c) The Move Contributors
// SPDX-License-Identifier: Apache-2.0

use crate::{
    compilation::compiled_package::CompiledPackage, resolution::resolution_graph::ResolvedGraph,
    source_package::parsed_manifest::PackageName,
};
use anyhow::Result;
use move_compiler::{
    compiled_unit::AnnotatedCompiledUnit,
    diagnostics::{report_diagnostics_to_color_buffer, report_warnings, FilesSourceText},
    Compiler,
};
use petgraph::algo::toposort;
use std::{collections::BTreeSet, io::Write, path::Path};

use super::package_layout::CompiledPackageLayout;

#[cfg(feature = "evm-backend")]
use {
    colored::Colorize,
    move_to_yul::{options::Options as MoveToYulOptions, run_to_yul},
    std::{fs, io},
    termcolor::Buffer,
    walkdir::WalkDir,
};

#[derive(Debug, Clone)]
pub struct BuildPlan {
    root: PackageName,
    sorted_deps: Vec<PackageName>,
    resolution_graph: ResolvedGraph,
}

#[cfg(feature = "evm-backend")]
fn should_recompile(
    source_paths: impl IntoIterator<Item = impl AsRef<Path>>,
    output_paths: impl IntoIterator<Item = impl AsRef<Path>>,
) -> Result<bool> {
    let mut earliest_output_mod_time = None;
    for output_path in output_paths.into_iter() {
        match fs::metadata(output_path) {
            Ok(meta) => {
                let mod_time = meta
                    .modified()
                    .expect("failed to get file modification time");

                match &mut earliest_output_mod_time {
                    None => earliest_output_mod_time = Some(mod_time),
                    Some(earliest_mod_time) => *earliest_mod_time = mod_time,
                }
            }
            Err(err) => {
                if let io::ErrorKind::NotFound = err.kind() {
                    return Ok(true);
                }
                return Err(err.into());
            }
        }
    }

    let earliest_output_mod_time = match earliest_output_mod_time {
        Some(mod_time) => mod_time,
        None => panic!("no output files given -- this should not happen"),
    };

    for source_path in source_paths.into_iter() {
        for entry in WalkDir::new(source_path) {
            let entry = entry?;

            let mod_time = entry
                .metadata()?
                .modified()
                .expect("failed to get file modification time");

            if mod_time > earliest_output_mod_time {
                return Ok(true);
            }
        }
    }

    Ok(false)
}

impl BuildPlan {
    pub fn create(resolution_graph: ResolvedGraph) -> Result<Self> {
        let mut sorted_deps = match toposort(&resolution_graph.graph, None) {
            Ok(nodes) => nodes,
            Err(err) => {
                // Is a DAG after resolution otherwise an error should be raised from that.
                anyhow::bail!("IPE: Cyclic dependency found after resolution {:?}", err)
            }
        };

        sorted_deps.reverse();

        Ok(Self {
            root: resolution_graph.root_package.package.name,
            sorted_deps,
            resolution_graph,
        })
    }

    /// Compilation results in the process exit upon warning/failure
    pub fn compile<W: Write>(&self, writer: &mut W) -> Result<CompiledPackage> {
        self.compile_with_driver(writer, |compiler| compiler.build_and_report())
    }

    /// Compilation process does not exit even if warnings/failures are encountered
    pub fn compile_no_exit<W: Write>(&self, writer: &mut W) -> Result<CompiledPackage> {
        self.compile_with_driver(writer, |compiler| {
            let (files, units_res) = compiler.build()?;
            match units_res {
                Ok((units, warning_diags)) => {
                    report_warnings(&files, warning_diags);
                    Ok((files, units))
                }
                Err(error_diags) => {
                    assert!(!error_diags.is_empty());
                    let diags_buf = report_diagnostics_to_color_buffer(&files, error_diags);
                    if let Err(err) = std::io::stdout().write_all(&diags_buf) {
                        anyhow::bail!("Cannot output compiler diagnostics: {}", err);
                    }
                    anyhow::bail!("Compilation error");
                }
            }
        })
    }

    pub fn compile_with_driver<W: Write>(
        &self,
        writer: &mut W,
        mut compiler_driver: impl FnMut(
            Compiler,
        )
            -> anyhow::Result<(FilesSourceText, Vec<AnnotatedCompiledUnit>)>,
    ) -> Result<CompiledPackage> {
        let root_package = &self.resolution_graph.package_table[&self.root];
        let project_root = match &self.resolution_graph.build_options.install_dir {
            Some(under_path) => under_path.clone(),
            None => self.resolution_graph.root_package_path.clone(),
        };
        let immediate_dependencies_names =
            root_package.immediate_dependencies(&self.resolution_graph);
        let transitive_dependencies = root_package
            .transitive_dependencies(&self.resolution_graph)
            .into_iter()
            .map(|package_name| {
                let dep_package = self
                    .resolution_graph
                    .package_table
                    .get(&package_name)
                    .unwrap();
                let dep_source_paths = dep_package
                    .get_sources(&self.resolution_graph.build_options)
                    .unwrap();
                (
                    package_name,
                    immediate_dependencies_names.contains(&package_name),
                    dep_source_paths,
                    &dep_package.resolution_table,
                )
            })
            .collect();

        let compiled = CompiledPackage::build_all(
            writer,
            &project_root,
            root_package.clone(),
            transitive_dependencies,
            &self.resolution_graph,
            &mut compiler_driver,
        )?;

        Self::clean(
            &project_root.join(CompiledPackageLayout::Root.path()),
            self.sorted_deps.iter().copied().collect(),
        )?;
        Ok(compiled)
    }

    #[cfg(feature = "evm-backend")]
    pub fn compile_evm<W: Write>(&self, writer: &mut W) -> Result<()> {
        let root_package = &self.resolution_graph.package_table[&self.root];
        let project_root = match &self.resolution_graph.build_options.install_dir {
            Some(under_path) => under_path.clone(),
            None => self.resolution_graph.root_package_path.clone(),
        };
        let build_root_path = project_root
            .join(CompiledPackageLayout::Root.path())
            .join("evm");

        // Step 1: Compile Move into Yul
        //   Step 1a: Gather command line arguments for move-to-yul
        let dependencies = self
            .resolution_graph
            .package_table
            .iter()
            .filter_map(|(name, package)| {
                if name == &root_package.source_package.package.name {
                    None
                } else {
                    Some(format!(
                        "{}/sources",
                        package.package_path.to_string_lossy()
                    ))
                }
            })
            .collect::<Vec<_>>();

        let sources = vec![format!(
            "{}/sources",
            root_package.package_path.to_string_lossy()
        )];

        let bytecode_output = format!(
            "{}/{}.bin",
            build_root_path.to_string_lossy(),
            root_package.source_package.package.name
        );

        let yul_output = format!(
            "{}/{}.yul",
            build_root_path.to_string_lossy(),
            root_package.source_package.package.name
        );
        let abi_output = format!(
            "{}/{}.abi.json",
            build_root_path.to_string_lossy(),
            root_package.source_package.package.name
        );

        let output_paths = [&bytecode_output, &yul_output, &abi_output];

        let package_names = self
            .resolution_graph
            .package_table
            .iter()
            .map(|(name, _)| name.to_string())
            .collect::<Vec<_>>()
            .join(", ");

        let named_address_mapping = self
            .resolution_graph
            .extract_named_address_mapping()
            .map(|(name, addr)| format!("{}={}", name.as_str(), addr))
            .collect();

        //   Step 1b: Check if a fresh compilation is really needed. Only recompile if either
        //              a) Some of the output artifacts are missing
        //              b) Any source files have been modified since last compile
        let manifests = self
            .resolution_graph
            .package_table
            .iter()
            .map(|(_name, package)| format!("{}/Move.toml", package.package_path.to_string_lossy()))
            .collect::<Vec<_>>();

        let all_sources = manifests
            .iter()
            .chain(sources.iter())
            .chain(dependencies.iter());

        if !should_recompile(all_sources, output_paths)? {
            writeln!(writer, "{} {}", "CACHED".bold().green(), package_names)?;
            return Ok(());
        }

        //   Step 1c: Call move-to-yul
        writeln!(
            writer,
            "{} {} to Yul",
            "COMPILING".bold().green(),
            package_names
        )?;

        if let Err(err) = std::fs::remove_dir_all(&build_root_path) {
            match err.kind() {
                io::ErrorKind::NotFound => (),
                _ => {
                    writeln!(
                        writer,
                        "{} Failed to remove build dir {}: {}",
                        "ERROR".bold().red(),
                        build_root_path.to_string_lossy(),
                        err,
                    )?;

                    return Err(err.into());
                }
            }
        }
        if let Err(err) = std::fs::create_dir_all(&build_root_path) {
            writeln!(
                writer,
                "{} Failed to create build dir {}",
                "ERROR".bold().red(),
                build_root_path.to_string_lossy(),
            )?;

            return Err(err.into());
        }

        // TODO: should inherit color settings from current shell
        let mut error_buffer = Buffer::ansi();
        if let Err(err) = run_to_yul(
            &mut error_buffer,
            MoveToYulOptions {
                dependencies,
                named_address_mapping,
                sources,
                output: yul_output.clone(),
                abi_output,

                ..MoveToYulOptions::default()
            },
        ) {
            writeln!(
                writer,
                "{} Failed to compile Move into Yul {}",
                err,
                "ERROR".bold().red()
            )?;

            writeln!(
                writer,
                "{}",
                std::str::from_utf8(error_buffer.as_slice()).unwrap()
            )?;

            let mut source = err.source();
            while let Some(s) = source {
                writeln!(writer, "{}", s)?;
                source = s.source();
            }

            return Err(err);
        }

        // Step 2: Compile Yul into bytecode using solc

        let yul_source = match std::fs::read_to_string(&yul_output) {
            Ok(yul_source) => yul_source,
            Err(err) => {
                writeln!(
                    writer,
                    "{} Failed to read from {}",
                    "ERROR".bold().red(),
                    yul_output,
                )?;

                return Err(err.into());
            }
        };

        writeln!(
            writer,
            "{} EVM bytecote from Yul",
            "GENERATING".bold().green(),
        )?;

        match evm_exec_utils::compile::solc_yul(&yul_source, false) {
            Ok((bytecode, _)) => {
                let mut bytecode_file = match std::fs::File::create(&bytecode_output) {
                    Ok(file) => file,
                    Err(err) => {
                        writeln!(
                            writer,
                            "{} Failed to create bytecode output {}",
                            "ERROR".bold().red(),
                            bytecode_output,
                        )?;

                        return Err(err.into());
                    }
                };

                if let Err(err) = bytecode_file.write_all(hex::encode(&bytecode).as_bytes()) {
                    writeln!(
                        writer,
                        "{} Failed to write bytecode to file {}",
                        "ERROR".bold().red(),
                        bytecode_output,
                    )?;

                    return Err(err.into());
                }
            }
            Err(err) => {
                writeln!(
                    writer,
                    "{} Failed to generate EVM bytecote",
                    "ERROR".bold().red()
                )?;

                let mut source = err.source();
                while let Some(s) = source {
                    writeln!(writer, "{}", s)?;
                    source = s.source();
                }

                return Err(err);
            }
        }

        Ok(())
    }

    // Clean out old packages that are no longer used, or no longer used under the current
    // compilation flags
    fn clean(build_root: &Path, keep_paths: BTreeSet<PackageName>) -> Result<()> {
        for dir in std::fs::read_dir(build_root)? {
            let path = dir?.path();
            if !keep_paths.iter().any(|name| path.ends_with(name.as_str())) {
                std::fs::remove_dir_all(&path)?;
            }
        }
        Ok(())
    }
}