/* Pirate - A command-line arrrrguments parser, written in Rust. * Copyright (C) 2015 Zachary Dziura * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ use std::collections::HashMap; use std::collections::VecDeque; pub struct Opts { pub opts: HashMap, pub args: VecDeque, } impl Opts { pub fn new() -> Opts { Opts { opts: HashMap::new(), args: VecDeque::new() } } pub fn insert_opt(&mut self, key: &str, value: bool) { self.opts.insert(String::from(key), value); } pub fn get_opt(&self, opt_name: &String) -> Option<&bool> { self.opts.get(opt_name) } pub fn contains_opt(&self, opt: &String) -> bool { self.opts.contains_key(opt) } pub fn insert_arg(&mut self, arg: &str) { self.args.push_back(String::from(arg)); } pub fn get_arg(&mut self) -> Option { self.args.pop_front() } }