summary refs log tree commit diff
path: root/src/librustc_incremental/persist/util.rs
blob: f1e81fdb266b9b201271281c02851e8248b16083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use rustc::middle::cstore::LOCAL_CRATE;
use rustc::session::Session;
use rustc::ty::TyCtxt;

use std::fs;
use std::io;
use std::path::{Path, PathBuf};
use syntax::ast;

pub fn dep_graph_path(tcx: TyCtxt) -> Option<PathBuf> {
    tcx_path(tcx, LOCAL_CRATE, "local")
}

pub fn metadata_hash_path(tcx: TyCtxt, cnum: ast::CrateNum) -> Option<PathBuf> {
    tcx_path(tcx, cnum, "metadata")
}

pub fn tcx_work_products_path(tcx: TyCtxt) -> Option<PathBuf> {
    let crate_name = tcx.crate_name(LOCAL_CRATE);
    sess_work_products_path(tcx.sess, &crate_name)
}

pub fn sess_work_products_path(sess: &Session,
                               local_crate_name: &str)
                               -> Option<PathBuf> {
    let crate_disambiguator = sess.local_crate_disambiguator();
    path(sess, local_crate_name, &crate_disambiguator, "work-products")
}

pub fn in_incr_comp_dir(sess: &Session, file_name: &str) -> Option<PathBuf> {
    sess.opts.incremental.as_ref().map(|incr_dir| incr_dir.join(file_name))
}

fn tcx_path(tcx: TyCtxt,
            cnum: ast::CrateNum,
            middle: &str)
            -> Option<PathBuf> {
    path(tcx.sess, &tcx.crate_name(cnum), &tcx.crate_disambiguator(cnum), middle)
}

fn path(sess: &Session,
        crate_name: &str,
        crate_disambiguator: &str,
        middle: &str)
        -> Option<PathBuf> {
    // For now, just save/load dep-graph from
    // directory/dep_graph.rbml
    sess.opts.incremental.as_ref().and_then(|incr_dir| {
        match create_dir_racy(&incr_dir) {
            Ok(()) => {}
            Err(err) => {
                sess.err(
                    &format!("could not create the directory `{}`: {}",
                             incr_dir.display(), err));
                return None;
            }
        }

        let file_name = format!("{}-{}.{}.bin", crate_name, crate_disambiguator, middle);

        Some(incr_dir.join(file_name))
    })
}

// Like std::fs::create_dir_all, except handles concurrent calls among multiple
// threads or processes.
fn create_dir_racy(path: &Path) -> io::Result<()> {
    match fs::create_dir(path) {
        Ok(()) => return Ok(()),
        Err(ref e) if e.kind() == io::ErrorKind::AlreadyExists => return Ok(()),
        Err(ref e) if e.kind() == io::ErrorKind::NotFound => {}
        Err(e) => return Err(e),
    }
    match path.parent() {
        Some(p) => try!(create_dir_racy(p)),
        None => return Err(io::Error::new(io::ErrorKind::Other,
                                          "failed to create whole tree")),
    }
    match fs::create_dir(path) {
        Ok(()) => Ok(()),
        Err(ref e) if e.kind() == io::ErrorKind::AlreadyExists => Ok(()),
        Err(e) => Err(e),
    }
}