blob: cb3b77c5e7b7698dd58bb79f36697cd7dd84a4eb (
plain)
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
|
#![warn(rust_2018_idioms)]
use std::env;
use std::process;
use getopts::Options;
use git2::Repository;
use git_todo::Todos;
fn main() {
let args: Vec<String> = env::args().collect();
let mut opts = Options::new();
let matches = match opts.parse(&args[1..]) {
Ok(m) => m,
Err(e) => {
eprintln(&e);
process::exit(exitcode::NOINPUT);
},
};
let repo = Repository::open(".").unwrap();
let todos = Todos { repo: &repo };
let tree = if matches.free.is_empty() {
match todos.master_tree() {
Ok(t) => t,
Err(e) => {
eprintln(&e);
process::exit(exitcode::USAGE);
},
}
} else {
// TODO: error if more than one ref given
let refname = &matches.free[0];
let oid = match repo.refname_to_id(&refname) {
Ok(oid) => oid,
Err(e) => {
eprintln(&e);
process::exit(exitcode::USAGE);
},
};
match repo.find_tree(oid) {
Ok(t) => t,
Err(e) => {
eprintln(&e);
process::exit(exitcode::USAGE);
},
}
};
todos.write_since(tree, &mut std::io::stdout()).unwrap();
}
/// Print to standard error with a program-specific prefix.
fn eprintln<D: std::fmt::Display>(error: &D) {
eprintln!("error: {}", error);
}
|