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
//! ## Load objects through a local directory

use super::Objects;
use checksum::Checksum;
use core::{Object, PathObject};
use core::errors::*;
use hex_slice::HexSlice;
use std::fs::{self, File};
use std::io::{self, Read};
use std::path::{Path, PathBuf};

pub struct FileObjects {
    path: PathBuf,
}

impl FileObjects {
    pub fn new<P: AsRef<Path> + ?Sized>(path: &P) -> FileObjects {
        FileObjects {
            path: path.as_ref().to_owned(),
        }
    }

    fn checksum_path(&self, checksum: &Checksum) -> Result<PathBuf> {
        let path = self.path
            .join(format!("{}", HexSlice::new(&checksum[0..1])));
        let path = path.join(format!("{}", HexSlice::new(&checksum[1..2])));
        Ok(path.join(format!("{}", HexSlice::new(&checksum))))
    }
}

impl Objects for FileObjects {
    fn put_object(&mut self, checksum: &Checksum, source: &mut Read, force: bool) -> Result<()> {
        let target = self.checksum_path(checksum)?;

        // no need to write same file again
        if !target.is_file() || force {
            if let Some(parent) = target.parent() {
                if !parent.is_dir() {
                    debug!("creating directory: {}", parent.display());
                    fs::create_dir_all(parent)?;
                }
            }

            let mut tmp_target = target.clone();
            tmp_target.set_extension(".tmp");

            debug!("writing: {}", target.display());
            io::copy(source, &mut File::create(&tmp_target)?)?;
            fs::rename(tmp_target, target)?;
        }

        Ok(())
    }

    fn get_object(&mut self, checksum: &Checksum) -> Result<Option<Box<Object>>> {
        let target = self.checksum_path(checksum)?;

        if target.is_file() {
            return Ok(Some(Box::new(PathObject::new(None, target))));
        }

        Ok(None)
    }
}