- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要一个可变的Mutex
集合,需要在多个线程之间共享。此集合的目的是为给定的键返回 MutexGuard 列表(以便能够根据键同步线程)。请注意,初始化时,集合中没有 Mutex
,这些需要在运行时根据 key 创建。
我的代码如下:
use std::collections::HashMap;
use std::sync::{Arc, Mutex, MutexGuard};
struct Bucket {
locks: HashMap<String, Mutex<()>>,
}
impl Bucket {
// This method will create and add one or multiple Mutex to the
// collection (therefore it needs to take self as mutable), according
// to the give key (if the Mutex already exist it will just return
// its MutexGuard).
fn get_guards(
&mut self,
key: impl Into<String>,
) -> Vec<MutexGuard<'_, ()>> {
let lock = self.locks.entry(key.into()).or_default();
vec![lock.lock().unwrap()]
}
}
impl Default for Bucket {
fn default() -> Self {
Self {
locks: HashMap::new(),
}
}
}
fn main() {
// I need to wrap the bucket in a Arc<Mutex> since it's going to be shared
// between multiple threads
let mut bucket = Arc::new(Mutex::new(Bucket::default()));
// Here I need to get a list of guards, so that until they are dropped
// I can synchronize multiple threads with the same key (or to be more
// precise with the same MutexGuards, as different keys may yields the
// same MutexGuards).
let guards = {
// IMPORTANT: I need to unlock the Mutex used for the `bucket` (with
// write access) asap, otherwise it will nullify the purpose of the
// bucket, since the write lock would be hold for the whole `guards`
// scope.
let mut b = bucket.lock().unwrap();
b.get_guards("key")
};
}
我收到的错误如下:
error[E0597]: `b` does not live long enough
--> src/main.rs:29:9
|
27 | let _guards = {
| ------- borrow later stored here
28 | let mut b = bucket.lock().unwrap();
29 | b.get_guards("key")
| ^ borrowed value does not live long enough
30 | };
| - `b` dropped here while still borrowed
error: aborting due to previous error
有没有办法设计我的 Bucket
的 Mutex
集合,以便我能够实现我的目标?
最佳答案
基本上,您想从锁定的对象中借用一个对象,并在其封闭对象解锁后保留它。
在这种情况下,不可能进行非静态借用,因为这是不安全的,例如,任何其他线程都可能会删除您之前借用的对象的所有者。
根据您的逻辑,内部锁
需要在其他线程之间安全地共享,您需要用Arc
包装您的互斥体
。
struct Bucket {
locks: HashMap<String, Arc<Mutex<()>>>,
}
这将返回内部互斥体的原子引用。
//previously get_guards
fn get_mutexes(&mut self, key: impl Into<String>) -> Vec<Arc<Mutex<()>>> {
let lock = self.locks.entry(key.into()).or_default();
vec![lock.clone()]
}
您可以简单地锁定所需的所有互斥体,如下所示:
let mutexes = bucket.lock().unwrap().get_mutexes("key"); // locks(borrows bucket's guard) temporarily in here
let guards: Vec<MutexGuard<'_, ()>> =
mutexes.iter().map(|guard| guard.lock().unwrap()).collect();
请参阅 Playground 上的完整代码
关于multithreading - 如何设计Mutex的可变集合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60431147/
我需要在一个函数内锁定一个 std::map 和两个 boost::multimaps 的操作,因为我们有线程试图访问该函数(以及映射)。 我计划使用“std::mutex mutex_var”来保护
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 已关闭11 年前。 Improve th
或不同的标题: 为什么处置获得的 Mutex 会破坏它? 我有以下代码,真正的代码在几个方法之间产生,并在这个方法休眠的地方做事: bool createdNew; u
如何测量互斥量、信号量或 futex 的延迟?我的意思是两个事件之间的延迟:解锁先前锁定的互斥体和锁定该互斥体。有两种情况:当所有线程/进程都在同一个 CPU 上时(重新调度线程需要多长时间)以及当第
我执行了以下程序,其中我创建了 100 个线程并发执行。请注意这是一个示例程序。我知道下面的程序不需要多线程,但我的目的是测试互斥量。 class ThreadPool{ public:
我有创建多个线程的代码,所有线程都尝试将信息记录在一个文件中我尝试使用互斥锁来登录文件,但是当我使用 Mutex() 和 Mutex(true or false, "name") 对象时,我得到了不同
我正在研究 Rust 示例。有这段代码: fn new(name: &str, left: usize, right: usize) -> Philosopher { Philosopher
我正在实现一个基于 std::queue 的 C++ 消息队列。 因为我需要 popers 在空队列上等待,所以我考虑使用 mutex 进行互斥,并使用 cond 在空队列上挂起线程,就像 glib
在golang中,sync.Mutex Lock和Unlock是usaul操作,但是Lock和defer Unlock的正确顺序是什么? mu.Lock() defer mu.Unlock() 或 d
在 Go 中,我们可以使用: type Data struct { lock *sync.Mutex } 或 type Data struct { lock sync.Mutex
我尝试摆脱代码中的一些 boost 依赖项,转而使用新的 C++11 功能 (Visual Studio 2013)。 在我的一个组件中,我使用了 boost::mutex与 boost::lock_
我正在使用 scoped_lock 和 mutex 来实现 BlockingQueue posted in a different SO question 的一个版本, 但在 boost 中有多个不同
我在互斥锁析构函数中遇到了上述错误。由于错误可能是由于互斥锁在销毁过程中处于锁定状态,所以我创建了一个新的互斥锁类,它继承自 boost:mutex。这是为了确保互斥锁在销毁期间解锁。但是,仍然会出现
今天写了一些代码来测试mutex的性能。 这是 boost(1.54) 版本,在 vs2010 上编译并进行了 O2 优化: boost::mutex m; auto start = boost::c
我不知道我没有做什么,但我根本无法让自己的调试器保存正在调试的应用程序的“Mutex Owned”或“Mutex Free”信息。 如果我按如下方式调用它,CDB 就可以正常工作: cdb -pn
还没有网上的例子来生动地演示这一点。在 http://en.cppreference.com/w/cpp/header/shared_mutex 看到了一个例子但目前还不清楚。有人可以帮忙吗? 最佳答
我有两个用例。 A.我想同步访问两个线程的队列。 B.我想同步两个线程对队列的访问并使用条件变量,因为其中一个线程将等待另一个线程将内容存储到队列中。 对于用例 A,我看到了使用 std::lock_
我编写了一个小型 Go 库 ( go-patan ),用于收集某些变量的运行最小值/最大值/平均值/标准偏差。我将它与等效的 Java 实现 ( patan ) 进行了比较,令我惊讶的是 Java 实
我想知道这两者之间的区别是什么 boost::timed_mutex _mutex; if(_mutex.timed_lock(boost::get_system_time() + boost::po
我正在尝试将 dyn 特征存储在 Arc>>>> 中,但是由于某种原因它不起作用 use std::sync::{Arc, Mutex}; trait A{} struct B{} impl A fo
我是一名优秀的程序员,十分优秀!