2009-10-12 22:30:59 +02:00
|
|
|
/*
|
2015-01-01 19:48:13 +01:00
|
|
|
* Copyright (C) 2003-2015 The Music Player Daemon Project
|
2009-10-12 22:30:59 +02: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-05-12 16:02:27 +02:00
|
|
|
#include "TextInputStream.hxx"
|
2013-09-05 00:06:31 +02:00
|
|
|
#include "InputStream.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2014-08-07 19:07:03 +02:00
|
|
|
#include "util/TextFile.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2009-10-12 22:30:59 +02:00
|
|
|
|
2012-03-19 19:51:19 +01:00
|
|
|
#include <assert.h>
|
2009-10-12 22:30:59 +02:00
|
|
|
|
2014-08-07 12:41:39 +02:00
|
|
|
char *
|
|
|
|
TextInputStream::ReadLine()
|
|
|
|
{
|
2014-08-07 19:07:03 +02:00
|
|
|
char *line = ReadBufferedLine(buffer);
|
2014-08-07 12:41:39 +02:00
|
|
|
if (line != nullptr)
|
|
|
|
return line;
|
2013-10-15 10:28:52 +02:00
|
|
|
|
2014-10-19 00:50:52 +02:00
|
|
|
buffer.Shift();
|
|
|
|
|
2014-08-07 12:41:39 +02:00
|
|
|
while (true) {
|
|
|
|
auto dest = buffer.Write();
|
|
|
|
if (dest.size < 2) {
|
2014-10-28 22:10:47 +01:00
|
|
|
/* line too long: terminate the current
|
|
|
|
line */
|
2014-08-07 12:41:39 +02:00
|
|
|
|
2013-10-15 10:28:52 +02:00
|
|
|
assert(!dest.IsEmpty());
|
2014-08-07 00:06:02 +02:00
|
|
|
dest[0] = 0;
|
2014-08-07 12:41:39 +02:00
|
|
|
line = buffer.Read().data;
|
2014-08-07 00:06:02 +02:00
|
|
|
buffer.Clear();
|
2014-08-07 12:41:39 +02:00
|
|
|
return line;
|
2012-03-19 19:51:19 +01:00
|
|
|
}
|
2009-10-12 22:30:59 +02:00
|
|
|
|
2014-08-07 12:41:39 +02:00
|
|
|
/* reserve one byte for the null terminator if the
|
|
|
|
last line is not terminated by a newline
|
|
|
|
character */
|
|
|
|
--dest.size;
|
2014-08-07 00:06:02 +02:00
|
|
|
|
2014-08-07 12:41:39 +02:00
|
|
|
Error error;
|
|
|
|
size_t nbytes = is.LockRead(dest.data, dest.size, error);
|
|
|
|
if (nbytes > 0)
|
|
|
|
buffer.Append(nbytes);
|
|
|
|
else if (error.IsDefined()) {
|
|
|
|
LogError(error);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-08-07 19:07:03 +02:00
|
|
|
line = ReadBufferedLine(buffer);
|
2014-08-07 12:41:39 +02:00
|
|
|
if (line != nullptr)
|
|
|
|
return line;
|
|
|
|
|
2014-10-28 22:10:47 +01:00
|
|
|
if (nbytes == 0) {
|
|
|
|
/* end of file: see if there's an unterminated
|
|
|
|
line */
|
|
|
|
|
|
|
|
dest = buffer.Write();
|
|
|
|
assert(!dest.IsEmpty());
|
|
|
|
dest[0] = 0;
|
|
|
|
|
|
|
|
auto r = buffer.Read();
|
|
|
|
buffer.Clear();
|
|
|
|
return r.IsEmpty()
|
|
|
|
? nullptr
|
|
|
|
: r.data;
|
|
|
|
}
|
2014-08-07 12:41:39 +02:00
|
|
|
}
|
2009-10-12 22:30:59 +02:00
|
|
|
}
|