Clementine-audio-player-Mac.../src/globalsearch/searchprovider.h

158 lines
5.1 KiB
C
Raw Normal View History

/* This file is part of Clementine.
Copyright 2010, David Sansome <me@davidsansome.com>
Clementine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Clementine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SEARCHPROVIDER_H
#define SEARCHPROVIDER_H
#include <QIcon>
#include <QMetaType>
#include <QObject>
#include "core/song.h"
#include "globalsearch/common.h"
class MimeData;
class SearchProvider : public QObject {
Q_OBJECT
public:
SearchProvider(QObject* parent = 0);
static const int kArtHeight;
struct Result {
Result(SearchProvider* provider = 0)
: provider_(provider), album_size_(0) {}
2011-09-20 09:57:18 +02:00
// This must be set by the provider using the constructor.
SearchProvider* provider_;
2011-08-28 23:52:24 +02:00
// These must be set explicitly by the provider.
globalsearch::Type type_;
globalsearch::MatchQuality match_quality_;
Song metadata_;
// How many songs in the album - valid only if type == Type_Album.
int album_size_;
2011-08-28 23:52:24 +02:00
// Songs in the album - valid only if type == Type_Album. This is only
// used for display in the tooltip, so it's fine not to provide it.
SongList album_songs_;
2011-08-28 23:52:24 +02:00
QString pixmap_cache_key_;
};
typedef QList<Result> ResultList;
enum Hint {
NoHints = 0x00,
// Indicates that queries to this provider mean making requests to a third
// party. To be polite, queries should be buffered by a few milliseconds
// instead of executing them each time the user types a character.
WantsDelayedQueries = 0x01,
// Indicates that this provider wants to be given art queries one after the
// other (serially), instead of all at once (in parallel).
WantsSerialisedArtQueries = 0x02,
// Indicates that album cover art is probably going to be loaded remotely.
// If a third-party application is making art requests over dbus and has
// to get all the art it can before showing results to the user, it might
// not load art from this provider.
ArtIsProbablyRemote = 0x04
};
Q_DECLARE_FLAGS(Hints, Hint)
const QString& name() const { return name_; }
2011-09-17 18:42:14 +02:00
const QString& id() const { return id_; }
const QIcon& icon() const { return icon_; }
Hints hints() const { return hints_; }
bool wants_delayed_queries() const { return hints() & WantsDelayedQueries; }
bool wants_serialised_art() const { return hints() & WantsSerialisedArtQueries; }
bool art_is_probably_remote() const { return hints() & ArtIsProbablyRemote; }
// Starts a search. Must emit ResultsAvailable zero or more times and then
// SearchFinished exactly once, using this ID.
virtual void SearchAsync(int id, const QString& query) = 0;
// Starts loading an icon for a result that was previously emitted by
// ResultsAvailable. Must emit ArtLoaded exactly once with this ID.
virtual void LoadArtAsync(int id, const Result& result) = 0;
// Starts loading tracks for a result that was previously emitted by
// ResultsAvailable. Must emit TracksLoaded exactly once with this ID.
virtual void LoadTracksAsync(int id, const Result& result) = 0;
// If provider needs user login to search and play songs, this method should
// be reimplemented
virtual bool IsLoggedIn() { return true; }
virtual void ShowConfig() { }
2011-08-29 00:59:18 +02:00
static QImage ScaleAndPad(const QImage& image);
signals:
void ResultsAvailable(int id, const SearchProvider::ResultList& results);
void SearchFinished(int id);
void ArtLoaded(int id, const QImage& image);
void TracksLoaded(int id, MimeData* mime_data);
protected:
// These functions treat queries in the same way as LibraryQuery. They're
// useful for figuring out whether you got a result because it matched in
// the song title or the artist/album name.
static QStringList TokenizeQuery(const QString& query);
static globalsearch::MatchQuality MatchQuality(const QStringList& tokens, const QString& string);
// Sorts a list of songs by disc, then by track.
static void SortSongs(SongList* list);
2011-09-24 18:01:18 +02:00
// Subclasses must call this from their constructors.
2011-09-17 18:42:14 +02:00
void Init(const QString& name, const QString& id, const QIcon& icon,
Hints hints = NoHints);
private:
QString name_;
2011-09-17 18:42:14 +02:00
QString id_;
QIcon icon_;
Hints hints_;
};
Q_DECLARE_METATYPE(SearchProvider::Result)
2011-09-17 18:42:14 +02:00
Q_DECLARE_METATYPE(SearchProvider::ResultList)
Q_DECLARE_OPERATORS_FOR_FLAGS(SearchProvider::Hints)
class BlockingSearchProvider : public SearchProvider {
Q_OBJECT
public:
BlockingSearchProvider(QObject* parent = 0);
void SearchAsync(int id, const QString& query);
virtual ResultList Search(int id, const QString& query) = 0;
private slots:
void BlockingSearchFinished();
};
#endif // SEARCHPROVIDER_H