mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
make use of convenience class QMutexLocker in ConcurrentMap
This commit is contained in:
parent
ed59c3f77f
commit
05fc30c1ad
|
@ -3,6 +3,7 @@
|
|||
|
||||
#include <QMap>
|
||||
#include <QMutex>
|
||||
#include <QMutexLocker>
|
||||
|
||||
#include <functional>
|
||||
#include <unordered_map>
|
||||
|
@ -21,54 +22,54 @@ public:
|
|||
bool
|
||||
tryGet(const TKey &name, TValue &value) const
|
||||
{
|
||||
this->mutex.lock();
|
||||
QMutexLocker lock(&this->mutex);
|
||||
|
||||
auto a = map.find(name);
|
||||
if (a == map.end()) {
|
||||
this->mutex.unlock();
|
||||
return false;
|
||||
}
|
||||
|
||||
value = a.value();
|
||||
this->mutex.unlock();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
TValue
|
||||
getOrAdd(const TKey &name, std::function<TValue()> addLambda)
|
||||
{
|
||||
this->mutex.lock();
|
||||
auto a = map.find(name);
|
||||
QMutexLocker lock(&this->mutex);
|
||||
|
||||
auto a = map.find(name);
|
||||
if (a == map.end()) {
|
||||
TValue value = addLambda();
|
||||
map.insert(name, value);
|
||||
this->mutex.unlock();
|
||||
return value;
|
||||
}
|
||||
|
||||
this->mutex.unlock();
|
||||
return a.value();
|
||||
}
|
||||
|
||||
void
|
||||
clear()
|
||||
{
|
||||
this->mutex.lock();
|
||||
QMutexLocker lock(&this->mutex);
|
||||
|
||||
map.clear();
|
||||
this->mutex.unlock();
|
||||
}
|
||||
|
||||
void
|
||||
insert(const TKey &name, const TValue &value)
|
||||
{
|
||||
this->mutex.lock();
|
||||
QMutexLocker lock(&this->mutex);
|
||||
|
||||
map.insert(name, value);
|
||||
this->mutex.unlock();
|
||||
}
|
||||
|
||||
private:
|
||||
mutable QMutex mutex;
|
||||
QMap<TKey, TValue> map;
|
||||
};
|
||||
}
|
||||
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // CONCURRENTMAP_H
|
||||
|
|
Loading…
Reference in a new issue