aboutsummaryrefslogtreecommitdiff
path: root/src/block.rs
blob: 99a0121f085679ec4d3d6ae85ee75a2b97f09a2a (plain) (blame)
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
use std::path::PathBuf;
use std::sync::Arc;

use tokio::fs;
use tokio::prelude::*;

use crate::data::*;
use crate::error::Error;
use crate::proto::*;
use crate::server::Garage;

fn block_dir(garage: &Garage, hash: &Hash) -> PathBuf {
	let mut path = garage.system.config.data_dir.clone();
	path.push(hex::encode(&hash.as_slice()[0..1]));
	path.push(hex::encode(&hash.as_slice()[1..2]));
	path
}

pub async fn write_block(garage: Arc<Garage>, hash: &Hash, data: &[u8]) -> Result<Message, Error> {
	garage.fs_lock.lock().await;

	let mut path = block_dir(&garage, hash);
	fs::create_dir_all(&path).await?;

	path.push(hex::encode(hash));
	if fs::metadata(&path).await.is_ok() {
		return Ok(Message::Ok);
	}

	let mut f = fs::File::create(path).await?;
	f.write_all(data).await?;
	drop(f);

	Ok(Message::Ok)
}

pub async fn read_block(garage: Arc<Garage>, hash: &Hash) -> Result<Message, Error> {
	let mut path = block_dir(&garage, hash);
	path.push(hex::encode(hash));

	let mut f = fs::File::open(path).await?;
	let mut data = vec![];
	f.read_to_end(&mut data).await?;

	Ok(Message::PutBlock(PutBlockMessage {
		hash: hash.clone(),
		data,
	}))
}