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