aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistSave.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-03-24 20:32:23 +0100
committerMax Kellermann <max@duempel.org>2015-03-24 22:03:20 +0100
commit69ad5671edadb1862469597ebdde9f36b6e9b77f (patch)
tree7a30b1f75b904cfe95e4317ba25e3b767ce15a48 /src/PlaylistSave.cxx
parentf9e0f0d25700c0674763def6134e18ef8a6a9da4 (diff)
downloadmpd-69ad5671edadb1862469597ebdde9f36b6e9b77f.tar.gz
mpd-69ad5671edadb1862469597ebdde9f36b6e9b77f.tar.xz
mpd-69ad5671edadb1862469597ebdde9f36b6e9b77f.zip
Playlist*: use the BufferedOutputStream API instead of FILE*
Diffstat (limited to 'src/PlaylistSave.cxx')
-rw-r--r--src/PlaylistSave.cxx25
1 files changed, 14 insertions, 11 deletions
diff --git a/src/PlaylistSave.cxx b/src/PlaylistSave.cxx
index 61b4913b2..a2f48ba54 100644
--- a/src/PlaylistSave.cxx
+++ b/src/PlaylistSave.cxx
@@ -30,6 +30,8 @@
#include "fs/Traits.hxx"
#include "fs/FileSystem.hxx"
#include "fs/NarrowPath.hxx"
+#include "fs/io/FileOutputStream.hxx"
+#include "fs/io/BufferedOutputStream.hxx"
#include "util/Alloc.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
@@ -38,7 +40,7 @@
#include <string.h>
void
-playlist_print_song(FILE *file, const DetachedSong &song)
+playlist_print_song(BufferedOutputStream &os, const DetachedSong &song)
{
const char *uri_utf8 = playlist_saveAbsolutePaths
? song.GetRealURI()
@@ -46,11 +48,11 @@ playlist_print_song(FILE *file, const DetachedSong &song)
const auto uri_fs = AllocatedPath::FromUTF8(uri_utf8);
if (!uri_fs.IsNull())
- fprintf(file, "%s\n", NarrowPath(uri_fs).c_str());
+ os.Format("%s\n", NarrowPath(uri_fs).c_str());
}
void
-playlist_print_uri(FILE *file, const char *uri)
+playlist_print_uri(BufferedOutputStream &os, const char *uri)
{
auto path =
#ifdef ENABLE_DATABASE
@@ -62,7 +64,7 @@ playlist_print_uri(FILE *file, const char *uri)
AllocatedPath::FromUTF8(uri);
if (!path.IsNull())
- fprintf(file, "%s\n", NarrowPath(path).c_str());
+ os.Format("%s\n", NarrowPath(path).c_str());
}
bool
@@ -78,18 +80,19 @@ spl_save_queue(const char *name_utf8, const Queue &queue, Error &error)
return false;
}
- FILE *file = FOpen(path_fs, FOpenMode::WriteText);
-
- if (file == nullptr) {
- error.FormatErrno("Failed to open %s",
- path_fs.ToUTF8().c_str());
+ FileOutputStream fos(path_fs, error);
+ if (!fos.IsDefined()) {
+ TranslatePlaylistError(error);
return false;
}
+ BufferedOutputStream bos(fos);
+
for (unsigned i = 0; i < queue.GetLength(); i++)
- playlist_print_song(file, queue.Get(i));
+ playlist_print_song(bos, queue.Get(i));
- fclose(file);
+ if (!bos.Flush(error) || !fos.Commit(error))
+ return false;
idle_add(IDLE_STORED_PLAYLIST);
return true;