]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/clean.rs
Unignore u128 test for stage 0,1
[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(build, "tmp".as_ref());
26     rm_rf(build, &build.out.join("tmp"));
27
28     for host in build.config.host.iter() {
29         let entries = match build.out.join(host).read_dir() {
30             Ok(iter) => iter,
31             Err(_) => continue,
32         };
33
34         for entry in entries {
35             let entry = t!(entry);
36             if entry.file_name().to_str() == Some("llvm") {
37                 continue
38             }
39             let path = t!(entry.path().canonicalize());
40             rm_rf(build, &path);
41         }
42     }
43 }
44
45 fn rm_rf(build: &Build, path: &Path) {
46     if !path.exists() {
47         return
48     }
49     if path.is_file() {
50         return do_op(path, "remove file", |p| fs::remove_file(p));
51     }
52
53     for file in t!(fs::read_dir(path)) {
54         let file = t!(file).path();
55
56         if file.is_dir() {
57             rm_rf(build, &file);
58         } else {
59             // On windows we can't remove a readonly file, and git will
60             // often clone files as readonly. As a result, we have some
61             // special logic to remove readonly files on windows.
62             do_op(&file, "remove file", |p| fs::remove_file(p));
63         }
64     }
65     do_op(path, "remove dir", |p| fs::remove_dir(p));
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         Err(ref e) if cfg!(windows) &&
74                       e.kind() == ErrorKind::PermissionDenied => {
75             let mut p = t!(path.metadata()).permissions();
76             p.set_readonly(false);
77             t!(fs::set_permissions(path, p));
78             f(path).unwrap_or_else(|e| {
79                 panic!("failed to {} {}: {}", desc, path.display(), e);
80             })
81         }
82         Err(e) => {
83             panic!("failed to {} {}: {}", desc, path.display(), e);
84         }
85     }
86 }