Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Command line completion #205

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ license = "MIT"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
derive_more = { version = "1", features = ["full"] }
either = "1"
indexmap = "2"
Expand All @@ -31,3 +32,7 @@ walkdir = "2"

[dev-dependencies]
assert_cmd = "2"

[build-dependencies]
clap_complete = "4"
clap = { version = "4", features = ["derive"] }
20 changes: 20 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
use clap::CommandFactory;
use clap_complete::{generate_to, Shell};
use std::{env, fs, io::Error, path::Path};

include!("src/command_line/arguments.rs");

fn main() -> Result<(), Error> {
let mut cmd = Arguments::command();

let out_dir = Path::new(&env::var_os("OUT_DIR").unwrap()).join("completions/");
fs::create_dir_all(Path::new(&out_dir))?;

for &shell in Shell::value_variants() {
generate_to(shell, &mut cmd, "anthem", &out_dir)?;
}

println!("cargo:rerun-if-changed=src/command_line/arguments.rs");

Ok(())
}
14 changes: 13 additions & 1 deletion src/command_line/arguments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ pub enum Command {
input: Option<PathBuf>,
},

/// Generate CLI completion files
GenerateCompletion {
#[arg(long, value_enum)]
shell: clap_complete::Shell,
},

Simplify {
/// The simplification portfolio to use
#[arg(long, value_enum)]
Expand Down Expand Up @@ -145,7 +151,13 @@ pub enum Decomposition {
Sequential,
}

pub use crate::syntax_tree::fol::Direction;
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq, Hash, ValueEnum)]
pub enum Direction {
#[default]
Universal,
Forward,
Backward,
}

#[cfg(test)]
mod tests {
Expand Down
12 changes: 10 additions & 2 deletions src/command_line/procedures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ use {
},
},
anyhow::{anyhow, Context, Result},
clap::Parser as _,
clap::{CommandFactory, Parser as _},
clap_complete::generate,
either::Either,
std::time::Instant,
std::{io, time::Instant},
};

pub fn main() -> Result<()> {
Expand All @@ -41,6 +42,13 @@ pub fn main() -> Result<()> {
Ok(())
}

Command::GenerateCompletion { shell } => {
let mut cmd = Arguments::command();
generate(shell, &mut cmd, "anthem", &mut io::stdout());

Ok(())
}

Command::Simplify {
portfolio,
strategy,
Expand Down
9 changes: 1 addition & 8 deletions src/syntax_tree/fol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ use {
syntax_tree::{impl_node, Node},
verifying::problem,
},
clap::ValueEnum,
derive_more::derive::IntoIterator,
indexmap::{IndexMap, IndexSet},
std::hash::Hash,
Expand Down Expand Up @@ -955,13 +954,7 @@ pub enum Role {

impl_node!(Role, Format, RoleParser);

#[derive(Copy, Clone, Debug, Default, Eq, PartialEq, Hash, ValueEnum)]
pub enum Direction {
#[default]
Universal,
Forward,
Backward,
}
pub use crate::command_line::arguments::Direction;

impl_node!(Direction, Format, DirectionParser);

Expand Down