[libcalamares] Apply locking to GS access
This commit is contained in:
parent
dc5d98af7d
commit
ac713d8c4b
@ -27,12 +27,35 @@
|
||||
|
||||
#include <QFile>
|
||||
#include <QJsonDocument>
|
||||
#include <QMutexLocker>
|
||||
|
||||
using CalamaresUtils::operator""_MiB;
|
||||
|
||||
namespace Calamares
|
||||
{
|
||||
|
||||
class GlobalStorage::ReadLock : public QMutexLocker
|
||||
{
|
||||
public:
|
||||
ReadLock( const GlobalStorage* gs )
|
||||
: QMutexLocker( &gs->m_mutex )
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
class GlobalStorage::WriteLock : public QMutexLocker
|
||||
{
|
||||
public:
|
||||
WriteLock( GlobalStorage* gs )
|
||||
: QMutexLocker( &gs->m_mutex )
|
||||
, m_gs( gs )
|
||||
{
|
||||
}
|
||||
~WriteLock() { m_gs->changed(); }
|
||||
|
||||
GlobalStorage* m_gs;
|
||||
};
|
||||
|
||||
GlobalStorage::GlobalStorage( QObject* parent )
|
||||
: QObject( parent )
|
||||
{
|
||||
@ -42,6 +65,7 @@ GlobalStorage::GlobalStorage( QObject* parent )
|
||||
bool
|
||||
GlobalStorage::contains( const QString& key ) const
|
||||
{
|
||||
ReadLock l( this );
|
||||
return m.contains( key );
|
||||
}
|
||||
|
||||
@ -49,6 +73,7 @@ GlobalStorage::contains( const QString& key ) const
|
||||
int
|
||||
GlobalStorage::count() const
|
||||
{
|
||||
ReadLock l( this );
|
||||
return m.count();
|
||||
}
|
||||
|
||||
@ -56,14 +81,15 @@ GlobalStorage::count() const
|
||||
void
|
||||
GlobalStorage::insert( const QString& key, const QVariant& value )
|
||||
{
|
||||
WriteLock l( this );
|
||||
m.insert( key, value );
|
||||
emit changed();
|
||||
}
|
||||
|
||||
|
||||
QStringList
|
||||
GlobalStorage::keys() const
|
||||
{
|
||||
ReadLock l( this );
|
||||
return m.keys();
|
||||
}
|
||||
|
||||
@ -71,8 +97,8 @@ GlobalStorage::keys() const
|
||||
int
|
||||
GlobalStorage::remove( const QString& key )
|
||||
{
|
||||
WriteLock l( this );
|
||||
int nItems = m.remove( key );
|
||||
emit changed();
|
||||
return nItems;
|
||||
}
|
||||
|
||||
@ -80,12 +106,14 @@ GlobalStorage::remove( const QString& key )
|
||||
QVariant
|
||||
GlobalStorage::value( const QString& key ) const
|
||||
{
|
||||
ReadLock l( this );
|
||||
return m.value( key );
|
||||
}
|
||||
|
||||
void
|
||||
GlobalStorage::debugDump() const
|
||||
{
|
||||
ReadLock l( this );
|
||||
cDebug() << "GlobalStorage" << Logger::Pointer( this ) << m.count() << "items";
|
||||
for ( auto it = m.cbegin(); it != m.cend(); ++it )
|
||||
{
|
||||
@ -96,6 +124,7 @@ GlobalStorage::debugDump() const
|
||||
bool
|
||||
GlobalStorage::saveJson( const QString& filename ) const
|
||||
{
|
||||
ReadLock l( this );
|
||||
QFile f( filename );
|
||||
if ( !f.open( QFile::WriteOnly ) )
|
||||
{
|
||||
@ -128,6 +157,7 @@ GlobalStorage::loadJson( const QString& filename )
|
||||
}
|
||||
else
|
||||
{
|
||||
WriteLock l( this );
|
||||
auto map = d.toVariant().toMap();
|
||||
for ( auto i = map.constBegin(); i != map.constEnd(); ++i )
|
||||
{
|
||||
@ -141,6 +171,7 @@ GlobalStorage::loadJson( const QString& filename )
|
||||
bool
|
||||
GlobalStorage::saveYaml( const QString& filename ) const
|
||||
{
|
||||
ReadLock l( this );
|
||||
return CalamaresUtils::saveYaml( filename, m );
|
||||
}
|
||||
|
||||
@ -151,9 +182,11 @@ GlobalStorage::loadYaml( const QString& filename )
|
||||
auto gs = CalamaresUtils::loadYaml( filename, &ok );
|
||||
if ( ok )
|
||||
{
|
||||
WriteLock l( this );
|
||||
m = gs;
|
||||
return true;
|
||||
}
|
||||
return ok;
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user