]> git.lizzy.rs Git - rust.git/blob - src/git-rustfmt/main.rs
Refactor to make a sensible public API
[rust.git] / src / git-rustfmt / main.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 extern crate env_logger;
12 extern crate getopts;
13 #[macro_use]
14 extern crate log;
15 extern crate rustfmt_nightly as rustfmt;
16
17 use std::env;
18 use std::path::{Path, PathBuf};
19 use std::process::Command;
20 use std::str::FromStr;
21
22 use getopts::{Matches, Options};
23
24 use rustfmt::{format_and_emit_report, load_config, Input};
25
26 fn prune_files(files: Vec<&str>) -> Vec<&str> {
27     let prefixes: Vec<_> = files
28         .iter()
29         .filter(|f| f.ends_with("mod.rs") || f.ends_with("lib.rs"))
30         .map(|f| &f[..f.len() - 6])
31         .collect();
32
33     let mut pruned_prefixes = vec![];
34     for p1 in prefixes {
35         if p1.starts_with("src/bin/") || pruned_prefixes.iter().all(|p2| !p1.starts_with(p2)) {
36             pruned_prefixes.push(p1);
37         }
38     }
39     debug!("prefixes: {:?}", pruned_prefixes);
40
41     files
42         .into_iter()
43         .filter(|f| {
44             if f.ends_with("mod.rs") || f.ends_with("lib.rs") || f.starts_with("src/bin/") {
45                 return true;
46             }
47             pruned_prefixes.iter().all(|pp| !f.starts_with(pp))
48         })
49         .collect()
50 }
51
52 fn git_diff(commits: &str) -> String {
53     let mut cmd = Command::new("git");
54     cmd.arg("diff");
55     if commits != "0" {
56         cmd.arg(format!("HEAD~{}", commits));
57     }
58     let output = cmd.output().expect("Couldn't execute `git diff`");
59     String::from_utf8_lossy(&output.stdout).into_owned()
60 }
61
62 fn get_files(input: &str) -> Vec<&str> {
63     input
64         .lines()
65         .filter(|line| line.starts_with("+++ b/") && line.ends_with(".rs"))
66         .map(|line| &line[6..])
67         .collect()
68 }
69
70 fn fmt_files(files: &[&str]) -> i32 {
71     let (config, _) = load_config(Some(Path::new(".")), None).expect("couldn't load config");
72
73     let mut exit_code = 0;
74     for file in files {
75         let summary = format_and_emit_report(Input::File(PathBuf::from(file)), &config).unwrap();
76         if !summary.has_no_errors() {
77             exit_code = 1;
78         }
79     }
80     exit_code
81 }
82
83 fn uncommitted_files() -> Vec<String> {
84     let mut cmd = Command::new("git");
85     cmd.arg("ls-files");
86     cmd.arg("--others");
87     cmd.arg("--modified");
88     cmd.arg("--exclude-standard");
89     let output = cmd.output().expect("Couldn't execute Git");
90     let stdout = String::from_utf8_lossy(&output.stdout);
91     stdout
92         .lines()
93         .filter(|s| s.ends_with(".rs"))
94         .map(|s| s.to_owned())
95         .collect()
96 }
97
98 fn check_uncommitted() {
99     let uncommitted = uncommitted_files();
100     debug!("uncommitted files: {:?}", uncommitted);
101     if !uncommitted.is_empty() {
102         println!("Found untracked changes:");
103         for f in &uncommitted {
104             println!("  {}", f);
105         }
106         println!("Commit your work, or run with `-u`.");
107         println!("Exiting.");
108         std::process::exit(1);
109     }
110 }
111
112 fn make_opts() -> Options {
113     let mut opts = Options::new();
114     opts.optflag("h", "help", "show this message");
115     opts.optflag("c", "check", "check only, don't format (unimplemented)");
116     opts.optflag("u", "uncommitted", "format uncommitted files");
117     opts
118 }
119
120 struct Config {
121     commits: String,
122     uncommitted: bool,
123     check: bool,
124 }
125
126 impl Config {
127     fn from_args(matches: &Matches, opts: &Options) -> Config {
128         // `--help` display help message and quit
129         if matches.opt_present("h") {
130             let message = format!(
131                 "\nusage: {} <commits> [options]\n\n\
132                  commits: number of commits to format, default: 1",
133                 env::args_os().next().unwrap().to_string_lossy()
134             );
135             println!("{}", opts.usage(&message));
136             std::process::exit(0);
137         }
138
139         let mut config = Config {
140             commits: "1".to_owned(),
141             uncommitted: false,
142             check: false,
143         };
144
145         if matches.opt_present("c") {
146             config.check = true;
147             unimplemented!();
148         }
149
150         if matches.opt_present("u") {
151             config.uncommitted = true;
152         }
153
154         if matches.free.len() > 1 {
155             panic!("unknown arguments, use `-h` for usage");
156         }
157         if matches.free.len() == 1 {
158             let commits = matches.free[0].trim();
159             if u32::from_str(commits).is_err() {
160                 panic!("Couldn't parse number of commits");
161             }
162             config.commits = commits.to_owned();
163         }
164
165         config
166     }
167 }
168
169 fn main() {
170     env_logger::init();
171
172     let opts = make_opts();
173     let matches = opts.parse(env::args().skip(1))
174         .expect("Couldn't parse command line");
175     let config = Config::from_args(&matches, &opts);
176
177     if !config.uncommitted {
178         check_uncommitted();
179     }
180
181     let stdout = git_diff(&config.commits);
182     let files = get_files(&stdout);
183     debug!("files: {:?}", files);
184     let files = prune_files(files);
185     debug!("pruned files: {:?}", files);
186     let exit_code = fmt_files(&files);
187     std::process::exit(exit_code);
188 }