From 3d76006a8343bac1d7e61bd3a288863b463fc2ef Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sun, 11 Nov 2012 12:04:28 +0100 Subject: [PATCH] * Fixed artist & album retrieval. --- src/libtomahawk/Album.cpp | 9 ++++++++- src/libtomahawk/Artist.cpp | 12 +++++++++--- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/src/libtomahawk/Album.cpp b/src/libtomahawk/Album.cpp index 4b3ebcf0d..13e59f074 100644 --- a/src/libtomahawk/Album.cpp +++ b/src/libtomahawk/Album.cpp @@ -75,7 +75,7 @@ Album::get( const Tomahawk::artist_ptr& artist, const QString& name, bool autoCr album->setWeakRef( album.toWeakRef() ); album->loadId( autoCreate ); - s_albumsByName[ key ] = album; + s_albumsByName.insert( key, album ); return album; } @@ -88,6 +88,10 @@ Album::get( unsigned int id, const QString& name, const Tomahawk::artist_ptr& ar static QMutex s_mutex; QMutexLocker lock( &s_idCacheMutex ); + if ( s_albumsByName.contains( name ) ) + { + return s_albumsByName.value( name ); + } if ( s_albumsById.contains( id ) ) { return s_albumsById.value( id ); @@ -97,7 +101,10 @@ Album::get( unsigned int id, const QString& name, const Tomahawk::artist_ptr& ar a->setWeakRef( a.toWeakRef() ); if ( id > 0 ) + { s_albumsById.insert( id, a ); + s_albumsByName.insert( name, a ); + } return a; } diff --git a/src/libtomahawk/Artist.cpp b/src/libtomahawk/Artist.cpp index 486aab5f9..96f65cee9 100644 --- a/src/libtomahawk/Artist.cpp +++ b/src/libtomahawk/Artist.cpp @@ -73,7 +73,7 @@ Artist::get( const QString& name, bool autoCreate ) artist->setWeakRef( artist.toWeakRef() ); artist->loadId( autoCreate ); - s_artistsByName[ name ] = artist; + s_artistsByName.insert( name, artist ); return artist; } @@ -83,6 +83,10 @@ artist_ptr Artist::get( unsigned int id, const QString& name ) { QMutexLocker lock( &s_idCacheMutex ); + if ( s_artistsByName.contains( name ) ) + { + return s_artistsByName.value( name ); + } if ( s_artistsById.contains( id ) ) { return s_artistsById.value( id ); @@ -92,7 +96,10 @@ Artist::get( unsigned int id, const QString& name ) a->setWeakRef( a.toWeakRef() ); if ( id > 0 ) + { + s_artistsByName.insert( name, a ); s_artistsById.insert( id, a ); + } return a; } @@ -257,7 +264,6 @@ Artist::id() const if ( waiting ) { - #if ID_THREAD_DEBUG qDebug() << Q_FUNC_INFO << "Asked for artist ID and NOT loaded yet" << m_name << m_idFuture.isFinished(); #endif @@ -270,7 +276,7 @@ Artist::id() const #if ID_THREAD_DEBUG qDebug() << Q_FUNC_INFO << "Got loaded artist:" << m_name << finalid; #endif - + s_idMutex.lockForWrite(); m_id = finalid; m_waitingForFuture = false;