~ubuntu-branches/ubuntu/trusty/tomahawk/trusty-proposed

« back to all changes in this revision

Viewing changes to src/infoplugins/generic/echonest/EchonestPlugin.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-03-07 21:50:13 UTC
  • Revision ID: package-import@ubuntu.com-20130307215013-6gdjkdds7i9uenvs
Tags: upstream-0.6.0+dfsg
ImportĀ upstreamĀ versionĀ 0.6.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
 
2
 *
 
3
 *   Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
 
4
 *   Copyright 2010-2011, Jeff Mitchell <jeff@tomahawk-player.org>
 
5
 *
 
6
 *   Tomahawk is free software: you can redistribute it and/or modify
 
7
 *   it under the terms of the GNU General Public License as published by
 
8
 *   the Free Software Foundation, either version 3 of the License, or
 
9
 *   (at your option) any later version.
 
10
 *
 
11
 *   Tomahawk is distributed in the hope that it will be useful,
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
14
 *   GNU General Public License for more details.
 
15
 *
 
16
 *   You should have received a copy of the GNU General Public License
 
17
 *   along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef ECHONESTPLUGIN_H
 
21
#define ECHONESTPLUGIN_H
 
22
 
 
23
#include "infoplugins/InfoPluginDllMacro.h"
 
24
#include "infosystem/InfoSystem.h"
 
25
#include "infosystem/InfoSystemWorker.h"
 
26
#include "echonest/Artist.h"
 
27
 
 
28
#include <QObject>
 
29
 
 
30
class QNetworkReply;
 
31
 
 
32
namespace Tomahawk
 
33
{
 
34
 
 
35
namespace InfoSystem
 
36
{
 
37
 
 
38
class INFOPLUGINDLLEXPORT EchonestPlugin : public InfoPlugin
 
39
{
 
40
    Q_OBJECT
 
41
    Q_INTERFACES( Tomahawk::InfoSystem::InfoPlugin )
 
42
 
 
43
public:
 
44
    EchonestPlugin();
 
45
    virtual ~EchonestPlugin();
 
46
 
 
47
protected slots:
 
48
    virtual void init();
 
49
    
 
50
    virtual void getInfo( Tomahawk::InfoSystem::InfoRequestData requestData );
 
51
 
 
52
    virtual void pushInfo( Tomahawk::InfoSystem::InfoPushData pushData )
 
53
    {
 
54
        Q_UNUSED( pushData );
 
55
    }
 
56
 
 
57
    virtual void notInCacheSlot( Tomahawk::InfoSystem::InfoStringHash criteria, Tomahawk::InfoSystem::InfoRequestData requestData )
 
58
    {
 
59
        Q_UNUSED( criteria );
 
60
        Q_UNUSED( requestData );
 
61
    }
 
62
 
 
63
private:
 
64
    void getSongProfile( const Tomahawk::InfoSystem::InfoRequestData &requestData, const QString &item = QString() );
 
65
    void getArtistBiography( const Tomahawk::InfoSystem::InfoRequestData &requestData );
 
66
    void getArtistFamiliarity( const Tomahawk::InfoSystem::InfoRequestData &requestData );
 
67
    void getArtistHotttnesss( const Tomahawk::InfoSystem::InfoRequestData &requestData );
 
68
    void getArtistTerms( const Tomahawk::InfoSystem::InfoRequestData &requestData );
 
69
    void getMiscTopTerms( const Tomahawk::InfoSystem::InfoRequestData &requestData );
 
70
 
 
71
    bool isValidArtistData( const Tomahawk::InfoSystem::InfoRequestData &requestData );
 
72
    bool isValidTrackData( const Tomahawk::InfoSystem::InfoRequestData &requestData );
 
73
    Echonest::Artist artistFromReply( QNetworkReply* );
 
74
 
 
75
private slots:
 
76
    void getArtistBiographySlot();
 
77
    void getArtistFamiliaritySlot();
 
78
    void getArtistHotttnesssSlot();
 
79
    void getArtistTermsSlot();
 
80
    void getMiscTopSlot();
 
81
};
 
82
 
 
83
}
 
84
 
 
85
}
 
86
 
 
87
#endif // ECHONESTPLUGIN_H