]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/clean.rs
Fix typo in source-based-code-coverage.md
[rust.git] / src / bootstrap / clean.rs
1 //! Implementation of `make clean` in rustbuild.
2 //!
3 //! Responsible for cleaning out a build directory of all old and stale
4 //! artifacts to prepare for a fresh build. Currently doesn't remove the
5 //! `build/cache` directory (download cache) or the `build/$target/llvm`
6 //! directory unless the `--all` flag is present.
7
8 use std::fs;
9 use std::io::{self, ErrorKind};
10 use std::path::Path;
11
12 use build_helper::t;
13
14 use crate::Build;
15
16 pub fn clean(build: &Build, all: bool) {
17     rm_rf("tmp".as_ref());
18
19     if all {
20         rm_rf(&build.out);
21     } else {
22         rm_rf(&build.out.join("tmp"));
23         rm_rf(&build.out.join("dist"));
24         rm_rf(&build.out.join("bootstrap"));
25
26         for host in &build.hosts {
27             let entries = match build.out.join(host.triple).read_dir() {
28                 Ok(iter) => iter,
29                 Err(_) => continue,
30             };
31
32             for entry in entries {
33                 let entry = t!(entry);
34                 if entry.file_name().to_str() == Some("llvm") {
35                     continue;
36                 }
37                 let path = t!(entry.path().canonicalize());
38                 rm_rf(&path);
39             }
40         }
41     }
42 }
43
44 fn rm_rf(path: &Path) {
45     match path.symlink_metadata() {
46         Err(e) => {
47             if e.kind() == ErrorKind::NotFound {
48                 return;
49             }
50             panic!("failed to get metadata for file {}: {}", path.display(), e);
51         }
52         Ok(metadata) => {
53             if metadata.file_type().is_file() || metadata.file_type().is_symlink() {
54                 do_op(path, "remove file", |p| fs::remove_file(p));
55                 return;
56             }
57
58             for file in t!(fs::read_dir(path)) {
59                 rm_rf(&t!(file).path());
60             }
61             do_op(path, "remove dir", |p| fs::remove_dir(p));
62         }
63     };
64 }
65
66 fn do_op<F>(path: &Path, desc: &str, mut f: F)
67 where
68     F: FnMut(&Path) -> io::Result<()>,
69 {
70     match f(path) {
71         Ok(()) => {}
72         // On windows we can't remove a readonly file, and git will often clone files as readonly.
73         // As a result, we have some special logic to remove readonly files on windows.
74         // This is also the reason that we can't use things like fs::remove_dir_all().
75         Err(ref e) if cfg!(windows) && e.kind() == ErrorKind::PermissionDenied => {
76             let mut p = t!(path.symlink_metadata()).permissions();
77             p.set_readonly(false);
78             t!(fs::set_permissions(path, p));
79             f(path).unwrap_or_else(|e| {
80                 panic!("failed to {} {}: {}", desc, path.display(), e);
81             })
82         }
83         Err(e) => {
84             panic!("failed to {} {}: {}", desc, path.display(), e);
85         }
86     }
87 }