Version bump
[someplayer] / src / filestorage.h
index bc9c803..1bdbc09 100644 (file)
@@ -1,16 +1,69 @@
+/*
+ * SomePlayer - An alternate music player for Maemo 5
+ * Copyright (C) 2010 Nikolay (somebody) Tischenko <niktischenko@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+ */
+
 #ifndef FILE_STORAGE
 #define FILE_STORAGE
 
 #include "someplayer.h"
 #include "storage.h"
+#include "playlist.h"
+
+#define _CURRENT_PLAYLIST_NAME_ "___current"
+#define _CURRENT_PLAYLIST_SUBST_ "Now playing"
+#define _PLAYLIST_FILE_EXTENSION_ "xspf"
+// legacy _start_
+#define _PLAYLIST_FILE_EXTENSION_OLD_ "spls"
+// legacy _end_
+
+// format: XSPF (http://xspf.org)
+// required elements:
+// <extension application="http://example.com">
+// <cl:clip title="TITLE" artist="ARTIST" album="ALBUM"/>
+// </extension>
 
 // represents file-level storage
 // it store data into separate files (e.g. playlist)
 
+using SomePlayer::DataObjects::Playlist;
+using SomePlayer::DataObjects::LastPlayed;
+
 namespace SomePlayer {
        namespace Storage {
 
-               class FileStorage : public Storage {
+               class FileStorage {
+               public:
+                       FileStorage(QString path);
+
+                       QList<Playlist> getPlaylists();
+                       QStringList getPlaylistsNames();
+                       Playlist getPlaylist(QString name);
+                       void savePlaylist(Playlist playlist);
+                       void removePlaylist(Playlist playlist);
+                       void removePlaylist(QString name);
+                       void importPlaylist(QString name);
+
+                       Playlist getCurrentPlaylist();
+                       void saveCurrentPlaylist(Playlist playlist);
+                       LastPlayed getLastPlayedForCurPlaylist();
+                       void saveLastPlayedForCurPlaylist(LastPlayed);
+               private:
+                       QString _path_prefix;
                };
 
        };