use crate::{
cli::BuildCommand,
utils::{SWAY_BIN_HASH_SUFFIX, SWAY_BIN_ROOT_SUFFIX, SWAY_GIT_TAG},
};
use anyhow::{anyhow, bail, Result};
use forc_pkg::{self as pkg, lock, Lock, ManifestFile};
use forc_util::{default_output_directory, lock_path};
use fuel_tx::Contract;
use std::{
fs::{self, File},
path::{Path, PathBuf},
};
use sway_core::TreeType;
use tracing::{info, warn};
pub fn build(command: BuildCommand) -> Result<pkg::Compiled> {
let BuildCommand {
path,
binary_outfile,
debug_outfile,
print_finalized_asm,
print_intermediate_asm,
print_ir,
offline_mode: offline,
silent_mode,
output_directory,
minify_json_abi,
locked,
build_profile,
release,
} = command;
let key_debug: String = "debug".to_string();
let key_release: String = "release".to_string();
let mut selected_build_profile = key_debug;
if build_profile.is_none() && release {
selected_build_profile = key_release;
} else if build_profile.is_some() && release {
warn!(
"Both {} and release provided as build profile. Using release!",
build_profile.unwrap()
);
selected_build_profile = key_release;
} else if let Some(build_profile) = build_profile {
selected_build_profile = build_profile;
}
let this_dir = if let Some(ref path) = path {
PathBuf::from(path)
} else {
std::env::current_dir()?
};
let manifest = ManifestFile::from_dir(&this_dir, SWAY_GIT_TAG)?;
let mut config = &pkg::BuildConfig {
print_ir,
print_finalized_asm,
print_intermediate_asm,
silent: silent_mode,
};
if !print_ir && !print_intermediate_asm && !print_finalized_asm && !silent_mode {
config = manifest
.build_profile
.as_ref()
.and_then(|profiles| profiles.get(&selected_build_profile))
.unwrap_or_else(|| {
warn!(
"provided profile option {} is not present in the manifest file. \
Using default config.",
selected_build_profile
);
config
});
}
let lock_path = lock_path(manifest.dir());
let plan_result = pkg::BuildPlan::from_lock_file(&lock_path, SWAY_GIT_TAG);
let old_lock = plan_result
.as_ref()
.ok()
.map(|plan| Lock::from_graph(plan.graph()))
.unwrap_or_default();
let mut new_lock_cause = None;
let mut plan = plan_result.or_else(|e| -> Result<pkg::BuildPlan> {
if locked {
bail!(
"The lock file {} needs to be updated but --locked was passed to prevent this.",
lock_path.to_string_lossy()
);
}
new_lock_cause = if e.to_string().contains("No such file or directory") {
Some(anyhow!("lock file did not exist"))
} else {
Some(e)
};
let plan = pkg::BuildPlan::new(&manifest, SWAY_GIT_TAG, offline)?;
Ok(plan)
})?;
if new_lock_cause.is_none() {
let diff = plan.validate(&manifest, SWAY_GIT_TAG)?;
if !diff.added.is_empty() || !diff.removed.is_empty() {
new_lock_cause = Some(anyhow!("lock file did not match manifest `diff`"));
plan = plan.apply_pkg_diff(diff, SWAY_GIT_TAG, offline)?;
}
}
if let Some(cause) = new_lock_cause {
info!(" Creating a new `Forc.lock` file. (Cause: {})", cause);
create_new_lock(&plan, &old_lock, &manifest, &lock_path)?;
info!(" Created new lock file at {}", lock_path.display());
}
let (compiled, source_map) = pkg::build(&plan, config, SWAY_GIT_TAG)?;
if let Some(outfile) = binary_outfile {
fs::write(&outfile, &compiled.bytecode)?;
}
if let Some(outfile) = debug_outfile {
let source_map_json = serde_json::to_vec(&source_map).expect("JSON serialization failed");
fs::write(outfile, &source_map_json)?;
}
let output_dir = output_directory
.map(PathBuf::from)
.unwrap_or_else(|| default_output_directory(manifest.dir()).join(selected_build_profile));
if !output_dir.exists() {
fs::create_dir_all(&output_dir)?;
}
let bin_path = output_dir
.join(&manifest.project.name)
.with_extension("bin");
fs::write(&bin_path, &compiled.bytecode)?;
if !compiled.json_abi.is_empty() {
let json_abi_stem = format!("{}-abi", manifest.project.name);
let json_abi_path = output_dir.join(&json_abi_stem).with_extension("json");
let file = File::create(json_abi_path)?;
let res = if minify_json_abi {
serde_json::to_writer(&file, &compiled.json_abi)
} else {
serde_json::to_writer_pretty(&file, &compiled.json_abi)
};
res?;
}
info!(" Bytecode size is {} bytes.", compiled.bytecode.len());
match compiled.tree_type {
TreeType::Script => {
let bytecode_hash = format!("0x{}", fuel_crypto::Hasher::hash(&compiled.bytecode));
let hash_file_name = format!("{}{}", &manifest.project.name, SWAY_BIN_HASH_SUFFIX);
let hash_path = output_dir.join(hash_file_name);
fs::write(hash_path, &bytecode_hash)?;
info!(" Script bytecode hash: {}", bytecode_hash);
}
TreeType::Predicate => {
let root = format!("0x{}", Contract::root_from_code(&compiled.bytecode));
let root_file_name = format!("{}{}", &manifest.project.name, SWAY_BIN_ROOT_SUFFIX);
let root_path = output_dir.join(root_file_name);
fs::write(root_path, &root)?;
info!(" Predicate root: {}", root);
}
_ => (),
}
Ok(compiled)
}
fn create_new_lock(
plan: &pkg::BuildPlan,
old_lock: &Lock,
manifest: &ManifestFile,
lock_path: &Path,
) -> Result<()> {
let lock = Lock::from_graph(plan.graph());
let diff = lock.diff(old_lock);
lock::print_diff(&manifest.project.name, &diff);
let string = toml::ser::to_string_pretty(&lock)
.map_err(|e| anyhow!("failed to serialize lock file: {}", e))?;
fs::write(&lock_path, &string).map_err(|e| anyhow!("failed to write lock file: {}", e))?;
Ok(())
}