aboutsummaryrefslogtreecommitdiffstats
path: root/src/db
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-02-25 16:24:40 +0100
committerMax Kellermann <max@duempel.org>2015-02-25 16:25:26 +0100
commitfe1e467a493ac69dc52adc4a03b27a6c8d9ad1b9 (patch)
tree230ad3ef2f25eca72aed8f5c2fefb8b9cf3415ce /src/db
parent73cb538d722132e83033b8f96971e294c057bccf (diff)
downloadmpd-fe1e467a493ac69dc52adc4a03b27a6c8d9ad1b9.tar.gz
mpd-fe1e467a493ac69dc52adc4a03b27a6c8d9ad1b9.tar.xz
mpd-fe1e467a493ac69dc52adc4a03b27a6c8d9ad1b9.zip
db/ExcludeList: use the TextFile class instead of stdio.h
Diffstat (limited to 'src/db')
-rw-r--r--src/db/update/ExcludeList.cxx41
1 files changed, 24 insertions, 17 deletions
diff --git a/src/db/update/ExcludeList.cxx b/src/db/update/ExcludeList.cxx
index b432bdce8..2dd761e05 100644
--- a/src/db/update/ExcludeList.cxx
+++ b/src/db/update/ExcludeList.cxx
@@ -25,36 +25,45 @@
#include "config.h"
#include "ExcludeList.hxx"
#include "fs/Path.hxx"
-#include "fs/FileSystem.hxx"
+#include "fs/io/TextFile.hxx"
#include "util/StringUtil.hxx"
-#include "util/Domain.hxx"
+#include "util/Error.hxx"
#include "Log.hxx"
#include <assert.h>
#include <string.h>
#include <errno.h>
-static constexpr Domain exclude_list_domain("exclude_list");
+#ifdef HAVE_GLIB
+
+gcc_pure
+static bool
+IsFileNotFound(const Error &error)
+{
+#ifdef WIN32
+ return error.IsDomain(win32_domain) &&
+ error.GetCode() == ERROR_FILE_NOT_FOUND;
+#else
+ return error.IsDomain(errno_domain) && error.GetCode() == ENOENT;
+#endif
+}
+
+#endif
bool
ExcludeList::LoadFile(Path path_fs)
{
#ifdef HAVE_GLIB
- FILE *file = FOpen(path_fs, FOpenMode::ReadText);
- if (file == nullptr) {
- const int e = errno;
- if (e != ENOENT) {
- const auto path_utf8 = path_fs.ToUTF8();
- FormatErrno(exclude_list_domain,
- "Failed to open %s",
- path_utf8.c_str());
- }
-
+ Error error;
+ TextFile file(path_fs, error);
+ if (file.HasFailed()) {
+ if (!IsFileNotFound(error))
+ LogError(error);
return false;
}
- char line[1024];
- while (fgets(line, sizeof(line), file) != nullptr) {
+ char *line;
+ while ((line = file.ReadLine()) != nullptr) {
char *p = strchr(line, '#');
if (p != nullptr)
*p = 0;
@@ -63,8 +72,6 @@ ExcludeList::LoadFile(Path path_fs)
if (*p != 0)
patterns.emplace_front(p);
}
-
- fclose(file);
#else
// TODO: implement
(void)path_fs;