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
extern crate libc;
extern crate loopdev;
#[macro_use]
extern crate bitflags;
mod fstype;
mod mount;
mod supported;
mod umount;
pub use self::{fstype::*, mount::*, supported::*, umount::*};
use libc::swapoff as c_swapoff;
use std::{
ffi::CString,
io::{self, Error, ErrorKind},
os::unix::ffi::OsStrExt,
path::Path,
ptr,
};
pub fn swapoff<P: AsRef<Path>>(dest: P) -> io::Result<()> {
unsafe {
let swap = CString::new(dest.as_ref().as_os_str().as_bytes().to_owned());
let swap_ptr = swap.as_ref().ok().map_or(ptr::null(), |cstr| cstr.as_ptr());
match c_swapoff(swap_ptr) {
0 => Ok(()),
_err => Err(Error::new(
ErrorKind::Other,
format!(
"failed to swapoff {}: {}",
dest.as_ref().display(),
Error::last_os_error()
),
)),
}
}
}
fn to_cstring(data: &[u8]) -> io::Result<CString> {
CString::new(data).map_err(|why| {
io::Error::new(io::ErrorKind::InvalidData, format!("failed to create `CString`: {}", why))
})
}