gpt4 book ai didi

rust - 如何在 Rust 中实现获取缓存或加载操作?

转载 作者:行者123 更新时间:2023-11-29 08:28:14 26 4
gpt4 key购买 nike

我正在尝试创建一个简单的缓存,它只有一个操作:“从缓存,必要时加载”。这是一个working example (只是为简单起见使用文件加载):

use std::collections::HashMap;
use std::fs::File;
use std::io;
use std::path::{Path, PathBuf};

#[derive(Debug, Default)]
pub struct FileCache {
/// Map storing contents of loaded files.
files: HashMap<PathBuf, Vec<u8>>,
}

impl FileCache {
/// Get a file's contents, loading it if it hasn't yet been loaded.
pub fn get(&mut self, path: &Path) -> io::Result<&[u8]> {
if let Some(_) = self.files.get(path) {
println!("Cached");
return Ok(self.files.get(path).expect("just checked"));
}
let buf = self.load(path)?;
Ok(self.files.entry(path.to_owned()).or_insert(buf))
}
/// Load a file, returning its contents.
fn load(&self, path: &Path) -> io::Result<Vec<u8>> {
println!("Loading");
let mut buf = Vec::new();
use std::io::Read;
File::open(path)?.read_to_end(&mut buf)?;
Ok(buf)
}
}

pub fn main() -> io::Result<()> {
let mut store = FileCache::default();
let path = Path::new("src/main.rs");
println!("Length: {}", store.get(path)?.len());
println!("Length: {}", store.get(path)?.len());
Ok(())
}

if let 的成功分支有一个额外的调用 self.files.get和一个额外的 expect。我们只是调用它并对其进行模式匹配结果,所以我们只想返回匹配项:

    pub fn get(&mut self, path: &Path) -> io::Result<&[u8]> {
if let Some(x) = self.files.get(path) {
println!("Cached");
return Ok(x);
}
let buf = self.load(path)?;
Ok(self.files.entry(path.to_owned()).or_insert(buf))
}

但是这个fails the borrow checker :

error[E0502]: cannot borrow `self.files` as mutable because it is also borrowed as immutable
--> src/main.rs:20:12
|
14 | pub fn get(&mut self, path: &Path) -> io::Result<&[u8]> {
| - let's call the lifetime of this reference `'1`
15 | if let Some(x) = self.files.get(path) {
| ---------- immutable borrow occurs here
16 | println!("Cached");
17 | return Ok(x);
| ----- returning this value requires that `self.files` is borrowed for `'1`
...
20 | Ok(self.files.entry(path.to_owned()).or_insert(buf))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ mutable borrow occurs here

我不明白为什么这两个版本的行为不同。不是self.files 在这两种情况下都借用了 &self 生命周期?在第一形式,我们放弃借用并获得一个新的,但我不明白为什么应该有所作为。第二种形式如何使我违反内存安全,以及如何在不进行额外查找的情况下编写此代码并且 expect 检查?

我读过 How do I write a rust function that can both read and write to a cache? ,这是相关的,但是那里的答案要么重复查找(如在我的工作示例中)或克隆值(过于昂贵),所以还不够。

最佳答案

两种实现都应该是合法的 Rust 代码。 rustc 拒绝第二个的事实实际上是 issue 58910 跟踪的错误.

让我们详细说明:

pub fn get(&mut self, path: &Path) -> io::Result<&[u8]> {
if let Some(x) = self.files.get(path) { // ---+ x
println!("Cached"); // |
return Ok(x); // |
} // |
let buf = self.load(path)?; // |
Ok(self.files.entry(path.to_owned()) // |
.or_insert(buf)) // |
} // v

通过在 let 一些表达式中绑定(bind)到变量 xself.files 被借用为不可变的。相同的 x 稍后返回给调用者,这意味着 self.files 仍然被借用,直到调用者的某个点。因此,在当前的 Rust 借用检查器实现中,self.files 不必要地 一直借用整个 get 函数。它不能在以后再次借用为可变的。未考虑 x 在提前返回后从未​​使用过的事实。

您的第一个实现是解决此问题的方法。因为 let some(_) = ... 没有创建任何绑定(bind),所以它没有同样的问题。尽管由于多次查找,它确实会产生额外的运行时成本。

这是 problem case #3在 Niko 的 NLL RFC 中有描述。好消息是:

TL;DR: Polonius is supposed to fix this.

(Polonius 是更复杂的 Rust 借用检查器的第三个版本,仍在开发中)。

关于rust - 如何在 Rust 中实现获取缓存或加载操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58469070/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com