From f468aba16e00aa003b28bd24a79c14cd07eefe3f Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Tue, 2 Nov 2004 23:44:33 +0000 Subject: new command "addid", this is the same as "add" command, except it also returns the songid of the added song. Note that "addid" does not work on directories git-svn-id: https://svn.musicpd.org/mpd/trunk@2487 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/playlist.c | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'src/playlist.c') diff --git a/src/playlist.c b/src/playlist.c index 71901b85a..ea88ef18e 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -315,7 +315,7 @@ void loadPlaylistFromStateFile(FILE * fp, char * buffer, int state, int current, playlist_stateFile); exit(EXIT_FAILURE); } - if(addToPlaylist(stderr,temp)==0 && current==song) { + if(addToPlaylist(stderr, temp, 0)==0 && current==song) { if(state!=PLAYER_STATE_STOP) { playPlaylist(stderr,playlist.length-1,0); } @@ -595,7 +595,7 @@ void clearPlayerQueue() { } } -int addToPlaylist(FILE * fp, char * url) { +int addToPlaylist(FILE * fp, char * url, int printId) { Song * song; DEBUG("add to playlist: %s\n",url); @@ -613,10 +613,12 @@ int addToPlaylist(FILE * fp, char * url) { return -1; } - return addSongToPlaylist(fp,song); + return addSongToPlaylist(fp,song, printId); } -int addSongToPlaylist(FILE * fp, Song * song) { +int addSongToPlaylist(FILE * fp, Song * song, int printId) { + int id; + if(playlist.length==playlist_max_length) { commandError(fp, ACK_ERROR_PLAYLIST_MAX, "playlist is at the max size", NULL); @@ -631,10 +633,12 @@ int addSongToPlaylist(FILE * fp, Song * song) { } } + id = getNextId(); + playlist.songs[playlist.length] = song; playlist.songMod[playlist.length] = playlist.version; playlist.order[playlist.length] = playlist.length; - playlist.positionToId[playlist.length] = getNextId(); + playlist.positionToId[playlist.length] = id; playlist.idToPosition[playlist.positionToId[playlist.length]] = playlist.length; playlist.length++; @@ -653,6 +657,8 @@ int addSongToPlaylist(FILE * fp, Song * song) { incrPlaylistVersion(); + if(printId) myfprintf(fp, "Id: %i\n", id); + return 0; } @@ -1400,7 +1406,7 @@ int loadPlaylist(FILE * fp, char * utf8file) { free(temp); continue; } - if((addToPlaylist(stderr,temp))<0) { + if((addToPlaylist(stderr, temp, 0))<0) { if(!erroredFile) erroredFile = strdup(temp); } free(temp); -- cgit v1.2.3