1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 07:49:42 +01:00

* Tomahawk::Result now keeps track of the originating resolver and maintains a proper online state.

This commit is contained in:
Christian Muehlhaeuser 2012-06-07 10:41:26 +02:00
parent ff50bcb545
commit 530a420fb4
2 changed files with 50 additions and 11 deletions

View File

@ -20,7 +20,9 @@
#include "Album.h"
#include "Collection.h"
#include "Resolver.h"
#include "Source.h"
#include "Pipeline.h"
#include "database/Database.h"
#include "database/DatabaseCommand_Resolve.h"
#include "database/DatabaseCommand_AllTracks.h"
@ -72,6 +74,7 @@ Result::Result( const QString& url )
, m_trackId( 0 )
, m_fileId( 0 )
{
connect( Pipeline::instance(), SIGNAL( resolverRemoved( Tomahawk::Resolver* ) ), SLOT( onResolverRemoved( Tomahawk::Resolver* ) ), Qt::QueuedConnection );
}
@ -94,12 +97,24 @@ Result::deleteLater()
}
void
Result::onResolverRemoved( Tomahawk::Resolver* resolver )
{
if ( m_resolvedBy.data() == resolver )
{
m_resolvedBy.clear();
emit statusChanged();
}
}
artist_ptr
Result::artist() const
{
return m_artist;
}
artist_ptr
Result::composer() const
{
@ -124,18 +139,10 @@ Result::collection() const
float
Result::score() const
{
if ( !collection().isNull() && collection()->source()->isOnline() )
{
if ( isOnline() )
return m_score;
}
else
{
// check if this a valid collection-less result (e.g. from youtube, but ignore offline sources still)
if ( collection().isNull() )
return m_score;
else
return 0.0;
}
return 0.0;
}
@ -152,7 +159,14 @@ Result::id() const
bool
Result::isOnline() const
{
return ( ( !collection().isNull() && collection()->source()->isOnline() ) || collection().isNull() );
if ( !collection().isNull() )
{
return collection()->source()->isOnline();
}
else
{
return !m_resolvedBy.isNull();
}
}
@ -274,3 +288,20 @@ Result::friendlySource() const
else
return collection()->source()->friendlyName();
}
Tomahawk::Resolver*
Result::resolvedBy() const
{
if ( m_resolvedBy.isNull() )
return 0;
return m_resolvedBy.data();
}
void
Result::setResolvedBy( Tomahawk::Resolver* resolver )
{
m_resolvedBy = QWeakPointer< Tomahawk::Resolver >( resolver );
}

View File

@ -36,6 +36,8 @@ class DatabaseCommand_LoadFile;
namespace Tomahawk
{
class Resolver;
class DLLEXPORT Result : public QObject
{
Q_OBJECT
@ -54,6 +56,9 @@ public:
QString toString() const;
Tomahawk::query_ptr toQuery();
Tomahawk::Resolver* resolvedBy() const;
void setResolvedBy( Tomahawk::Resolver* resolver );
float score() const;
RID id() const;
bool isOnline() const;
@ -110,6 +115,8 @@ signals:
private slots:
void onOffline();
void onOnline();
void onResolverRemoved( Tomahawk::Resolver* resolver );
private:
// private constructor
@ -121,6 +128,7 @@ private:
mutable RID m_rid;
collection_ptr m_collection;
Tomahawk::query_ptr m_query;
QWeakPointer< Tomahawk::Resolver > m_resolvedBy;
Tomahawk::artist_ptr m_artist;
Tomahawk::album_ptr m_album;