#权限 #unix #模式

umask

Unix访问模式的处理实用工具

13个版本 (4个稳定版)

2.1.0 2023年3月29日
2.0.0 2022年5月11日
1.0.1 2022年1月28日
1.0.0 2020年5月20日
0.1.6 2019年7月5日

Unix API中排名第113

Download history 2463/week @ 2024-03-14 2808/week @ 2024-03-21 2793/week @ 2024-03-28 3092/week @ 2024-04-04 2959/week @ 2024-04-11 2466/week @ 2024-04-18 3061/week @ 2024-04-25 2883/week @ 2024-05-02 2460/week @ 2024-05-09 2546/week @ 2024-05-16 2187/week @ 2024-05-23 2661/week @ 2024-05-30 2183/week @ 2024-06-06 1935/week @ 2024-06-13 2063/week @ 2024-06-20 1750/week @ 2024-06-27

每月下载量达8,276
21crate中(7个直接使用)

MIT授权

19KB
333

MIT Latest Version docs Chat on Miaou

umask

一个轻量级实用工具,帮助处理Unix模式表示,并使用强类型以避免误用常量。

Mode结构体实现了Display,并以"rwxrwxrwx"的形式打印

导入

在Cargo.toml中

umask = "'2.0"

用法

use umask::*;

// You can build from a number:
assert_eq!("rw-r--r--", Mode::from(0b110100100).to_string());
assert_eq!("rw-r--r--", Mode::from(0o644).to_string());

// You may use `|` to combine class permissions:
let mu = Mode::from(0o640);
let mo = Mode::from(0o044);
assert_eq!("rw-r--r--", (mu | mo).to_string());
assert_eq!("---r-----", (mu & mo).to_string());

// You can use more semantic constructs:
let m = Mode::all()
    .without(ALL_EXEC);
assert_eq!("rw-rw-rw-", m.to_string());
let mut m = Mode::new()
    .with_class_perm(ALL, READ)
    .with_class_perm(USER, WRITE);
assert_eq!("rw-r--r--", m.to_string());
// (semantic functions can be used in const declarations)

// Or
m |= ALL_EXEC;
assert_eq!("rwxr-xr-x", m.to_string());
let m = ALL_READ | USER_WRITE;
assert_eq!("rw-r--r--", m.to_string());

// Displaying the mode can be done with the `Display`
// implementation but also bit per bit for more control
assert_eq!(
    m.to_string().chars().next().unwrap(), // first char: 'r' or '-'
    if m.has(USER_READ) { 'r' } else { '-' },
);

// The `Display` implementation shows the extra permission bits
// (setuid, setgid and sticky):
let mut m = Mode::all()
    .with_extra(STICKY)
    .with_extra(SETUID)
    .with_extra(SETGID);
assert_eq!("rwsrwsrwt", m.to_string());

// But you can remove those bits for display if you want the
// sometimes more familiar 'x' for execution:
assert_eq!("rwxrwxrwx", m.without_any_extra().to_string());

依赖

~295–760KB
~18K SLoC