fs4/
lib.rs

1//! Extended utilities for working with files and filesystems in Rust.
2#![doc(html_root_url = "https://docs.rs/fs4/0.12.0")]
3#![cfg_attr(test, feature(test))]
4#![cfg_attr(docsrs, feature(doc_cfg))]
5#![cfg_attr(docsrs, allow(unused_attributes))]
6#![allow(unexpected_cfgs, unstable_name_collisions)]
7
8#[cfg(windows)]
9extern crate windows_sys;
10
11macro_rules! cfg_async_std {
12    ($($item:item)*) => {
13        $(
14            #[cfg(feature = "async-std")]
15            #[cfg_attr(docsrs, doc(cfg(feature = "async-std")))]
16            $item
17        )*
18    }
19}
20
21// This lint is a bug, it is being used in multiple places.
22#[allow(unused_macros)]
23macro_rules! cfg_fs_err2 {
24    ($($item:item)*) => {
25        $(
26            #[cfg(feature = "fs-err2")]
27            #[cfg_attr(docsrs, doc(cfg(feature = "fs-err2")))]
28            $item
29        )*
30    }
31}
32
33macro_rules! cfg_fs_err2_tokio {
34    ($($item:item)*) => {
35        $(
36            #[cfg(feature = "fs-err2-tokio")]
37            #[cfg_attr(docsrs, doc(cfg(feature = "fs-err2-tokio")))]
38            $item
39        )*
40    }
41}
42
43// This lint is a bug, it is being used in multiple places.
44#[allow(unused_macros)]
45macro_rules! cfg_fs_err3 {
46    ($($item:item)*) => {
47        $(
48            #[cfg(feature = "fs-err3")]
49            #[cfg_attr(docsrs, doc(cfg(feature = "fs-err3")))]
50            $item
51        )*
52    }
53}
54
55macro_rules! cfg_fs_err3_tokio {
56    ($($item:item)*) => {
57        $(
58            #[cfg(feature = "fs-err3-tokio")]
59            #[cfg_attr(docsrs, doc(cfg(feature = "fs-err3-tokio")))]
60            $item
61        )*
62    }
63}
64
65macro_rules! cfg_smol {
66    ($($item:item)*) => {
67        $(
68            #[cfg(feature = "smol")]
69            #[cfg_attr(docsrs, doc(cfg(feature = "smol")))]
70            $item
71        )*
72    }
73}
74
75macro_rules! cfg_tokio {
76    ($($item:item)*) => {
77        $(
78            #[cfg(feature = "tokio")]
79            #[cfg_attr(docsrs, doc(cfg(feature = "tokio")))]
80            $item
81        )*
82    }
83}
84
85macro_rules! cfg_sync {
86  ($($item:item)*) => {
87      $(
88          #[cfg(feature = "sync")]
89          #[cfg_attr(docsrs, doc(cfg(feature = "sync")))]
90          $item
91      )*
92  }
93}
94
95macro_rules! cfg_fs2_err {
96    ($($item:item)*) => {
97        $(
98            #[cfg(feature = "fs-err2")]
99            #[cfg_attr(docsrs, doc(cfg(feature = "fs-err2")))]
100            $item
101        )*
102    }
103}
104
105macro_rules! cfg_fs3_err {
106    ($($item:item)*) => {
107        $(
108            #[cfg(feature = "fs-err3")]
109            #[cfg_attr(docsrs, doc(cfg(feature = "fs-err3")))]
110            $item
111        )*
112    }
113}
114
115macro_rules! cfg_async {
116    ($($item:item)*) => {
117        $(
118            #[cfg(any(feature = "smol", feature = "async-std", feature = "tokio", feature = "fs-err-tokio"))]
119            #[cfg_attr(docsrs, doc(cfg(any(feature = "smol", feature = "async-std", feature = "tokio", feature = "fs-err-tokio"))))]
120            $item
121        )*
122    }
123}
124
125#[cfg(unix)]
126mod unix;
127#[cfg(unix)]
128use unix as sys;
129
130#[cfg(windows)]
131mod windows;
132
133#[cfg(windows)]
134use windows as sys;
135
136mod file_ext;
137
138cfg_sync!(
139    pub mod fs_std {
140        pub use crate::file_ext::sync_impl::std_impl::FileExt;
141    }
142);
143
144cfg_fs_err2!(
145    pub mod fs_err2 {
146        pub use crate::file_ext::sync_impl::fs_err2_impl::FileExt;
147    }
148);
149
150cfg_fs_err3!(
151    pub mod fs_err3 {
152        pub use crate::file_ext::sync_impl::fs_err3_impl::FileExt;
153    }
154);
155
156cfg_async_std!(
157    pub mod async_std {
158        pub use crate::file_ext::async_impl::async_std_impl::AsyncFileExt;
159    }
160);
161
162cfg_fs_err2_tokio!(
163    pub mod fs_err2_tokio {
164        pub use crate::file_ext::async_impl::fs_err2_tokio_impl::AsyncFileExt;
165    }
166);
167
168cfg_fs_err3_tokio!(
169    pub mod fs_err3_tokio {
170        pub use crate::file_ext::async_impl::fs_err3_tokio_impl::AsyncFileExt;
171    }
172);
173
174cfg_smol!(
175    pub mod smol {
176        pub use crate::file_ext::async_impl::smol_impl::AsyncFileExt;
177    }
178);
179
180cfg_tokio!(
181    pub mod tokio {
182        pub use crate::file_ext::async_impl::tokio_impl::AsyncFileExt;
183    }
184);
185
186mod fs_stats;
187pub use fs_stats::FsStats;
188
189use std::io::{Error, Result};
190use std::path::Path;
191
192/// Returns the error that a call to a try lock method on a contended file will
193/// return.
194pub fn lock_contended_error() -> Error {
195    sys::lock_error()
196}
197
198/// Get the stats of the file system containing the provided path.
199pub fn statvfs<P>(path: P) -> Result<FsStats>
200where
201    P: AsRef<Path>,
202{
203    sys::statvfs(path.as_ref())
204}
205
206/// Returns the number of free bytes in the file system containing the provided
207/// path.
208pub fn free_space<P>(path: P) -> Result<u64>
209where
210    P: AsRef<Path>,
211{
212    statvfs(path).map(|stat| stat.free_space)
213}
214
215/// Returns the available space in bytes to non-priveleged users in the file
216/// system containing the provided path.
217pub fn available_space<P>(path: P) -> Result<u64>
218where
219    P: AsRef<Path>,
220{
221    statvfs(path).map(|stat| stat.available_space)
222}
223
224/// Returns the total space in bytes in the file system containing the provided
225/// path.
226pub fn total_space<P>(path: P) -> Result<u64>
227where
228    P: AsRef<Path>,
229{
230    statvfs(path).map(|stat| stat.total_space)
231}
232
233/// Returns the filesystem's disk space allocation granularity in bytes.
234/// The provided path may be for any file in the filesystem.
235///
236/// On Posix, this is equivalent to the filesystem's block size.
237/// On Windows, this is equivalent to the filesystem's cluster size.
238pub fn allocation_granularity<P>(path: P) -> Result<u64>
239where
240    P: AsRef<Path>,
241{
242    statvfs(path).map(|stat| stat.allocation_granularity)
243}