Code

wreadln: fix #ifdef for WIN32
[ncmpc.git] / src / playlist.c
index 5fced75f0c7c1041eb7d7280fb5a1e8f34676c62..548bcccf4e4209f5d0c1d95b2ee13b9b16f51399 100644 (file)
@@ -1,45 +1,39 @@
 /* ncmpc (Ncurses MPD Client)
- * (c) 2004-2009 The Music Player Daemon Project
+ * (c) 2004-2017 The Music Player Daemon Project
  * Project homepage: http://musicpd.org
+ *
  * 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.
-*/
+ */
 
 #include "playlist.h"
 
 #include <string.h>
 
-#define ENABLE_PLCHANGES
-
-#define MPD_ERROR(c) (c==NULL || c->connection==NULL || c->connection->error)
-
 void
 playlist_init(struct mpdclient_playlist *playlist)
 {
-       playlist->id = 0;
+       playlist->version = 0;
        playlist->list = g_ptr_array_sized_new(1024);
 }
 
 void
 playlist_clear(struct mpdclient_playlist *playlist)
 {
-       guint i;
-
-       playlist->id = 0;
+       playlist->version = 0;
 
-       for (i = 0; i < playlist->list->len; ++i) {
+       for (unsigned i = 0; i < playlist->list->len; ++i) {
                struct mpd_song *song = playlist_get(playlist, i);
 
                mpd_song_free(song);
@@ -69,6 +63,30 @@ playlist_get_song(const struct mpdclient_playlist *playlist, gint idx)
        return playlist_get(playlist, idx);
 }
 
+void
+playlist_move(struct mpdclient_playlist *playlist,
+             unsigned dest, unsigned src)
+{
+       assert(playlist != NULL);
+       assert(src < playlist_length(playlist));
+       assert(dest < playlist_length(playlist));
+       assert(src != dest);
+
+       struct mpd_song *song = playlist_get(playlist, src);
+
+       if (src < dest) {
+               memmove(&playlist->list->pdata[src],
+                       &playlist->list->pdata[src + 1],
+                       sizeof(playlist->list->pdata[0]) * (dest - src));
+               playlist->list->pdata[dest] = song;
+       } else {
+               memmove(&playlist->list->pdata[dest + 1],
+                       &playlist->list->pdata[dest],
+                       sizeof(playlist->list->pdata[0]) * (src - dest));
+               playlist->list->pdata[dest] = song;
+       }
+}
+
 const struct mpd_song *
 playlist_lookup_song(const struct mpdclient_playlist *playlist, unsigned id)
 {
@@ -119,3 +137,17 @@ playlist_get_index_from_file(const struct mpdclient_playlist *playlist,
 
        return -1;
 }
+
+gint
+playlist_get_id_from_uri(const struct mpdclient_playlist *playlist,
+                        const gchar *uri)
+{
+       for (guint i = 0; i < playlist_length(playlist); ++i) {
+               const struct mpd_song *song = playlist_get(playlist, i);
+
+               if (strcmp(mpd_song_get_uri(song), uri) == 0)
+                       return mpd_song_get_id(song);
+       }
+
+       return -1;
+}