juliaup 1.20.1

Julia installer and version multiplexer
Documentation
use crate::cli_styles;
use clap::{Parser, ValueEnum};

/// Shell options for completions
#[derive(Clone, ValueEnum)]
pub enum CompletionShell {
    Bash,
    Elvish,
    Fish,
    Nushell,
    PowerShell,
    Zsh,
}

#[derive(Parser)]
#[clap(name = "Juliaup", version)]
#[command(
    styles = cli_styles::get_styles(),
    after_help = "To launch a specific Julia version, use `julia +{channel}` e.g. `julia +1.6`.
Entering just `julia` uses the default channel set via `juliaup default`."
)]
/// The Julia Version Manager
pub enum Juliaup {
    /// Set the default Julia version
    Default { channel: String },
    /// Add a specific Julia version or channel to your system. Access via `julia +{channel}` e.g. `julia +1.6`
    Add { channel: String },
    /// Link an existing Julia binary or channel to a custom channel name
    Link {
        /// Name of the new channel to create
        channel: String,
        /// Path to Julia binary, or +{channel} to create an alias
        target: String,
        /// Additional arguments for the Julia binary
        args: Vec<String>,
    },
    /// List all available channels
    #[clap(alias = "ls")]
    List {},
    #[clap(subcommand, name = "override")]
    OverrideSubCmd(OverrideSubCmd),
    #[clap(alias = "up")]
    /// Update all or a specific channel to the latest Julia version
    Update { channel: Option<String> },
    #[clap(alias = "rm")]
    /// Remove a Julia version from your system
    Remove { channel: String },
    #[clap(alias = "st")]
    /// Show all installed Julia versions
    Status {},
    /// Garbage collect uninstalled Julia versions
    Gc {
        #[clap(long)]
        prune_linked: bool,
    },
    #[clap(subcommand, name = "config")]
    /// Juliaup configuration
    Config(ConfigSubCmd),
    #[clap(hide = true)]
    Api { command: String },
    #[clap(name = "46029ef5-0b73-4a71-bff3-d0d05de42aac", hide = true)]
    InitialSetupFromLauncher {},
    #[clap(name = "0cf1528f-0b15-46b1-9ac9-e5bf5ccccbcf", hide = true)]
    UpdateVersionDb {},
    #[clap(name = "info", hide = true)]
    Info {},
    #[clap(subcommand, name = "self")]
    SelfSubCmd(SelfSubCmd),
    /// Generate tab-completion scripts for your shell
    Completions {
        #[arg(value_enum, value_name = "SHELL")]
        shell: CompletionShell,
    },
    #[clap(name = "_list-channels", hide = true)]
    /// List installed channel names (used internally for shell completions)
    ListChannels {},
    #[clap(name = "_post-update", hide = true)]
    /// Run post-update tasks (called by the old binary after extracting the new one)
    PostUpdate {},
    // This is used for the cron jobs that we create. By using this UUID for the command
    // We can identify the cron jobs that were created by juliaup for uninstall purposes
    #[cfg(feature = "selfupdate")]
    #[clap(name = "4c79c12db1d34bbbab1f6c6f838f423f", hide = true)]
    SecretSelfUpdate {},
}

#[derive(Parser)]
#[command(styles = cli_styles::get_styles())]
/// Manage directory overrides
pub enum OverrideSubCmd {
    Status {},
    Set {
        channel: String,
        #[clap(long, short)]
        path: Option<String>,
    },
    Unset {
        #[clap(long, short)]
        nonexistent: bool,
        #[clap(long, short)]
        path: Option<String>,
    },
}

#[derive(Debug, ValueEnum, Clone)]
pub enum JuliaupChannel {
    #[clap(name = "release")]
    Release,
    #[clap(name = "releasepreview")]
    ReleasePreview,
    #[clap(name = "dev")]
    Dev,
}

impl JuliaupChannel {
    pub fn to_lowercase(&self) -> &str {
        match self {
            JuliaupChannel::Release => "release",
            JuliaupChannel::ReleasePreview => "releasepreview",
            JuliaupChannel::Dev => "dev",
        }
    }
}

#[derive(Parser)]
#[command(styles = cli_styles::get_styles())]
/// Manage this juliaup installation
pub enum SelfSubCmd {
    #[cfg(not(feature = "selfupdate"))]
    #[clap(alias = "up")]
    /// Update the Julia versions database
    Update {},
    #[cfg(feature = "selfupdate")]
    #[clap(alias = "up")]
    /// Update the Julia versions database and juliaup itself
    Update {},
    #[cfg(feature = "selfupdate")]
    /// Configure the channel to use for juliaup updates. Leave CHANNEL blank to see current channel.
    Channel {
        #[arg(value_enum)]
        channel: Option<JuliaupChannel>,
    },
    #[cfg(feature = "selfupdate")]
    /// Uninstall this version of juliaup from the system
    Uninstall {},
    #[cfg(not(feature = "selfupdate"))]
    /// Uninstall this version of juliaup from the system (UNAVAILABLE)
    Uninstall {},
}

#[derive(Parser)]
#[command(styles = cli_styles::get_styles())]
pub enum ConfigSubCmd {
    #[cfg(not(windows))]
    #[clap(name = "channelsymlinks")]
    /// Create a separate symlink per channel
    ChannelSymlinks {
        /// New Value
        value: Option<bool>,
    },
    #[cfg(feature = "selfupdate")]
    #[clap(name = "backgroundselfupdateinterval")]
    /// The time between automatic background updates of Juliaup in minutes, use 0 to disable.
    BackgroundSelfupdateInterval {
        /// New value
        value: Option<i64>,
    },
    #[cfg(feature = "selfupdate")]
    #[clap(name = "startupselfupdateinterval")]
    /// The time between automatic updates at Julia startup of Juliaup in minutes, use 0 to disable.
    StartupSelfupdateInterval {
        /// New value
        value: Option<i64>,
    },
    #[cfg(feature = "selfupdate")]
    #[clap(name = "modifypath")]
    /// Add the Julia binaries to your PATH by manipulating various shell startup scripts.
    ModifyPath {
        /// New value
        value: Option<bool>,
    },
    /// The time between automatic updates of the versions database in minutes, use 0 to disable.
    #[clap(name = "versionsdbupdateinterval")]
    VersionsDbUpdateInterval {
        /// New value
        value: Option<i64>,
    },
    /// Whether to automatically install Julia channels requested from the command line.
    /// When set to true, 'julia +channel' will automatically install missing channels.
    /// When false, users will not be prompted and shown an error.
    /// When default (unset), users will be prompted interactively or shown an error in non-interactive mode.
    #[clap(name = "autoinstallchannels")]
    AutoInstallChannels {
        /// New value: true, false, or default
        value: Option<String>,
    },
    /// Enable Julia version selection from manifests
    #[clap(name = "manifestversiondetect")]
    ManifestVersionDetect {
        /// New value
        value: Option<bool>,
    },
}