ktsctl 3.1.0

CLI controler of kak-tree-sitter
use std::path::PathBuf;

use clap::{Parser, Subcommand};

#[derive(Debug, Parser)]
#[clap(
  author = "Dimitri Sabadie <hadronized@strongly-typed-thoughts.net>",
  name = "ktsctl",
  version = env!("VERSION"),
  about = "CLI controler for kak-tree-sitter"
)]
pub struct Cli {
  #[clap(long)]
  pub verbose: bool,

  #[clap(subcommand)]
  pub cmd: Cmd,

  /// Specify a custom user-config.
  #[clap(long)]
  pub config: Option<PathBuf>,
}

#[derive(Debug, Subcommand)]
pub enum Cmd {
  /// Fetch resources.
  Fetch {
    /// Execute commands for all known languages.
    ///
    /// The list of languages can be seen with `ktsctl query -a`.
    #[clap(short, long)]
    all: bool,

    /// Languages to manage.
    ///
    /// Space separated.
    langs: Vec<String>,
  },

  /// Compile resources.
  Compile {
    /// Execute commands for all known languages.
    ///
    /// The list of languages can be seen with `ktsctl query --all`.
    #[clap(short, long)]
    all: bool,

    /// Languages to manage.
    ///
    /// Space separated.
    langs: Vec<String>,
  },

  /// Install resources.
  Install {
    /// Execute commands for all known languages.
    ///
    /// The list of languages can be seen with `ktsctl query -a`.
    #[clap(short, long)]
    all: bool,

    /// Languages to manage.
    ///
    /// Space separated.
    langs: Vec<String>,
  },

  /// Synchronize resources (implies fetch, compile and install).
  ///
  /// This command also checks whether pinned version are already there; if so,
  /// nothing is performed.
  Sync {
    /// Execute commands for all known languages.
    ///
    /// The list of languages can be seen with `ktsctl query -a`.
    #[clap(short, long)]
    all: bool,

    /// Languages to manage.
    ///
    /// Space separated.
    langs: Vec<String>,
  },

  /// Get information on installed resources.
  Query {
    /// List all known languages and display information about them.
    #[clap(short, long)]
    all: bool,

    /// Get information about a specific language.
    lang: Option<String>,
  },

  /// Remove resources.
  ///
  /// If no flag is passed, -g and -q are assumed. Passing -p will also prune
  /// out-of-sync pins; so to completely remove everything for a given language:
  ///
  ///     ktsctl rm -p <LANG>
  #[clap(aliases = &["rm"])]
  Remove {
    /// Remove grammar.
    #[clap(short, long)]
    grammar: bool,

    /// Remove queries.
    #[clap(short, long)]
    queries: bool,

    /// Prune resources.
    ///
    /// Pruning resources implies resources deletion for which the pin is out
    /// of date.
    #[clap(short, long)]
    prune: bool,

    /// Remove resources for the specific language.
    langs: Vec<String>,
  },

  /// Prune resources.
  ///
  /// This command iterates over all languages’ resources and remove everything that
  /// is not pinned in the configuration.
  Prune,

  /// Print default configuration
  DefaultConfig,
}