]> git.lizzy.rs Git - rust.git/blob - src/git-rustfmt/main.rs
Merge pull request #2581 from sinkuu/build_script
[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::{config, run, 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, _) = config::Config::from_resolved_toml_path(Path::new("."))
72         .unwrap_or_else(|_| (config::Config::default(), None));
73
74     let mut exit_code = 0;
75     for file in files {
76         let summary = run(Input::File(PathBuf::from(file)), &config);
77         if !summary.has_no_errors() {
78             exit_code = 1;
79         }
80     }
81     exit_code
82 }
83
84 fn uncommitted_files() -> Vec<String> {
85     let mut cmd = Command::new("git");
86     cmd.arg("ls-files");
87     cmd.arg("--others");
88     cmd.arg("--modified");
89     cmd.arg("--exclude-standard");
90     let output = cmd.output().expect("Couldn't execute Git");
91     let stdout = String::from_utf8_lossy(&output.stdout);
92     stdout
93         .lines()
94         .filter(|s| s.ends_with(".rs"))
95         .map(|s| s.to_owned())
96         .collect()
97 }
98
99 fn check_uncommitted() {
100     let uncommitted = uncommitted_files();
101     debug!("uncommitted files: {:?}", uncommitted);
102     if !uncommitted.is_empty() {
103         println!("Found untracked changes:");
104         for f in &uncommitted {
105             println!("  {}", f);
106         }
107         println!("Commit your work, or run with `-u`.");
108         println!("Exiting.");
109         std::process::exit(1);
110     }
111 }
112
113 fn make_opts() -> Options {
114     let mut opts = Options::new();
115     opts.optflag("h", "help", "show this message");
116     opts.optflag("c", "check", "check only, don't format (unimplemented)");
117     opts.optflag("u", "uncommitted", "format uncommitted files");
118     opts
119 }
120
121 struct Config {
122     commits: String,
123     uncommitted: bool,
124     check: bool,
125 }
126
127 impl Config {
128     fn from_args(matches: &Matches, opts: &Options) -> Config {
129         // `--help` display help message and quit
130         if matches.opt_present("h") {
131             let message = format!(
132                 "\nusage: {} <commits> [options]\n\n\
133                  commits: number of commits to format, default: 1",
134                 env::args_os().next().unwrap().to_string_lossy()
135             );
136             println!("{}", opts.usage(&message));
137             std::process::exit(0);
138         }
139
140         let mut config = Config {
141             commits: "1".to_owned(),
142             uncommitted: false,
143             check: false,
144         };
145
146         if matches.opt_present("c") {
147             config.check = true;
148             unimplemented!();
149         }
150
151         if matches.opt_present("u") {
152             config.uncommitted = true;
153         }
154
155         if matches.free.len() > 1 {
156             panic!("unknown arguments, use `-h` for usage");
157         }
158         if matches.free.len() == 1 {
159             let commits = matches.free[0].trim();
160             if u32::from_str(commits).is_err() {
161                 panic!("Couldn't parse number of commits");
162             }
163             config.commits = commits.to_owned();
164         }
165
166         config
167     }
168 }
169
170 fn main() {
171     env_logger::init();
172
173     let opts = make_opts();
174     let matches = opts.parse(env::args().skip(1))
175         .expect("Couldn't parse command line");
176     let config = Config::from_args(&matches, &opts);
177
178     if !config.uncommitted {
179         check_uncommitted();
180     }
181
182     let stdout = git_diff(&config.commits);
183     let files = get_files(&stdout);
184     debug!("files: {:?}", files);
185     let files = prune_files(files);
186     debug!("pruned files: {:?}", files);
187     let exit_code = fmt_files(&files);
188     std::process::exit(exit_code);
189 }