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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
//! A flexible and typed getopt like command line tools for rust.
//!
//! ## Example
//!
//! ```ignore
//! use aopt::app::SingleApp;
//! use aopt::prelude::*;
//!
//! #[async_std::main]
//! async fn main() -> color_eyre::Result<()> {
//! tracing_subscriber::fmt::fmt()
//! .with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
//! .init();
//! color_eyre::install()?;
//! let mut app = SingleApp::<SimpleSet, DefaultService, ForwardPolicy>::default();
//!
//! app.set_name("test-app".into());
//! // add a new prefix `+` to app
//! app.add_prefix("+".into());
//! // add option `depth` with prefix `--` and type `i`
//! app.add_opt("--depth=i")?
//! .set_help("set the search depth of directory")
//! .commit()?;
//! // add option `source` with prefix `--` and type `a`
//! app.add_opt("--source=a!")?
//! .add_alias("+S")? // add an alias +S
//! .set_help("add search source directory")
//! .commit()?;
//! // add option deactivate style `r` with prefix `-` and type `b`
//! app.add_opt("-r=b/")?
//! .set_help("disable recurse directory option")
//! .commit()?;
//! app.add_opt_cb(
//! "--debug=b",
//! simple_opt_cb!(|_, _, value| {
//! if let Some(&v) = value.as_bool() {
//! if v {
//! println!("::: open debug mode");
//! }
//! }
//! Ok(Some(value))
//! }),
//! )?
//! .commit()?;
//!
//! app.run_async_mut(
//! [
//! "--depth=42",
//! "+S",
//! "./",
//! "+Sfoo/",
//! "--source",
//! "bar/",
//! "-/r",
//! ]
//! .into_iter(),
//! |ret, app| async move {
//! if ret {
//! println!("APP: {}", app.get_name());
//! for opt in app.opt_iter() {
//! let value = opt.get_value();
//!
//! if value.is_null() {
//! println!("OPTION: `{}` -> : not set", opt.get_name());
//! } else {
//! println!("OPTION: `{}` -> : {:?}", opt.get_name(), value);
//! }
//! }
//! }
//! Ok(())
//! },
//! )
//! .await?;
//!
//! Ok(())
//! }
//! ```
//!
//! The above code output:
//!
//! ```txt
//! APP: test-app
//! OPTION: `depth` -> : Int(42)
//! OPTION: `source` -> : Array(["./", "foo/", "bar/"])
//! OPTION: `r` -> : Bool(false)
//! OPTION: `debug` -> : not set
//! ```
//!
//! ## Setup
//!
//! Add following to your `Cargo.toml` file:
//!
//! ```toml
//! [dependencies]
//! aopt = "0.5"
//! ```
//!
//! ### Enable `sync` feature
//!
//! If you want the utils of current crate implement [`Send`] and [`Sync`], you can enable `sync` feature.
//!
//! ```toml
//! [dependencies]
//! aopt = { version = "0.5", features = [ "sync" ] }
//! ```
//!
//! ## Feature
//!
//! In following example, the type of `parser` is `Parser<SimpleSet, DefaultService, ForwardPolicy>`.
//!
//! ### Option
//!
//! See the option create string help here: [`parse_option_str`](crate::opt::parse_option_str).
//!
//! The implementation of option is [`Opt`](crate::opt::Opt).
//! It is matched prefix and name of option argument.
//!
//! * Type support
//!
//! Common type options are built-in support.
//! Such as [`b`](crate::opt::opt::BoolOpt) and [`s`](crate::opt::opt::StrOpt).
//! With typed option support, you can keep typed value,
//! and customize the behavior when the user set it.
//! And you can add new type if necessary.
//!
//! #### Example
//!
//! ```ignore
//! parser.add_opt("--foo=b")?.commit()?; // add option `foo` with type `b`
//! parser.add_opt("--bar=s")?.commit()?; // add option `bar` with type `s`
//! ```
//!
//! #### Built-in type
//!
//! [`b`](crate::opt::opt::BoolOpt) with value type [`bool`].
//!
//! [`i`](crate::opt::opt::IntOpt) with value type [`i64`].
//!
//! [`u`](crate::opt::opt::UintOpt) with value type [`u64`].
//!
//! [`f`](crate::opt::opt::FltOpt) with value type [`f64`].
//!
//! [`s`](crate::opt::opt::StrOpt) with value type [`String`].
//!
//! [`a`](crate::opt::opt::ArrayOpt) with value type [`Vec`].
//!
//! #### Any type option
//!
//! [`PathOpt`](crate::opt::opt::PathOpt) is an exmaple option keep [`PathBuf`](std::path::PathBuf) inside.
//!
//! * Callback support
//!
//! The option can have associate [`OptCallback`](crate::opt::OptCallback).
//! The [`Parser`] will call it if user set the option.
//!
//! #### Example
//!
//! ```ignore
//! parser.add_opt_cb("--foo=s",
//! simple_opt_cb!(|uid, set, value| {
//! assert_eq!(value, OptValue::from("bar"));
//! Ok(Some(value))
//! }))?.commit()?
//! // user can set the option `foo` like: `app.exe --foo=bar`
//! ```
//!
//! * Prefix support
//!
//! You can customize the prefix.
//!
//! #### Example
//!
//! ```ignore
//! parser.add_prefix("+".into()); // add support for prefix `+`
//! parser.add_opt("+F=a")?.commit()?;
//! // user can set the option `F` like: `app.exe +F foo +F bar`
//! ```
//!
//! * Alias support
//!
//! You can have one or more alias.
//!
//! #### Example
//!
//! ```ignore
//! parser.add_opt("--foo=s")?.add_alias("-f")?.commit()?;
//! // user can set the option `foo` like: `app.exe -f value`
//! ```
//!
//! * Value support
//!
//! You can keep a type value in the option, and it can have a default value.
//!
//! ### non-option
//!
//! In implementation side, [`NonOpt`](crate::opt::NonOpt) is based on [`Opt`](crate::opt::Opt).
//! Unlike the option matched with name and prefix of option argument.
//! The non-option is matched with [`OptIndex`](crate::opt::OptIndex)(based on 1) or name of non-option argument.
//!
//! * `p`: [`PosOpt`](crate::opt::nonopt::PosOpt)
//!
//! The `PosOpt` will match the index, and call the callback with type [`PosFn`](crate::opt::PosFn).
//!
//! #### Example
//!
//! ```ignore
//! parser.add_opt("--foo=b")?.commit()?; // add option `foo` with type `b`
//! parser.add_opt("--bar=s")?.commit()?; // add option `bar` with type `s`
//! parser.add_opt("arg=p@1",
//! simple_pos_cb!(|uid, set, arg, index, value| {
//! // will get `foo` inside value here
//! assert_eq!(value, OptValue::from("foo"));
//! Ok(Some(value))
//! }))?.commit()?;
//! // user can set the option like: `app.exe --foo --bar value foo`
//! ```
//!
//! * `c`: [`CmdOpt`](crate::opt::nonopt::CmdOpt)
//!
//! The `CmdOpt` is an specify [`PosOpt`](crate::opt::nonopt::PosOpt) with [`Forward`](crate::opt::OptIndex::Forward)(1).
//! It will match the name, and call the callback with type [`MainFn`](crate::opt::MainFn).
//!
//! #### Example
//!
//! ```ignore
//! parser.add_opt("--foo=b")?.commit()?; // add option `foo` with type `b`
//! parser.add_opt("--bar=s")?.commit()?; // add option `bar` with type `s`
//! parser.add_opt("show=c",
//! simple_main_cb!(|uid, set, args, value| {
//! assert_eq!(args, &["show", "foo"]);
//! Ok(Some(value))
//! }))?.commit()?;
//! // user can set the option like: `app.exe show --foo --bar value foo`
//!
//! ```
//! * `m`: [`MainOpt`](crate::opt::nonopt::MainOpt)
//!
//! The `MainOpt` will always be called with the callback type [`MainFn`](crate::opt::MainFn).
//!
//! #### Example
//!
//! ```ignore
//! parser.add_opt("--foo=b")?.commit()?; // add option `foo` with type `b`
//! parser.add_opt("--bar=s")?.commit()?; // add option `bar` with type `s`
//! parser.add_opt("default_main=m",
//! simple_main_cb!(|uid, set, args, value| {
//! assert_eq!(args, &["foo", "bar"]);
//! Ok(Some(value))
//! }))?.commit()?;
//! // user can set the option like: `app.exe --foo --bar value foo bar`
//! ```
//!
//! ### Policy
//!
//! [`Policy`] is responsible for analyze the input command argument,
//! and match it with option in given [`Set`].
//!
//! #### ForwardPolicy
//!
//! Parsing step of [`ForwardPolicy`](crate::parser::ForwardPolicy):
//!
//! * Go through the command line arguments.
//!
//! If the argument like an option.
//!
//! - Generate and process [`OptMatcher`](crate::proc::OptMatcher) of [`PSEqualWithValue`](crate::parser::ParserState::PSEqualWithValue)、[`PSArgument`](crate::parser::ParserState::PSArgument)、[`PSBoolean`](crate::parser::ParserState::PSBoolean)、[`PSMultipleOption`](crate::parser::ParserState::PSMultipleOption) and [`PSEmbeddedValue`](crate::parser::ParserState::PSEmbeddedValue). Invoke the callback if the any option matched.
//!
//! - Return an Err if the option not matched and the strict flag is true.
//!
//! Otherwise, add it to `NOA`(non-option argument) array.
//!
//! * Generate and process [`NonOptMatcher`](crate::proc::NonOptMatcher) of [`PSNonCmd`](crate::parser::ParserState::PSNonCmd).
//!
//! * Go through the `NOA` array, and generate and process [`NonOptMatcher`](crate::proc::NonOptMatcher) of [`PSNonPos`](crate::parser::ParserState::PSNonPos).
//!
//! * Generate and process [`NonOptMatcher`](crate::proc::NonOptMatcher) of [`PSNonMain`](crate::parser::ParserState::PSNonMain).
//!
//! #### PrePolicy
//!
//! Parsing step of [`PrePolicy`](crate::parser::PrePolicy):
//!
//! * Go through the command line arguments.
//!
//! If the argument like an option.
//!
//! - Generate and process [`OptMatcher`](crate::proc::OptMatcher) of [`PSEqualWithValue`](crate::parser::ParserState::PSEqualWithValue)、[`PSArgument`](crate::parser::ParserState::PSArgument)、[`PSBoolean`](crate::parser::ParserState::PSBoolean)、[`PSMultipleOption`](crate::parser::ParserState::PSMultipleOption) and [`PSEmbeddedValue`](crate::parser::ParserState::PSEmbeddedValue), call the callback if the any option matched.
//!
//! - __Add it to `NOA` array if the option not matched.__
//!
//! Otherwise, add it to `NOA`(non-option argument) array.
//!
//! * Generate and process [`NonOptMatcher`](crate::proc::NonOptMatcher) of [`PSNonCmd`](crate::parser::ParserState::PSNonCmd).
//!
//! * Go through the `NOA` array, and generate and process [`NonOptMatcher`](crate::proc::NonOptMatcher) of [`PSNonPos`](crate::parser::ParserState::PSNonPos).
//!
//! * Generate and process [`NonOptMatcher`](crate::proc::NonOptMatcher) of [`PSNonMain`](crate::parser::ParserState::PSNonMain).
//!
//! #### DelayPolicy
//!
//! Parsing step of [`DelayPolicy`](crate::parser::DelayPolicy):
//!
//! * Go through the command line arguments.
//!
//! If the argument like an option.
//!
//! - Generate and process [`OptMatcher`](crate::proc::OptMatcher) of [`PSDelayEqualWithValue`](crate::parser::ParserState::PSDelayEqualWithValue)、[`PSDelayArgument`](crate::parser::ParserState::PSDelayArgument)、[`PSDelayBoolean`](crate::parser::ParserState::PSDelayBoolean)、[`PSDelayMultipleOption`](crate::parser::ParserState::PSDelayMultipleOption) and [`PSDelayEmbeddedValue`](crate::parser::ParserState::PSDelayEmbeddedValue). __Add the callback invoke context to [`ValueKeeper`](crate::parser::ValueKeeper) array if any option matched__.
//!
//! - Return an Err if the option not matched and the strict flag is true.
//!
//! Otherwise, add it to `NOA`(non-option argument) array.
//!
//! * Generate and process [`NonOptMatcher`](crate::proc::NonOptMatcher) of [`PSNonCmd`](crate::parser::ParserState::PSNonCmd).
//!
//! * Go through the `NOA` array, and generate and process [`NonOptMatcher`](crate::proc::NonOptMatcher) of [`PSNonPos`](crate::parser::ParserState::PSNonPos).
//!
//! * __Invoke the callback that saved in [`ValueKeeper`](crate::parser::ValueKeeper) array.__
//!
//! * Generate and process [`NonOptMatcher`](crate::proc::NonOptMatcher) of [`PSNonMain`](crate::parser::ParserState::PSNonMain).
pub mod app;
pub mod arg;
pub mod ctx;
pub mod err;
pub mod opt;
pub mod parser;
pub mod proc;
pub mod set;
pub mod uid;
pub(crate) mod pat;
#[macro_use]
extern crate tracing;
use crate::arg::ArgStream;
use crate::parser::DynParser;
use crate::parser::Parser;
use crate::parser::Policy;
use crate::parser::Service;
use crate::set::Set;
pub use crate::app::SingleApp;
pub use crate::err::Error;
pub use crate::err::Result;
/// Create a [`Ustr`](ustr::Ustr) from `&str`.
pub fn gstr(s: &str) -> ustr::Ustr {
ustr::Ustr::from(s)
}
pub fn getopt_dynparser<'a, I, ITER, S, SS>(
iter: ITER,
parsers: Vec<&'a mut DynParser<S, SS>>,
) -> Result<Option<&'a mut DynParser<S, SS>>>
where
I: Into<String>,
ITER: Iterator<Item = I>,
S: Set,
SS: Service<S>,
{
let args: Vec<String> = iter.map(|v| v.into()).collect();
let count = parsers.len();
let mut index = 0;
for parser in parsers {
let mut stream = ArgStream::from(args.clone().into_iter());
match parser.parse(&mut stream) {
Ok(rv) => {
if rv {
return Ok(Some(parser));
}
}
Err(e) => {
if e.is_special() && index + 1 != count {
continue;
} else {
return Err(e);
}
}
}
index += 1;
}
Ok(None)
}
pub fn getopt_parser<'a, I, ITER, S, SS, P>(
iter: ITER,
parsers: Vec<&'a mut Parser<S, SS, P>>,
) -> Result<Option<&'a mut Parser<S, SS, P>>>
where
I: Into<String>,
ITER: Iterator<Item = I>,
S: Set,
SS: Service<S>,
P: Policy<S, SS>,
{
let args: Vec<String> = iter.map(|v| v.into()).collect();
let count = parsers.len();
let mut index = 0;
for parser in parsers {
let mut stream = ArgStream::from(args.clone().into_iter());
match parser.parse(&mut stream) {
Ok(rv) => {
if rv {
return Ok(Some(parser));
}
}
Err(e) => {
if e.is_special() && index + 1 != count {
continue;
} else {
return Err(e);
}
}
}
index += 1;
}
Ok(None)
}
/// Parse the given string sequence, return the first matched [`DynParser`].
///
/// # Returns
///
/// Will return an Ok(Some([`DynParser`])) if any [`DynParser`] parsing successed, otherwise return `Ok(None)`.
///
/// # Example
///
/// ```rust
/// use aopt::err::Result;
/// use aopt::prelude::*;
///
/// fn main() -> Result<()> {
/// let mut parser = DynParser::<SimpleSet, DefaultService>::new_policy(ForwardPolicy::default());
/// let mut pre_parser = DynParser::<SimpleSet, DefaultService>::new_policy(PrePolicy::default());
///
/// parser.add_opt("-a=b!")?.commit()?;
/// parser.add_opt("--bopt=i")?.commit()?;
/// parser
/// .add_opt_cb("c=p@-1",
/// simple_pos_cb!(|_, _, arg, _, value| {
/// assert_eq!(arg, "foo");
/// Ok(Some(value))
/// }))?
/// .commit()?;
///
/// pre_parser.add_opt("-d=a")?.commit()?;
/// pre_parser.add_opt("--eopt=s")?.commit()?;
/// {
/// let ret = getoptd!(
/// &mut ["-a", "--bopt=42", "foo"].iter().map(|&v| String::from(v)),
/// parser,
/// pre_parser
/// )?;
///
/// assert!(ret.is_some());
/// assert_eq!(
/// ret.as_ref().unwrap().get_set().get_value("-a")?,
/// Some(&OptValue::from(true))
/// );
/// assert_eq!(
/// ret.as_ref().unwrap().get_set().get_value("--bopt")?,
/// Some(&OptValue::from(42i64))
/// );
/// }
/// {
/// let ret = getoptd!(
/// &mut ["-dbar", "-d", "foo", "--eopt=pre", "foo"]
/// .iter()
/// .map(|&v| String::from(v)),
/// parser,
/// pre_parser
/// )?;
/// assert!(ret.is_some());
/// assert_eq!(
/// ret.as_ref().unwrap().get_set().get_value("-d")?,
/// Some(&OptValue::from(vec!["bar".to_owned(), "foo".to_owned()]))
/// );
/// assert_eq!(
/// ret.as_ref().unwrap().get_set().get_value("--eopt")?,
/// Some(&OptValue::from("pre"))
/// );
/// assert_eq!(
/// ret.as_ref().unwrap().get_service().get_noa().as_slice(),
/// ["foo"]
/// );
/// }
/// {
/// assert!(getoptd!(
/// &mut ["-dbar", "-d", "foo", "--eopt=pre", "foo"]
/// .iter()
/// .map(|&v| String::from(v)),
/// parser
/// )
/// .is_err());
/// }
/// Ok(())
/// }
///```
pub use aopt_macro::getoptd;
/// Parse the given string sequence, return the first matched [`Parser`].
///
/// # Returns
///
/// Will return an Ok(Some([`Parser`])) if any [`Parser`] parsing successed, otherwise return `Ok(None)`.
///
/// # Example
///
/// ```rust
/// use aopt::err::Result;
/// use aopt::prelude::*;
///
/// fn main() -> Result<()> {
/// {
/// let mut parser = Parser::<SimpleSet, DefaultService, ForwardPolicy>::default();
///
/// parser.add_opt("-a=b!")?.commit()?;
/// parser.add_opt("--bopt=i")?.commit()?;
/// parser
/// .add_opt_cb(
/// "c=p@-1",
/// simple_pos_cb!(|_, _, arg, _, value| {
/// assert_eq!(arg, "foo");
/// Ok(Some(value))
/// }),
/// )?
/// .commit()?;
///
/// let ret = getopt!(
/// &mut ["-a", "--bopt=42", "foo"].iter().map(|&v| String::from(v)),
/// parser,
/// )?;
///
/// assert!(ret.is_some());
/// assert_eq!(
/// ret.as_ref().unwrap().get_set().get_value("-a")?,
/// Some(&OptValue::from(true))
/// );
/// assert_eq!(
/// ret.as_ref().unwrap().get_set().get_value("--bopt")?,
/// Some(&OptValue::from(42i64))
/// );
/// }
/// {
/// let mut pre_parser = Parser::<SimpleSet, DefaultService, PrePolicy>::default();
///
/// pre_parser.add_opt("-d=a")?.commit()?;
/// pre_parser.add_opt("--eopt=s")?.commit()?;
///
/// let ret = getopt!(
/// &mut ["-dbar", "-d", "foo", "--eopt=pre", "foo"]
/// .iter()
/// .map(|&v| String::from(v)),
/// pre_parser
/// )?;
/// assert!(ret.is_some());
/// assert_eq!(
/// ret.as_ref().unwrap().get_set().get_value("-d")?,
/// Some(&OptValue::from(vec!["bar".to_owned(), "foo".to_owned()]))
/// );
/// assert_eq!(
/// ret.as_ref().unwrap().get_set().get_value("--eopt")?,
/// Some(&OptValue::from("pre"))
/// );
/// assert_eq!(
/// ret.as_ref().unwrap().get_service().get_noa().as_slice(),
/// ["foo"]
/// );
/// }
/// Ok(())
/// }
///```
pub use aopt_macro::getopt;
/// Generate help message of Set.
pub use aopt_macro::getopt_help;
pub mod prelude {
pub use crate::arg::ArgStream;
pub use crate::ctx::Context;
pub use crate::ctx::NonOptContext;
pub use crate::ctx::OptContext;
pub use crate::getopt;
pub use crate::getopt_dynparser;
pub use crate::getopt_help;
pub use crate::getopt_parser;
pub use crate::getoptd;
pub use crate::gstr;
pub use crate::opt::Alias;
pub use crate::opt::ArrayCreator;
pub use crate::opt::BoolCreator;
pub use crate::opt::Callback;
pub use crate::opt::CmdCreator;
pub use crate::opt::FltCreator;
pub use crate::opt::Help;
pub use crate::opt::HelpInfo;
pub use crate::opt::Identifier;
pub use crate::opt::Index;
pub use crate::opt::IntCreator;
pub use crate::opt::MainCreator;
pub use crate::opt::Name;
pub use crate::opt::NonOpt;
pub use crate::opt::Opt;
pub use crate::opt::OptCallback;
pub use crate::opt::OptIndex;
pub use crate::opt::OptValue;
pub use crate::opt::Optional;
pub use crate::opt::PosCreator;
pub use crate::opt::SimpleMainFn;
pub use crate::opt::SimpleMainFnMut;
pub use crate::opt::SimpleOptFn;
pub use crate::opt::SimpleOptFnMut;
pub use crate::opt::SimplePosFn;
pub use crate::opt::SimplePosFnMut;
pub use crate::opt::StrCreator;
pub use crate::opt::Type;
pub use crate::opt::UintCreator;
pub use crate::opt::Value;
pub use crate::parser::DefaultService;
pub use crate::parser::DelayParser;
pub use crate::parser::DelayPolicy;
pub use crate::parser::DynParser;
pub use crate::parser::ForwardParser;
pub use crate::parser::ForwardPolicy;
pub use crate::parser::Parser;
pub use crate::parser::Policy;
pub use crate::parser::PreParser;
pub use crate::parser::PrePolicy;
pub use crate::parser::Service;
pub use crate::parser::SimpleService;
pub use crate::proc::Info;
pub use crate::proc::Matcher;
pub use crate::proc::NonOptMatcher;
pub use crate::proc::OptMatcher;
pub use crate::proc::Proc;
pub use crate::set::CreatorSet;
pub use crate::set::OptionSet;
pub use crate::set::PrefixSet;
pub use crate::set::Set;
pub use crate::set::SetIndex;
pub use crate::set::SimpleSet;
pub use crate::simple_main_cb;
pub use crate::simple_main_mut_cb;
pub use crate::simple_opt_cb;
pub use crate::simple_opt_mut_cb;
pub use crate::simple_pos_cb;
pub use crate::simple_pos_mut_cb;
pub use crate::uid::{Uid, UidGenerator};
pub use ustr::Ustr;
pub use ustr::UstrMap;
}