From 709ec6fa39e031953f64bab6c3e84d7688e04632 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 7 Sep 2008 14:02:43 +0200 Subject: playlist: added playlist_save() The shared code in showPlaylist() isn't worth it, because we aim to remove fdprintf(). Duplicate this small function, and enable stdio buffering for saved playlists. --- src/playlist.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/playlist.c') diff --git a/src/playlist.c b/src/playlist.c index 042907e16..a0b1be3e9 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -229,6 +229,16 @@ void showPlaylist(int fd) } } +static void playlist_save(FILE *fp) +{ + int i; + char path_max_tmp[MPD_PATH_MAX]; + + for (i = 0; i < playlist.length; i++) + fprintf(fp, "%i:%s\n", i, + get_song_url(path_max_tmp, playlist.songs[i])); +} + void savePlaylistState(FILE *fp) { fprintf(fp, "%s", PLAYLIST_STATE_FILE_STATE); @@ -255,8 +265,7 @@ void savePlaylistState(FILE *fp) fprintf(fp, "%s%i\n", PLAYLIST_STATE_FILE_CROSSFADE, (int)(getPlayerCrossFade())); fprintf(fp, "%s\n", PLAYLIST_STATE_FILE_PLAYLIST_BEGIN); - fflush(fp); - showPlaylist(fileno(fp)); + playlist_save(fp); fprintf(fp, "%s\n", PLAYLIST_STATE_FILE_PLAYLIST_END); } -- cgit v1.2.3