31 releases (14 stable)

2.1.11 Feb 17, 2024
2.1.10 Jul 16, 2023
2.1.9 Feb 8, 2023
2.1.6 Jul 16, 2022
0.0.17 Jun 26, 2015

#37 in Unix APIs

Download history 1520/week @ 2024-01-03 1309/week @ 2024-01-10 1919/week @ 2024-01-17 1321/week @ 2024-01-24 1796/week @ 2024-01-31 1637/week @ 2024-02-07 1294/week @ 2024-02-14 1991/week @ 2024-02-21 1861/week @ 2024-02-28 1990/week @ 2024-03-06 1953/week @ 2024-03-13 1769/week @ 2024-03-20 1769/week @ 2024-03-27 1955/week @ 2024-04-03 2308/week @ 2024-04-10 1823/week @ 2024-04-17

8,255 downloads per month
Used in 23 crates (11 directly)

MIT license

21KB
281 lines

NAME

file-lock - File locking via POSIX advisory record locks

This crate provides the facility to lock and unlock a file following the advisory record lock scheme as specified by UNIX IEEE Std 1003.1-2001 (POSIX.1) via fcntl().

USAGE

extern crate file_lock;

use file_lock::{FileLock, FileOptions};
use std::io::prelude::*;

fn main() {
    let should_we_block  = true;
    let lock_for_writing = FileOptions::new().write(true).create_new(true);

    let mut filelock = match FileLock::lock("myfile.txt", should_we_block, lock_for_writing) {
        Ok(lock) => lock,
        Err(err) => panic!("Error getting write lock: {}", err),
    };

    filelock.file.write_all(b"Hello, World!").is_ok();

    // Manually unlocking is optional as we unlock on Drop
    filelock.unlock();
}

DOCUMENTATION

SUPPORT

Please report any bugs or feature requests at:

Feel free to fork the repository and submit pull requests :)

DEPENDENCIES

SEE ALSO

AUTHORS

Alfie John

Corey Richardson

Ed Branch

Jacob Turner

Mateusz Kondej

Michael Lohr

Quang Luong

Sebastian Thiel

WARRANTY

IT COMES WITHOUT WARRANTY OF ANY KIND.

COPYRIGHT AND LICENSE

MIT License

Copyright (c) 2021 Alfie John

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~215KB