cmdr 0.3.9

Cmdr is a library for building line-oriented text-based user interfaces
Documentation

Cmdr is a library for building line-oriented text-based user interfaces. It lets you focus on writing the implementations of your commands while it handles user interaction, parsing etc.

Out of the box CMDR gives you;

  • Command line parsing
  • Command history
  • Help functions and discoverability
  • Auto completion (not yet implemented)

To use CMDR you write the commands you want your user to interact with as functions on one or more Scope types. By implementing the scope trait cmdr can implement and execute your supplied commands. Implementing the Scope trait is as easy by using the supplied cmdr macro and annotating your commands with the cmd annotation to provide useful metadata on your commands. Doc strings in your command will be picked up automatically and used as help text.

use cmdr::*;
struct GreeterScope {}

/// Example scope that implements two commands, greet and quit
#[cmdr]
impl GreeterScope {
/// Cmdr command to greet someone. Takes one parameter and prints a greeting
#[cmd]
fn greet(&self, args: &[String]) -> CommandResult {
println!("Hello {}", args[0]);
CommandResult::Ok
}

/// Cmdr command to quit the application by returning CommandResult::Quit
#[cmd]
fn quit(&self, _args: &[String]) -> CommandResult {
println!("Quitting");
CommandResult::Quit
}
}

/// Main function that creates the scope and starts a command loop for it
fn main() {
cmd_loop(&mut GreeterScope {});
}

More information