-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathunix.rs
95 lines (81 loc) · 2.79 KB
/
unix.rs
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
// TODO once Rust's libc has flock implemented for WASI, this file needs to be revisited.
// What needs to be changed is commented below.
// See also: https://github.com/WebAssembly/wasi-filesystem/issues/2
// Remove this line once wasi-libc has flock
#![cfg_attr(target_os = "wasi", allow(unused_imports))]
use crate::{DatabaseError, Result, StorageBackend};
use std::fs::File;
use std::io;
#[cfg(unix)]
use std::os::unix::{fs::FileExt, io::AsRawFd};
#[cfg(target_os = "wasi")]
use std::os::wasi::{fs::FileExt, io::AsRawFd};
/// Stores a database as a file on-disk.
#[derive(Debug)]
pub struct FileBackend {
file: File,
}
impl FileBackend {
/// Creates a new backend which stores data to the given file.
// This is a no-op until we get flock in wasi-libc.
// Delete this function when we get flock.
#[cfg(target_os = "wasi")]
pub fn new(file: File) -> Result<Self, DatabaseError> {
Ok(Self { file })
}
/// Creates a new backend which stores data to the given file.
#[cfg(unix)] // remove this line when wasi-libc gets flock
pub fn new(file: File) -> Result<Self, DatabaseError> {
let fd = file.as_raw_fd();
let result = unsafe { libc::flock(fd, libc::LOCK_EX | libc::LOCK_NB) };
if result != 0 {
let err = io::Error::last_os_error();
if err.kind() == io::ErrorKind::WouldBlock {
Err(DatabaseError::DatabaseAlreadyOpen)
} else {
Err(err.into())
}
} else {
Ok(Self { file })
}
}
}
impl StorageBackend for FileBackend {
fn len(&self) -> Result<u64, io::Error> {
Ok(self.file.metadata()?.len())
}
fn read(&self, offset: u64, len: usize) -> Result<Vec<u8>, io::Error> {
let mut buffer = vec![0; len];
self.file.read_exact_at(&mut buffer, offset)?;
Ok(buffer)
}
fn set_len(&self, len: u64) -> Result<(), io::Error> {
self.file.set_len(len)
}
#[cfg(not(target_os = "macos"))]
fn sync_data(&self, _: bool) -> Result<(), io::Error> {
self.file.sync_data()
}
#[cfg(target_os = "macos")]
fn sync_data(&self, eventual: bool) -> Result<(), io::Error> {
if eventual {
let code = unsafe { libc::fcntl(self.file.as_raw_fd(), libc::F_BARRIERFSYNC) };
if code == -1 {
Err(io::Error::last_os_error())
} else {
Ok(())
}
} else {
self.file.sync_data()
}
}
fn write(&self, offset: u64, data: &[u8]) -> Result<(), io::Error> {
self.file.write_all_at(data, offset)
}
}
#[cfg(unix)] // remove this line when wasi-libc gets flock
impl Drop for FileBackend {
fn drop(&mut self) {
unsafe { libc::flock(self.file.as_raw_fd(), libc::LOCK_UN) };
}
}