Fixed broken image issue in taglib
[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 // legacy _start_
31 #define _PLAYLIST_FILE_EXTENSION_OLD_ "spls"
32 // legacy _end_
33
34 // format: XSPF (http://xspf.org)
35 // required elements:
36 // <extension application="http://example.com">
37 // <cl:clip title="TITLE" artist="ARTIST" album="ALBUM"/>
38 // </extension>
39
40 // represents file-level storage
41 // it store data into separate files (e.g. playlist)
42
43 using SomePlayer::DataObjects::Playlist;
44
45 namespace SomePlayer {
46         namespace Storage {
47
48                 class FileStorage {
49                 public:
50                         FileStorage(QString path);
51
52                         QList<Playlist> getPlaylists();
53                         QStringList getPlaylistsNames();
54                         Playlist getPlaylist(QString name);
55                         void savePlaylist(Playlist playlist);
56                         void removePlaylist(Playlist playlist);
57                         void removePlaylist(QString name);
58
59                         Playlist getCurrentPlaylist();
60                         void saveCurrentPlaylist(Playlist playlist);
61                 private:
62                         QString _path_prefix;
63                 };
64
65         };
66 };
67
68 #endif