Moved to XSPF~
[someplayer] / src / filestorage.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 FILE_STORAGE
21 #define FILE_STORAGE
22
23 #include "someplayer.h"
24 #include "storage.h"
25 #include "playlist.h"
26
27 #define _CURRENT_PLAYLIST_NAME_ "___current"
28 #define _CURRENT_PLAYLIST_SUBST_ "Now playing"
29 #define _PLAYLIST_FILE_EXTENSION_ "xspf"
30
31 // format: XSPF (http://xspf.org)
32 // required elements:
33 // <extension application="http://example.com">
34 // <cl:clip title="TITLE" artist="ARTIST" album="ALBUM"/>
35 // </extension>
36
37 // represents file-level storage
38 // it store data into separate files (e.g. playlist)
39
40 using SomePlayer::DataObjects::Playlist;
41
42 namespace SomePlayer {
43         namespace Storage {
44
45                 class FileStorage {
46                 public:
47                         FileStorage(QString path);
48
49                         QList<Playlist> getPlaylists();
50                         QStringList getPlaylistsNames();
51                         Playlist getPlaylist(QString name);
52                         void savePlaylist(Playlist playlist);
53                         void removePlaylist(Playlist playlist);
54                         void removePlaylist(QString name);
55
56                         Playlist getCurrentPlaylist();
57                         void saveCurrentPlaylist(Playlist playlist);
58                 private:
59                         QString _path_prefix;
60                 };
61
62         };
63 };
64
65 #endif