// Copyright 2013 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use std::rt::io; use std::rt::io::File; use extra::workcache; use sha1::{Digest, Sha1}; /// Hashes the file contents along with the last-modified time pub fn digest_file_with_date(path: &Path) -> ~str { use conditions::bad_path::cond; match io::result(|| File::open(path).read_to_end()) { Ok(bytes) => { let mut sha = Sha1::new(); sha.input(bytes); let st = path.stat(); sha.input_str(st.modified.to_str()); sha.result_str() } Err(e) => { cond.raise((path.clone(), format!("Couldn't read file: {}", e.desc))); ~"" } } } /// Hashes only the last-modified time pub fn digest_only_date(path: &Path) -> ~str { let mut sha = Sha1::new(); let st = path.stat(); sha.input_str(st.modified.to_str()); sha.result_str() } /// Adds multiple discovered outputs pub fn discover_outputs(e: &mut workcache::Exec, outputs: ~[Path]) { debug!("Discovering {:?} outputs", outputs.len()); for p in outputs.iter() { debug!("Discovering output! {}", p.display()); // For now, assume that all discovered outputs are binaries // FIXME (#9639): This needs to handle non-utf8 paths e.discover_output("binary", p.as_str().unwrap(), digest_only_date(p)); } } /// Returns the function name for building a crate pub fn crate_tag(p: &Path) -> ~str { // FIXME (#9639): This needs to handle non-utf8 paths p.as_str().unwrap().to_owned() // implicitly, it's "build(p)"... }