diff options
author | Max Kellermann <max@duempel.org> | 2015-01-21 23:36:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-01-21 23:36:57 +0100 |
commit | d8bef3270d362c289e89fcb26c91dd6713da1941 (patch) | |
tree | 59caa907116b6e2d4f1561c46bc4610ce3aae9ab /src/config/ConfigFile.cxx | |
parent | a33db8fe6f4d8a0496a723914cc33c2f76000c4e (diff) | |
download | mpd-d8bef3270d362c289e89fcb26c91dd6713da1941.tar.gz mpd-d8bef3270d362c289e89fcb26c91dd6713da1941.tar.xz mpd-d8bef3270d362c289e89fcb26c91dd6713da1941.zip |
config/File: use FileReader/BufferedReader instead of stdio
Diffstat (limited to 'src/config/ConfigFile.cxx')
-rw-r--r-- | src/config/ConfigFile.cxx | 49 |
1 files changed, 21 insertions, 28 deletions
diff --git a/src/config/ConfigFile.cxx b/src/config/ConfigFile.cxx index e3b47bae6..8eab4389c 100644 --- a/src/config/ConfigFile.cxx +++ b/src/config/ConfigFile.cxx @@ -26,15 +26,12 @@ #include "util/StringUtil.hxx" #include "util/Error.hxx" #include "util/Domain.hxx" -#include "fs/Limits.hxx" #include "fs/Path.hxx" -#include "fs/FileSystem.hxx" +#include "fs/io/FileReader.hxx" +#include "fs/io/BufferedReader.hxx" #include "Log.hxx" #include <assert.h> -#include <stdio.h> - -static constexpr size_t MAX_STRING_SIZE = MPD_PATH_MAX + 80; static constexpr char CONF_COMMENT = '#'; @@ -81,18 +78,18 @@ config_read_name_value(struct config_param *param, char *input, unsigned line, } static struct config_param * -config_read_block(FILE *fp, int *count, char *string, Error &error) +config_read_block(BufferedReader &reader, int *count, Error &error) { struct config_param *ret = new config_param(*count); while (true) { - char *line; - - line = fgets(string, MAX_STRING_SIZE, fp); + char *line = reader.ReadLine(); if (line == nullptr) { delete ret; - error.Set(config_file_domain, - "Expected '}' before end-of-file"); + + if (reader.Check(error)) + error.Set(config_file_domain, + "Expected '}' before end-of-file"); return nullptr; } @@ -142,21 +139,21 @@ Append(config_param *&head, config_param *p) } static bool -ReadConfigFile(ConfigData &config_data, FILE *fp, Error &error) +ReadConfigFile(ConfigData &config_data, BufferedReader &reader, Error &error) { - assert(fp != nullptr); - - char string[MAX_STRING_SIZE + 1]; int count = 0; struct config_param *param; - while (fgets(string, MAX_STRING_SIZE, fp)) { - char *line; + while (true) { + char *line = reader.ReadLine(); + if (line == nullptr) + return true; + const char *name, *value; count++; - line = StripLeft(string); + line = StripLeft(line); if (*line == 0 || *line == CONF_COMMENT) continue; @@ -214,7 +211,7 @@ ReadConfigFile(ConfigData &config_data, FILE *fp, Error &error) return false; } - param = config_read_block(fp, &count, string, error); + param = config_read_block(reader, &count, error); if (param == nullptr) { return false; } @@ -246,8 +243,6 @@ ReadConfigFile(ConfigData &config_data, FILE *fp, Error &error) Append(head, param); } - - return true; } bool @@ -258,13 +253,11 @@ ReadConfigFile(ConfigData &config_data, Path path, Error &error) FormatDebug(config_file_domain, "loading file %s", path_utf8.c_str()); - FILE *fp = FOpen(path, FOpenMode::ReadText); - if (fp == nullptr) { - error.FormatErrno("Failed to open %s", path_utf8.c_str()); + FileReader file(path, error); + if (!file.IsDefined()) return false; - } - bool result = ReadConfigFile(config_data, fp, error); - fclose(fp); - return result; + BufferedReader reader(file); + return ReadConfigFile(config_data, reader, error) && + reader.Check(error); } |