mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-22 13:38:43 +00:00
479 lines
16 KiB
Rust
479 lines
16 KiB
Rust
use std::{
|
|
ffi::OsString,
|
|
fs,
|
|
mem::take,
|
|
path::{Path, PathBuf},
|
|
process::{ExitCode, Termination},
|
|
sync::Arc,
|
|
time::{Duration, Instant},
|
|
};
|
|
|
|
use clap::{builder::PossibleValue, AppSettings, Parser};
|
|
use log::{debug, error, info, warn, LevelFilter};
|
|
use miette::{miette, Result, WrapErr};
|
|
use semver::VersionReq;
|
|
use simplelog::{ColorChoice, ConfigBuilder, TermLogger, TerminalMode};
|
|
use tokio::{runtime::Runtime, task::block_in_place};
|
|
|
|
use cargo_binstall::{binstall, *};
|
|
|
|
#[cfg(feature = "mimalloc")]
|
|
#[global_allocator]
|
|
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|
|
|
#[derive(Debug, Parser)]
|
|
#[clap(version, about = "Install a Rust binary... from binaries!", setting = AppSettings::ArgRequiredElseHelp)]
|
|
struct Options {
|
|
/// Packages to install.
|
|
///
|
|
/// Syntax: crate[@version]
|
|
///
|
|
/// Each value is either a crate name alone, or a crate name followed by @ and the version to
|
|
/// install. The version syntax is as with the --version option.
|
|
///
|
|
/// When multiple names are provided, the --version option and any override options are
|
|
/// unavailable due to ambiguity.
|
|
///
|
|
/// If duplicate names are provided, the last one (and their version requirement)
|
|
/// is kept.
|
|
#[clap(help_heading = "Package selection", value_name = "crate[@version]")]
|
|
crate_names: Vec<CrateName>,
|
|
|
|
/// Package version to install.
|
|
///
|
|
/// Takes either an exact semver version or a semver version requirement expression, which will
|
|
/// be resolved to the highest matching version available.
|
|
///
|
|
/// Cannot be used when multiple packages are installed at once, use the attached version
|
|
/// syntax in that case.
|
|
#[clap(help_heading = "Package selection", long = "version", parse(try_from_str = parse_version))]
|
|
version_req: Option<VersionReq>,
|
|
|
|
/// Override binary target set.
|
|
///
|
|
/// Binstall is able to look for binaries for several targets, installing the first one it finds
|
|
/// in the order the targets were given. For example, on a 64-bit glibc Linux distribution, the
|
|
/// default is to look first for a `x86_64-unknown-linux-gnu` binary, then for a
|
|
/// `x86_64-unknown-linux-musl` binary. However, on a musl system, the gnu version will not be
|
|
/// considered.
|
|
///
|
|
/// This option takes a comma-separated list of target triples, which will be tried in order.
|
|
/// They override the default list, which is detected automatically from the current platform.
|
|
///
|
|
/// If falling back to installing from source, the first target will be used.
|
|
#[clap(
|
|
help_heading = "Package selection",
|
|
alias = "target",
|
|
long,
|
|
value_name = "TRIPLE"
|
|
)]
|
|
targets: Option<String>,
|
|
|
|
/// Override Cargo.toml package manifest path.
|
|
///
|
|
/// This skips searching crates.io for a manifest and uses the specified path directly, useful
|
|
/// for debugging and when adding Binstall support. This may be either the path to the folder
|
|
/// containing a Cargo.toml file, or the Cargo.toml file itself.
|
|
#[clap(help_heading = "Overrides", long)]
|
|
manifest_path: Option<PathBuf>,
|
|
|
|
/// Override Cargo.toml package manifest bin-dir.
|
|
#[clap(help_heading = "Overrides", long)]
|
|
bin_dir: Option<String>,
|
|
|
|
/// Override Cargo.toml package manifest pkg-fmt.
|
|
#[clap(help_heading = "Overrides", long)]
|
|
pkg_fmt: Option<PkgFmt>,
|
|
|
|
/// Override Cargo.toml package manifest pkg-url.
|
|
#[clap(help_heading = "Overrides", long)]
|
|
pkg_url: Option<String>,
|
|
|
|
/// Disable symlinking / versioned updates.
|
|
///
|
|
/// By default, Binstall will install a binary named `<name>-<version>` in the install path, and
|
|
/// either symlink or copy it to (depending on platform) the plain binary name. This makes it
|
|
/// possible to have multiple versions of the same binary, for example for testing or rollback.
|
|
///
|
|
/// Pass this flag to disable this behavior.
|
|
#[clap(help_heading = "Options", long)]
|
|
no_symlinks: bool,
|
|
|
|
/// Dry run, fetch and show changes without installing binaries.
|
|
#[clap(help_heading = "Options", long)]
|
|
dry_run: bool,
|
|
|
|
/// Disable interactive mode / confirmation prompts.
|
|
#[clap(help_heading = "Options", long)]
|
|
no_confirm: bool,
|
|
|
|
/// Do not cleanup temporary files.
|
|
#[clap(help_heading = "Options", long)]
|
|
no_cleanup: bool,
|
|
|
|
/// Install binaries in a custom location.
|
|
///
|
|
/// By default, binaries are installed to the global location `$CARGO_HOME/bin`, and global
|
|
/// metadata files are updated with the package information. Specifying another path here
|
|
/// switches over to a "local" install, where binaries are installed at the path given, and the
|
|
/// global metadata files are not updated.
|
|
#[clap(help_heading = "Options", long)]
|
|
install_path: Option<PathBuf>,
|
|
|
|
/// Enforce downloads over secure transports only.
|
|
///
|
|
/// Insecure HTTP downloads will be removed completely in the future; in the meantime this
|
|
/// option forces a fail when the remote endpoint uses plaintext HTTP or insecure TLS suites.
|
|
///
|
|
/// Without this option, plain HTTP will warn.
|
|
///
|
|
/// Implies `--min-tls-version=1.2`.
|
|
#[clap(help_heading = "Options", long)]
|
|
secure: bool,
|
|
|
|
/// Force a crate to be installed even if it is already installed.
|
|
#[clap(help_heading = "Options", long)]
|
|
force: bool,
|
|
|
|
/// Require a minimum TLS version from remote endpoints.
|
|
///
|
|
/// The default is not to require any minimum TLS version, and use the negotiated highest
|
|
/// version available to both this client and the remote server.
|
|
#[clap(help_heading = "Options", long, arg_enum, value_name = "VERSION")]
|
|
min_tls_version: Option<TLSVersion>,
|
|
|
|
/// Print help information
|
|
#[clap(help_heading = "Meta", short, long)]
|
|
help: bool,
|
|
|
|
/// Print version information
|
|
#[clap(help_heading = "Meta", short = 'V')]
|
|
version: bool,
|
|
|
|
/// Utility log level
|
|
///
|
|
/// Set to `trace` to print very low priority, often extremely
|
|
/// verbose information.
|
|
///
|
|
/// Set to `debug` when submitting a bug report.
|
|
///
|
|
/// Set to `info` to only print useful information.
|
|
///
|
|
/// Set to `warn` to only print on hazardous situations.
|
|
///
|
|
/// Set to `error` to only print serious errors.
|
|
///
|
|
/// Set to `off` to disable logging completely, this will also
|
|
/// disable output from `cargo-install`.
|
|
#[clap(
|
|
help_heading = "Meta",
|
|
long,
|
|
default_value = "info",
|
|
value_name = "LEVEL",
|
|
possible_values = [
|
|
PossibleValue::new("trace").help(
|
|
"Set to `trace` to print very low priority, often extremely verbose information."
|
|
),
|
|
PossibleValue::new("debug").help("Set to debug when submitting a bug report."),
|
|
PossibleValue::new("info").help("Set to info to only print useful information."),
|
|
PossibleValue::new("warn").help("Set to warn to only print on hazardous situations."),
|
|
PossibleValue::new("error").help("Set to error to only print serious errors."),
|
|
PossibleValue::new("off").help(
|
|
"Set to off to disable logging completely, this will also disable output from `cargo-install`."
|
|
),
|
|
]
|
|
)]
|
|
log_level: LevelFilter,
|
|
|
|
/// Equivalent to setting `log_level` to `off`.
|
|
///
|
|
/// This would override the `log_level`.
|
|
#[clap(help_heading = "Meta", short, long)]
|
|
quiet: bool,
|
|
}
|
|
|
|
enum MainExit {
|
|
Success(Duration),
|
|
Error(BinstallError),
|
|
Report(miette::Report),
|
|
}
|
|
|
|
impl Termination for MainExit {
|
|
fn report(self) -> ExitCode {
|
|
match self {
|
|
Self::Success(spent) => {
|
|
info!("Installation completed in {spent:?}");
|
|
ExitCode::SUCCESS
|
|
}
|
|
Self::Error(err) => err.report(),
|
|
Self::Report(err) => {
|
|
error!("Fatal error:");
|
|
eprintln!("{err:?}");
|
|
ExitCode::from(16)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() -> MainExit {
|
|
// Create jobserver client
|
|
let jobserver_client = LazyJobserverClient::new();
|
|
|
|
let start = Instant::now();
|
|
|
|
let rt = Runtime::new().unwrap();
|
|
let handle = AutoAbortJoinHandle::new(rt.spawn(entry(jobserver_client)));
|
|
let result = rt.block_on(cancel_on_user_sig_term(handle));
|
|
drop(rt);
|
|
|
|
let done = start.elapsed();
|
|
debug!("run time: {done:?}");
|
|
|
|
result.map_or_else(MainExit::Error, |res| {
|
|
res.map(|()| MainExit::Success(done)).unwrap_or_else(|err| {
|
|
err.downcast::<BinstallError>()
|
|
.map(MainExit::Error)
|
|
.unwrap_or_else(MainExit::Report)
|
|
})
|
|
})
|
|
}
|
|
|
|
async fn entry(jobserver_client: LazyJobserverClient) -> Result<()> {
|
|
// Filter extraneous arg when invoked by cargo
|
|
// `cargo run -- --help` gives ["target/debug/cargo-binstall", "--help"]
|
|
// `cargo binstall --help` gives ["/home/ryan/.cargo/bin/cargo-binstall", "binstall", "--help"]
|
|
let mut args: Vec<OsString> = std::env::args_os().collect();
|
|
let args = if args.len() > 1 && args[1] == "binstall" {
|
|
// Equivalent to
|
|
//
|
|
// args.remove(1);
|
|
//
|
|
// But is O(1)
|
|
args.swap(0, 1);
|
|
let mut args = args.into_iter();
|
|
drop(args.next().unwrap());
|
|
|
|
args
|
|
} else {
|
|
args.into_iter()
|
|
};
|
|
|
|
// Load options
|
|
let mut opts = Options::parse_from(args);
|
|
if opts.quiet {
|
|
opts.log_level = LevelFilter::Off;
|
|
}
|
|
|
|
let crate_names = take(&mut opts.crate_names);
|
|
if crate_names.len() > 1 {
|
|
let option = if opts.version_req.is_some() {
|
|
"version"
|
|
} else if opts.manifest_path.is_some() {
|
|
"manifest-path"
|
|
} else if opts.bin_dir.is_some() {
|
|
"bin-dir"
|
|
} else if opts.pkg_fmt.is_some() {
|
|
"pkg-fmt"
|
|
} else if opts.pkg_url.is_some() {
|
|
"pkg-url"
|
|
} else {
|
|
""
|
|
};
|
|
|
|
if !option.is_empty() {
|
|
return Err(BinstallError::OverrideOptionUsedWithMultiInstall { option }.into());
|
|
}
|
|
}
|
|
|
|
let cli_overrides = PkgOverride {
|
|
pkg_url: opts.pkg_url.take(),
|
|
pkg_fmt: opts.pkg_fmt.take(),
|
|
bin_dir: opts.bin_dir.take(),
|
|
};
|
|
|
|
// Launch target detection
|
|
let desired_targets = get_desired_targets(&opts.targets);
|
|
|
|
// Initialize reqwest client
|
|
let client = create_reqwest_client(opts.secure, opts.min_tls_version.map(|v| v.into()))?;
|
|
|
|
// Build crates.io api client
|
|
let crates_io_api_client = crates_io_api::AsyncClient::new(
|
|
"cargo-binstall (https://github.com/ryankurte/cargo-binstall)",
|
|
Duration::from_millis(100),
|
|
)
|
|
.expect("bug: invalid user agent");
|
|
|
|
// Setup logging
|
|
let mut log_config = ConfigBuilder::new();
|
|
log_config.add_filter_ignore("hyper".to_string());
|
|
log_config.add_filter_ignore("reqwest".to_string());
|
|
log_config.add_filter_ignore("rustls".to_string());
|
|
log_config.set_location_level(LevelFilter::Off);
|
|
TermLogger::init(
|
|
opts.log_level,
|
|
log_config.build(),
|
|
TerminalMode::Mixed,
|
|
ColorChoice::Auto,
|
|
)
|
|
.unwrap();
|
|
|
|
// Initialize UI thread
|
|
let mut uithread = UIThread::new(!opts.no_confirm);
|
|
|
|
let (install_path, metadata, temp_dir) = block_in_place(|| -> Result<_> {
|
|
// Compute install directory
|
|
let (install_path, custom_install_path) = get_install_path(opts.install_path.as_deref());
|
|
let install_path = install_path.ok_or_else(|| {
|
|
error!("No viable install path found of specified, try `--install-path`");
|
|
miette!("No install path found or specified")
|
|
})?;
|
|
fs::create_dir_all(&install_path).map_err(BinstallError::Io)?;
|
|
debug!("Using install path: {}", install_path.display());
|
|
|
|
// Load metadata
|
|
let metadata = if !custom_install_path {
|
|
debug!("Reading binstall/crates-v1.json");
|
|
Some(metafiles::binstall_v1::Records::load()?)
|
|
} else {
|
|
None
|
|
};
|
|
|
|
// Create a temporary directory for downloads etc.
|
|
//
|
|
// Put all binaries to a temporary directory under `dst` first, catching
|
|
// some failure modes (e.g., out of space) before touching the existing
|
|
// binaries. This directory will get cleaned up via RAII.
|
|
let temp_dir = tempfile::Builder::new()
|
|
.prefix("cargo-binstall")
|
|
.tempdir_in(&install_path)
|
|
.map_err(BinstallError::from)
|
|
.wrap_err("Creating a temporary directory failed.")?;
|
|
|
|
Ok((install_path, metadata, temp_dir))
|
|
})?;
|
|
|
|
// Remove installed crates
|
|
let crate_names = CrateName::dedup(crate_names).filter(|crate_name| {
|
|
if opts.force {
|
|
true
|
|
} else if let Some(records) = &metadata {
|
|
!records.contains(&crate_name.name)
|
|
} else {
|
|
true
|
|
}
|
|
});
|
|
|
|
let temp_dir_path: Arc<Path> = Arc::from(temp_dir.path());
|
|
|
|
// Create binstall_opts
|
|
let binstall_opts = Arc::new(binstall::Options {
|
|
no_symlinks: opts.no_symlinks,
|
|
dry_run: opts.dry_run,
|
|
force: opts.force,
|
|
version_req: opts.version_req.take(),
|
|
manifest_path: opts.manifest_path.take(),
|
|
cli_overrides,
|
|
desired_targets,
|
|
quiet: opts.log_level == LevelFilter::Off,
|
|
});
|
|
|
|
let tasks: Vec<_> = if !opts.dry_run && !opts.no_confirm {
|
|
// Resolve crates
|
|
let tasks: Vec<_> = crate_names
|
|
.into_iter()
|
|
.map(|crate_name| {
|
|
AutoAbortJoinHandle::spawn(binstall::resolve(
|
|
binstall_opts.clone(),
|
|
crate_name,
|
|
temp_dir_path.clone(),
|
|
install_path.clone(),
|
|
client.clone(),
|
|
crates_io_api_client.clone(),
|
|
))
|
|
})
|
|
.collect();
|
|
|
|
// Confirm
|
|
let mut resolutions = Vec::with_capacity(tasks.len());
|
|
for task in tasks {
|
|
resolutions.push(task.await??);
|
|
}
|
|
|
|
uithread.confirm().await?;
|
|
|
|
// Install
|
|
resolutions
|
|
.into_iter()
|
|
.map(|resolution| {
|
|
AutoAbortJoinHandle::spawn(binstall::install(
|
|
resolution,
|
|
binstall_opts.clone(),
|
|
jobserver_client.clone(),
|
|
))
|
|
})
|
|
.collect()
|
|
} else {
|
|
// Resolve crates and install without confirmation
|
|
crate_names
|
|
.into_iter()
|
|
.map(|crate_name| {
|
|
let opts = binstall_opts.clone();
|
|
let temp_dir_path = temp_dir_path.clone();
|
|
let jobserver_client = jobserver_client.clone();
|
|
let client = client.clone();
|
|
let crates_io_api_client = crates_io_api_client.clone();
|
|
let install_path = install_path.clone();
|
|
|
|
AutoAbortJoinHandle::spawn(async move {
|
|
let resolution = binstall::resolve(
|
|
opts.clone(),
|
|
crate_name,
|
|
temp_dir_path,
|
|
install_path,
|
|
client,
|
|
crates_io_api_client,
|
|
)
|
|
.await?;
|
|
|
|
binstall::install(resolution, opts, jobserver_client).await
|
|
})
|
|
})
|
|
.collect()
|
|
};
|
|
|
|
let mut metadata_vec = Vec::with_capacity(tasks.len());
|
|
for task in tasks {
|
|
if let Some(metadata) = task.await?? {
|
|
metadata_vec.push(metadata);
|
|
}
|
|
}
|
|
|
|
block_in_place(|| {
|
|
if let Some(mut records) = metadata {
|
|
// If using standardised install path,
|
|
// then create_dir_all(&install_path) would also
|
|
// create .cargo.
|
|
|
|
debug!("Writing .crates.toml");
|
|
metafiles::v1::CratesToml::append(metadata_vec.iter())?;
|
|
|
|
debug!("Writing binstall/crates-v1.json");
|
|
for metadata in metadata_vec {
|
|
records.replace(metadata);
|
|
}
|
|
records.overwrite()?;
|
|
}
|
|
|
|
if opts.no_cleanup {
|
|
// Consume temp_dir without removing it from fs.
|
|
temp_dir.into_path();
|
|
} else {
|
|
temp_dir.close().unwrap_or_else(|err| {
|
|
warn!("Failed to clean up some resources: {err}");
|
|
});
|
|
}
|
|
|
|
Ok(())
|
|
})
|
|
}
|