2009-11-01 15:37:16 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2009-11-01 15:37:16 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-03 10:12:41 +01:00
|
|
|
#include "TextFile.hxx"
|
2014-02-17 23:04:06 +01:00
|
|
|
#include "util/Alloc.hxx"
|
2013-10-01 18:31:22 +02:00
|
|
|
#include "fs/Path.hxx"
|
|
|
|
#include "fs/FileSystem.hxx"
|
|
|
|
|
2009-11-01 15:37:16 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
2014-02-17 23:04:06 +01:00
|
|
|
#include <stdlib.h>
|
2009-11-01 15:37:16 +01:00
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
TextFile::TextFile(Path path_fs)
|
2013-10-01 18:31:22 +02:00
|
|
|
:file(FOpen(path_fs, FOpenMode::ReadText)),
|
2014-02-17 23:04:06 +01:00
|
|
|
buffer((char *)xalloc(step)), capacity(step), length(0) {}
|
2013-10-01 18:31:22 +02:00
|
|
|
|
|
|
|
TextFile::~TextFile()
|
|
|
|
{
|
2014-02-17 23:04:06 +01:00
|
|
|
free(buffer);
|
|
|
|
|
2013-10-01 18:31:22 +02:00
|
|
|
if (file != nullptr)
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
2009-11-01 15:37:16 +01:00
|
|
|
char *
|
2013-01-03 10:16:05 +01:00
|
|
|
TextFile::ReadLine()
|
2009-11-01 15:37:16 +01:00
|
|
|
{
|
2013-10-19 18:19:03 +02:00
|
|
|
assert(file != nullptr);
|
2009-11-01 15:37:16 +01:00
|
|
|
|
2014-02-17 23:04:06 +01:00
|
|
|
while (true) {
|
|
|
|
if (length >= capacity) {
|
|
|
|
if (capacity >= max_length)
|
|
|
|
/* too large already - bail out */
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
capacity <<= 1;
|
|
|
|
char *new_buffer = (char *)realloc(buffer, capacity);
|
|
|
|
if (new_buffer == nullptr)
|
|
|
|
/* out of memory - bail out */
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *p = fgets(buffer + length, capacity - length, file);
|
2013-10-19 18:19:03 +02:00
|
|
|
if (p == nullptr) {
|
2009-11-01 15:37:16 +01:00
|
|
|
if (length == 0 || ferror(file))
|
2013-10-19 18:19:03 +02:00
|
|
|
return nullptr;
|
2009-11-01 15:37:16 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-02-17 23:04:06 +01:00
|
|
|
length += strlen(buffer + length);
|
|
|
|
if (buffer[length - 1] == '\n')
|
2009-11-01 15:37:16 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-01-17 12:52:11 +01:00
|
|
|
/* remove the newline characters */
|
2014-02-17 23:04:06 +01:00
|
|
|
if (buffer[length - 1] == '\n')
|
2010-01-17 12:52:11 +01:00
|
|
|
--length;
|
2014-02-17 23:04:06 +01:00
|
|
|
if (buffer[length - 1] == '\r')
|
2010-01-17 12:52:11 +01:00
|
|
|
--length;
|
|
|
|
|
2014-02-17 23:04:06 +01:00
|
|
|
buffer[length] = 0;
|
|
|
|
length = 0;
|
|
|
|
return buffer;
|
2009-11-01 15:37:16 +01:00
|
|
|
}
|