Hiding unaccessible buttons
[someplayer] / src / library.h
1 /*
2  * SomePlayer - An alternate music player for Maemo 5
3  * Copyright (C) 2010 Nikolay (somebody) Tischenko <niktischenko@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  */
19
20 #ifndef LIBRARY
21 #define LIBRARY
22
23 #include "someplayer.h"
24 #include "track.h"
25 #include "playlist.h"
26 #include "dbstorage.h"
27 #include "filestorage.h"
28 #include "mediascanner.h"
29 #include "tagresolver.h"
30
31 // represents media library: tracks, playlists
32 // it uses different media storages for tracks and playlists
33 // but dynamic playlits will be stored with tracks into the same storage
34
35 using SomePlayer::DataObjects::Track;
36 using SomePlayer::DataObjects::Playlist;
37 using SomePlayer::Storage::DbStorage;
38 using SomePlayer::Storage::FileStorage;
39 using SomePlayer::Storage::MediaScanner;
40
41 namespace SomePlayer {
42         namespace DataObjects {
43
44                 class Library : public QObject {
45                         Q_OBJECT
46                 public:
47                         Library(QString databasePath, QString playlistsPath);
48                         ~Library();
49
50                         void addDirectory(QString path, bool async = true);
51                         void addFile(QString path);
52
53                         QList<QString> getDirectories();
54                         QList<QString> getArtists();
55                         QMap<QString, int> getAlbumsForArtist(QString artist);
56                         QList<Track> getTracksForAlbum(QString album, QString artist);
57
58                         QList<Track> search(QString pattern);
59
60                         Playlist getFavorites();
61                         Playlist getMostPlayed();
62                         Playlist getNeverPlayed();
63                         Playlist getRecentlyAdded();
64
65                         int getArtistsCount();
66                         int getAlbumsCount();
67                         int getTracksCount();
68
69                         QList<Playlist> getPlaylists();
70                         QStringList getPlaylistsNames();
71                         Playlist getPlaylist(QString name);
72                         void savePlaylist(const Playlist &playlist);
73                         void removePlaylist(const Playlist &playlist);
74                         void removePlaylist(QString name);
75
76                         Playlist getCurrentPlaylist();
77                         void saveCurrentPlaylist(const Playlist &playlist);
78
79                         void updateDirectories(QList<QString> directories);
80                         void updateAll();
81                         void deleteDirectories(QList<QString> directories);
82
83                 signals:
84                         void started();
85                         void done();
86                         void busy(QString);
87                         void allCount(int);
88                         void tick();
89
90                 private:
91                         DbStorage *_library_storage;
92                         FileStorage *_playlist_storage;
93                         MediaScanner *_scanner;
94                         TagResolver *_resolver;
95
96                 private slots:
97                         void _scanned(QStringList);
98                         void _decoded(Track);
99
100                 public slots:
101                         void removeTrack(Track);
102                         void addTrack(Track);
103                         void addToFavorites(Track);
104                         void updateTrackCount(Track);
105                         void updateTrackMetadata(Track);
106                         void updatePlaylists();
107                 };
108
109         };
110 };
111
112 #endif