#cleanup #raii #resources #up #object #cleaning #wrapper

autocleanup

非 RAII 对象的 RAII 包装器

1 个不稳定版本

0.8.0 2020年7月11日

#11 in #cleaning

0BSD 许可证

4KB

使用 RIAA 清理非 RIAA 资源的简单库。

需要自动清理资源的函数可以创建一个 AutoCleanup 对象,该对象将自动清理这些资源。

use std::path::Path;
use autocleanup::AutoCleanup;

fn do_something() -> Result<(), std::io::Error> {
  let mut ac = AutoCleanup::new();
  ac.push_file("/tmp/foo.sock");

  // .. do things ..

  Ok(())
  // /tmp/foo.sock will automatically be removed as the function
  // returns.
}

注意 Drop 特性的注意事项;例如,调用 std::process::exit() 将导致 Drop 特性不会运行。

因为清理是在 Drop 期间发生的,所以没有对失败清理的错误处理 — 错误将被静默忽略。

无运行时依赖