1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
// Copyright 2018 Christopher Simpkins
// Licensed under the MIT license
//! `commandlines` is a command line argument parsing library for the development of Rust command line interface (CLI) applications that follow the [POSIX / GNU conventions for command line arguments](https://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html).
//!
//! It is in development and the API is not stable. Please see the [source repository README.md page](https://github.com/chrissimpkins/commandlines-rust) for updates on the level of library support for the POSIX/GNU command line argument syntax.
pub mod parsers;
use std::collections::HashMap;
use std::fmt;
/// A command line argument object
///
/// The `Command` struct defines fields that hold parsed command line argument data and provides methods that can be used to define the logic of a command line interface application.
///
/// # Examples
/// ## Instantiation
/// Instantiate a `Command` struct with a `Vec<String>` that is defined with `std::env::args().collect()`:
///
/// ```
/// extern crate commandlines;
///
/// use commandlines::Command;
///
/// let c = Command::new(std::env::args().collect());
/// ```
#[derive(Debug)]
pub struct Command {
/// Vector of command line strings defined on instantiation
pub argv: Vec<String>,
/// number of strings in `Command.argv`
pub argc: usize,
/// executable at index position `0` of `Command.argv`
pub executable: String,
/// Vector of command line options in `Command.argv`
pub options: Vec<String>,
/// HashMap of command line option definitions mapped as key=option:value=definition
pub definitions: HashMap<String, String>,
}
// Traits
// Display trait
impl fmt::Display for Command {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let mut commandstring = String::new();
for substring in &self.argv {
commandstring.push_str(&substring[..]);
commandstring.push_str(" ");
}
write!(f, "Command: '{}'", &commandstring[..].trim_right())
}
}
// // Debug trait
// impl fmt::Debug for Command {
// fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
// let mut commandstring = String::new();
// for substring in &self.argv {
// commandstring.push_str(&substring[..]);
// commandstring.push_str(" ");
// }
// write!(f, "Command: '{}'", &commandstring[..].trim_right())
// }
// }
// Methods
impl Command {
/// Instantiates and returns a new `Command` object
///
/// # Arguments
///
/// * `arguments` - a `Vec<String>` of command line arguments
///
/// # Remarks
///
/// The command line arguments passed to the executable should be defined with `std::env::args().collect()`.
///
/// # Examples
///
/// ```
/// extern crate commandlines;
///
/// let c = commandlines::Command::new(std::env::args().collect());
/// ```
pub fn new(arguments: Vec<String>) -> Self {
let arguments_definition = arguments.clone();
let executable_definition = &arguments[0];
let size_definition = arguments.len();
let vec_options = parsers::parse_options(&arguments);
let definitions_hm = parsers::parse_definitions(&arguments);
Command {
argv: arguments_definition,
argc: size_definition,
executable: executable_definition.to_string(),
options: vec_options,
definitions: definitions_hm,
}
}
/// Returns a boolean for the question "Does the command include any arguments?"
///
/// # Remarks
/// An argument is defined as a command line string after the executable. The executable at index position `0` in the `Vec<String>` returned by `std::env::args().collect()` is not part of this definition.
///
/// # Examples
///
/// ```
/// let c = commandlines::Command::new(std::env::args().collect());
/// if !c.has_args() {
/// eprintln!("{}", "Missing arguments");
/// }
/// ```
pub fn has_args(&self) -> bool {
self.argv[1..].len() > 0
}
/// Returns a boolean for the question "Does the command include any definition options?"
///
/// # Remarks
/// A definition option is defined as a command line string that takes a short or long option format with an equal character that is used to indicate that a definition of the option follows. They may take either of the following formats:
/// * `-o=def`
/// * `--option=def`
///
/// # Examples
///
/// ```
/// let c = commandlines::Command::new(std::env::args().collect());
/// if c.has_definitions() {
/// // definitions were parsed in the command
/// }
/// ```
pub fn has_definitions(&self) -> bool {
self.definitions.len() > 0
}
/// Returns a boolean for the question "Does the command include any options?"
///
/// # Remarks
/// An option is defined as a command line string that starts with one or two hyphen characters. This definition includes standard long (e.g., `--longoption`) and short (e.g., `-s`) command line options.
///
/// # Examples
///
/// ```
/// let c = commandlines::Command::new(std::env::args().collect());
/// if c.has_options() {
/// // start application-specific option parsing logic
/// }
/// ```
pub fn has_options(&self) -> bool {
self.options.len() > 0
}
/// Returns a boolean for the question "Does the command include the argument string `needle`?" at any index
///
/// # Examples
///
/// ```
/// let c = commandlines::Command::new(std::env::args().collect());
/// if c.contains_arg("spam") {
/// // a `spam` argument was in the command
/// }
/// ```
pub fn contains_arg(&self, needle: &str) -> bool {
self.argv[1..].contains(&String::from(needle))
}
/// Returns a boolean for the question "Does the command include the definition option `needle`?"
///
/// # Examples
///
/// ```
/// let c = commandlines::Command::new(std::env::args().collect());
/// if c.contains_definition("--spam") {
/// // command included a `--spam=[definition]` option
/// }
/// ```
pub fn contains_definition(&self, needle: &str) -> bool {
match self.definitions.get(&String::from(needle)) {
Some(_) => true,
None => false,
}
}
/// Returns a boolean for the question "Does the command include the option string `needle`?" at any index
///
/// # Examples
///
/// ```
/// let c = commandlines::Command::new(std::env::args().collect());
/// if c.contains_option("--help") {
/// // you have a standard request for help documentation
/// }
/// ````
pub fn contains_option(&self, needle: &str) -> bool {
self.options.contains(&String::from(needle))
}
/// Returns Option<&String> definition for a key defined by `needle`
///
/// Returns None if the option was not used in the command
///
/// # Examples
///
/// The following example demonstrates how to get the definition string for a command line option with the format `--name=[definition]`:
///
/// ```
/// let c = commandlines::Command::new(std::env::args().collect());
/// match c.get_definition_for("--name") {
/// Some(x) => println!("{}", *x),
/// None => eprintln!("{}", "Missing")
/// };
/// ```
pub fn get_definition_for(&self, needle: &str) -> Option<&String> {
self.definitions.get(&String::from(needle))
}
/// Returns `Option<&String>` for argument at index position i+1 for `needle` at index position i
///
/// Returns None if `needle` is the last positional argument in the command
///
/// # Examples
///
/// ```
/// let c = commandlines::Command::new(std::env::args().collect());
/// match c.get_argument_after("-o") {
/// Some(x) => println!("The argument after -o is {}", *x),
/// None => eprintln!("-o is the last positional argument in the command")
/// }
/// ```
pub fn get_argument_after(&self, needle: &str) -> Option<&String> {
for (index, value) in self.argv.iter().enumerate() {
if value == needle {
return self.argv.get(index + 1);
}
}
None
}
}
// Tests
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn command_instantiation_argv_field() {
let c = Command::new(vec!["test".to_string(), "--help".to_string()]);
assert!(c.argv == vec!["test".to_string(), "--help".to_string()]);
}
#[test]
fn command_instantiation_argc_field_one_arg() {
let c = Command::new(vec!["test".to_string()]);
assert!(c.argc == 1);
}
#[test]
fn command_instantiation_argc_field_two_args() {
let c = Command::new(vec!["test".to_string(), "--help".to_string()]);
assert!(c.argc == 2);
}
#[test]
fn command_instantiation_executable_field() {
let c = Command::new(vec!["test".to_string(), "--help".to_string()]);
assert!(c.executable == "test".to_string());
}
#[test]
fn command_instantiation_definitions_field_single_def() {
let c = Command::new(vec![
"test".to_string(),
"--something".to_string(),
"--option=define".to_string(),
]);
let mut expected_hm: HashMap<String, String> = HashMap::new();
expected_hm.insert("--option".to_string(), "define".to_string());
assert_eq!(c.definitions, expected_hm);
}
#[test]
fn command_instantiation_definitions_field_multi_def() {
let c = Command::new(vec![
"test".to_string(),
"--something".to_string(),
"--option=define".to_string(),
"--another=otherdef".to_string(),
"--".to_string(),
"--absent=true".to_string(),
]);
let mut expected_hm: HashMap<String, String> = HashMap::new();
expected_hm.insert("--option".to_string(), "define".to_string());
expected_hm.insert("--another".to_string(), "otherdef".to_string());
assert_eq!(c.definitions, expected_hm);
}
#[test]
fn command_method_has_args_true() {
let c = Command::new(vec!["test".to_string(), "--help".to_string()]);
assert_eq!(c.has_args(), true);
let c = Command::new(vec!["test".to_string(), "subcmd".to_string()]);
assert_eq!(c.has_args(), true);
}
#[test]
fn command_method_has_args_false() {
let c = Command::new(vec!["test".to_string()]); // ignores the executable as not an argument
assert_eq!(c.has_args(), false);
}
#[test]
fn command_method_has_definitions_true() {
let c = Command::new(vec!["test".to_string(), "--opt=def".to_string()]);
assert_eq!(c.has_definitions(), true);
let c = Command::new(vec!["test".to_string(), "-o=d".to_string()]);
assert_eq!(c.has_definitions(), true);
}
#[test]
fn command_method_has_definitions_false() {
let c = Command::new(vec!["test".to_string()]); // ignores the executable as not an argument
assert_eq!(c.has_definitions(), false);
}
#[test]
fn command_method_has_options_true() {
let c = Command::new(vec!["test".to_string(), "--help".to_string()]);
assert!(c.has_options() == true);
}
#[test]
fn command_method_has_options_false() {
let c = Command::new(vec!["test".to_string(), "subcmd".to_string()]);
assert!(c.has_options() == false);
}
#[test]
fn command_method_contains_arg() {
let c = Command::new(vec![
"test".to_string(),
"subcmd".to_string(),
"--help".to_string(),
]);
assert_eq!(c.contains_arg("subcmd"), true);
assert_eq!(c.contains_arg("--help"), true);
assert_eq!(c.contains_arg("bogus"), false);
assert_eq!(c.contains_arg("test"), false); // executable not considered argument
}
#[test]
fn command_method_contains_definition() {
let c = Command::new(vec![
"test".to_string(),
"subcmd".to_string(),
"--help".to_string(),
"--option=definition".to_string(),
"--another=deftwo".to_string(),
]);
assert_eq!(c.contains_definition("--option"), true);
assert_eq!(c.contains_definition("--another"), true);
assert_eq!(c.contains_definition("--bogus"), false);
assert_eq!(c.contains_definition("--help"), false);
}
#[test]
fn command_method_contains_option() {
let c = Command::new(vec![
"test".to_string(),
"subcmd".to_string(),
"--help".to_string(),
]);
assert_eq!(c.contains_option("--help"), true);
assert_eq!(c.contains_option("--bogus"), false);
assert_eq!(c.contains_option("help"), false); // must include the option indicator in string
}
#[test]
fn command_method_get_definition_for_def_present() {
let c = Command::new(vec![
"test".to_string(),
"subcmd".to_string(),
"--help".to_string(),
"--option=definition".to_string(),
]);
assert_eq!(
c.get_definition_for("--option"),
Some(&String::from("definition"))
);
}
#[test]
fn command_method_get_definition_for_def_absent() {
let c = Command::new(vec![
"test".to_string(),
"subcmd".to_string(),
"--help".to_string(),
]);
assert_eq!(c.get_definition_for("--option"), None);
}
#[test]
fn command_method_get_argument_after_arg_present() {
let c = Command::new(vec![
"test".to_string(),
"-o".to_string(),
"path".to_string(),
]);
assert_eq!(c.get_argument_after("-o"), Some(&String::from("path")));
}
#[test]
fn command_method_get_argument_after_arg_absent() {
let c = Command::new(vec!["test".to_string(), "-o".to_string()]);
assert_eq!(c.get_argument_after("-o"), None);
}
}