]> git.lizzy.rs Git - rust.git/blob - src/librustc_back/tempdir.rs
Rollup merge of #27374 - dhuseby:fixing_configure_bsd, r=alexcrichton
[rust.git] / src / librustc_back / tempdir.rs
1 // Copyright 2015 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 use std::env;
12 use std::io::{self, Error, ErrorKind};
13 use std::fs;
14 use std::path::{self, PathBuf, Path};
15 use std::__rand::{thread_rng, Rng};
16
17 /// A wrapper for a path to temporary directory implementing automatic
18 /// scope-based deletion.
19 pub struct TempDir {
20     path: Option<PathBuf>,
21 }
22
23 // How many times should we (re)try finding an unused random name? It should be
24 // enough that an attacker will run out of luck before we run out of patience.
25 const NUM_RETRIES: u32 = 1 << 31;
26 // How many characters should we include in a random file name? It needs to
27 // be enough to dissuade an attacker from trying to preemptively create names
28 // of that length, but not so huge that we unnecessarily drain the random number
29 // generator of entropy.
30 const NUM_RAND_CHARS: usize = 12;
31
32 impl TempDir {
33     /// Attempts to make a temporary directory inside of `tmpdir` whose name
34     /// will have the prefix `prefix`. The directory will be automatically
35     /// deleted once the returned wrapper is destroyed.
36     ///
37     /// If no directory can be created, `Err` is returned.
38     #[allow(deprecated)] // rand usage
39     pub fn new_in<P: AsRef<Path>>(tmpdir: P, prefix: &str)
40                                   -> io::Result<TempDir> {
41         let storage;
42         let mut tmpdir = tmpdir.as_ref();
43         if !tmpdir.is_absolute() {
44             let cur_dir = try!(env::current_dir());
45             storage = cur_dir.join(tmpdir);
46             tmpdir = &storage;
47             // return TempDir::new_in(&cur_dir.join(tmpdir), prefix);
48         }
49
50         let mut rng = thread_rng();
51         for _ in 0..NUM_RETRIES {
52             let suffix: String = rng.gen_ascii_chars().take(NUM_RAND_CHARS).collect();
53             let leaf = if !prefix.is_empty() {
54                 format!("{}.{}", prefix, suffix)
55             } else {
56                 // If we're given an empty string for a prefix, then creating a
57                 // directory starting with "." would lead to it being
58                 // semi-invisible on some systems.
59                 suffix
60             };
61             let path = tmpdir.join(&leaf);
62             match fs::create_dir(&path) {
63                 Ok(_) => return Ok(TempDir { path: Some(path) }),
64                 Err(ref e) if e.kind() == ErrorKind::AlreadyExists => {}
65                 Err(e) => return Err(e)
66             }
67         }
68
69         Err(Error::new(ErrorKind::AlreadyExists,
70                        "too many temporary directories already exist"))
71     }
72
73     /// Attempts to make a temporary directory inside of `env::temp_dir()` whose
74     /// name will have the prefix `prefix`. The directory will be automatically
75     /// deleted once the returned wrapper is destroyed.
76     ///
77     /// If no directory can be created, `Err` is returned.
78     #[allow(deprecated)]
79     pub fn new(prefix: &str) -> io::Result<TempDir> {
80         TempDir::new_in(&env::temp_dir(), prefix)
81     }
82
83     /// Unwrap the wrapped `std::path::Path` from the `TempDir` wrapper.
84     /// This discards the wrapper so that the automatic deletion of the
85     /// temporary directory is prevented.
86     pub fn into_path(mut self) -> PathBuf {
87         self.path.take().unwrap()
88     }
89
90     /// Access the wrapped `std::path::Path` to the temporary directory.
91     pub fn path(&self) -> &path::Path {
92         self.path.as_ref().unwrap()
93     }
94
95     /// Close and remove the temporary directory
96     ///
97     /// Although `TempDir` removes the directory on drop, in the destructor
98     /// any errors are ignored. To detect errors cleaning up the temporary
99     /// directory, call `close` instead.
100     pub fn close(mut self) -> io::Result<()> {
101         self.cleanup_dir()
102     }
103
104     fn cleanup_dir(&mut self) -> io::Result<()> {
105         match self.path {
106             Some(ref p) => fs::remove_dir_all(p),
107             None => Ok(())
108         }
109     }
110 }
111
112 impl Drop for TempDir {
113     fn drop(&mut self) {
114         let _ = self.cleanup_dir();
115     }
116 }
117
118 // the tests for this module need to change the path using change_dir,
119 // and this doesn't play nicely with other tests so these unit tests are located
120 // in src/test/run-pass/tempfile.rs