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
/* 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 <http://www.gnu.org/licenses/>.
*/

use std::collections::HashMap;
use std::collections::hash_map::Keys;

pub struct Matches {
    matches: HashMap<String, String>,
}

impl Matches {
    pub fn new() -> Matches {
        Matches {
            matches: HashMap::new()
        }
    }

    pub fn insert(&mut self, arg: &str, value: &str) {
        self.matches.insert(String::from(arg), String::from(value));
    }

    pub fn get(&self, arg: &str) -> Option<&String> {
        self.matches.get(arg)
    }

    pub fn has_arg(&self, arg: &str) -> bool {
        let arg = String::from(arg);
        self.matches.contains_key(&arg)
    }

    pub fn args(&self) -> Keys<String, String> {
        self.matches.keys()
    }
}