Sayonara Player
LastFM.h
1 /* LastFM.h */
2 
3 /* Copyright (C) 2011-2017 Lucio Carreras
4  *
5  * This file is part of sayonara player
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11 
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16 
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 
22 /*
23  * LastFM.h
24  *
25  * Created on: Apr 19, 2011
26  * Author: Lucio Carreras
27  */
28 
29 #ifndef LASTFM_H_
30 #define LASTFM_H_
31 
32 #include "Helper/Settings/SayonaraClass.h"
33 #include "Helper/typedefs.h"
34 #include "Helper/Singleton.h"
35 #include "Helper/Pimpl.h"
36 
37 #include <QMap>
38 #include <QObject>
39 
40 // singleton base LastFM API class
41 // signals and slots are handled by the adapter class
42 class MetaData;
43 
44 class LastFM :
45  public QObject,
46  protected SayonaraClass
47 {
48  Q_OBJECT
49  SINGLETON(LastFM)
50 
51  signals:
52  void sig_logged_in(bool);
53 
54  public slots:
55  void psl_login();
56 
57 
58  private slots:
59  void sl_login_thread_finished(bool success);
60  void sl_similar_artists_available(IDList artist_ids);
61  void sl_track_changed(const MetaData& md);
62  void sl_position_ms_changed(quint64 pos_ms);
63  void sl_scrobble_response(const QByteArray& data);
64  void sl_scrobble_error(const QString& str);
65 
66 
67  public:
68  bool is_logged_in();
69  static void get_login(QString& user, QString& pw);
70 
71 
72  private:
73  PIMPL(LastFM)
74 
75  bool init_track_changed_thread();
76  void get_similar_artists(const QString& artist);
77 
78  void reset_scrobble();
79  bool check_scrobble(quint64 pos_ms);
80  void scrobble(const MetaData& md);
81  bool update_track(const MetaData& md);
82 };
83 
84 #endif /* LASTFM_H_ */
Definition: LastFM.h:44
The SayonaraClass class provides access to Settings and notifications.
Definition: SayonaraClass.h:29
The MetaData class.
Definition: MetaData.h:55