2009-10-12 22:30:59 +02:00
|
|
|
/*
|
2013-08-10 18:02:44 +02:00
|
|
|
* Copyright (C) 2003-2013 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-01-15 01:00:59 +01:00
|
|
|
#include "util/fifo_buffer.h"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2009-10-12 22:30:59 +02:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2012-03-19 19:51:19 +01:00
|
|
|
#include <assert.h>
|
2009-10-12 22:30:59 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
2013-05-12 16:02:27 +02:00
|
|
|
TextInputStream::TextInputStream(struct input_stream *_is)
|
|
|
|
: is(_is),
|
|
|
|
buffer(fifo_buffer_new(4096))
|
2009-10-12 22:30:59 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-12 16:02:27 +02:00
|
|
|
TextInputStream::~TextInputStream()
|
2009-10-12 22:30:59 +02:00
|
|
|
{
|
2013-05-12 16:02:27 +02:00
|
|
|
fifo_buffer_free(buffer);
|
2009-10-12 22:30:59 +02:00
|
|
|
}
|
|
|
|
|
2013-05-12 16:02:27 +02:00
|
|
|
bool TextInputStream::ReadLine(std::string &line)
|
2009-10-12 22:30:59 +02:00
|
|
|
{
|
|
|
|
void *dest;
|
|
|
|
const char *src, *p;
|
|
|
|
size_t length, nbytes;
|
|
|
|
|
|
|
|
do {
|
2013-05-12 16:02:27 +02:00
|
|
|
dest = fifo_buffer_write(buffer, &length);
|
|
|
|
if (dest != nullptr && length >= 2) {
|
2012-03-19 19:51:19 +01:00
|
|
|
/* reserve one byte for the null terminator if
|
|
|
|
the last line is not terminated by a
|
|
|
|
newline character */
|
|
|
|
--length;
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2013-09-05 00:06:31 +02:00
|
|
|
nbytes = is->LockRead(dest, length, error);
|
2009-10-12 22:30:59 +02:00
|
|
|
if (nbytes > 0)
|
2013-05-12 16:02:27 +02:00
|
|
|
fifo_buffer_append(buffer, nbytes);
|
2013-08-10 18:02:44 +02:00
|
|
|
else if (error.IsDefined()) {
|
|
|
|
g_warning("%s", error.GetMessage());
|
2013-05-12 16:02:27 +02:00
|
|
|
return false;
|
2009-11-14 23:53:04 +01:00
|
|
|
}
|
2012-03-19 19:51:19 +01:00
|
|
|
} else
|
|
|
|
nbytes = 0;
|
2009-10-12 22:30:59 +02:00
|
|
|
|
2013-05-12 16:02:27 +02:00
|
|
|
auto src_p = fifo_buffer_read(buffer, &length);
|
|
|
|
src = reinterpret_cast<const char *>(src_p);
|
|
|
|
|
|
|
|
if (src == nullptr)
|
|
|
|
return false;
|
2009-10-12 22:30:59 +02:00
|
|
|
|
2013-05-12 16:02:27 +02:00
|
|
|
p = reinterpret_cast<const char*>(memchr(src, '\n', length));
|
|
|
|
if (p == nullptr && nbytes == 0) {
|
2012-03-19 19:51:19 +01:00
|
|
|
/* end of file (or line too long): terminate
|
|
|
|
the current line */
|
2013-05-12 16:02:27 +02:00
|
|
|
dest = fifo_buffer_write(buffer, &nbytes);
|
|
|
|
assert(dest != nullptr);
|
2012-03-19 19:51:19 +01:00
|
|
|
*(char *)dest = '\n';
|
2013-05-12 16:02:27 +02:00
|
|
|
fifo_buffer_append(buffer, 1);
|
2012-03-19 19:51:19 +01:00
|
|
|
}
|
2013-05-12 16:02:27 +02:00
|
|
|
} while (p == nullptr);
|
2009-10-12 22:30:59 +02:00
|
|
|
|
|
|
|
length = p - src + 1;
|
|
|
|
while (p > src && g_ascii_isspace(p[-1]))
|
|
|
|
--p;
|
|
|
|
|
2013-05-12 16:02:27 +02:00
|
|
|
line = std::string(src, p - src);
|
|
|
|
fifo_buffer_consume(buffer, length);
|
|
|
|
return true;
|
2009-10-12 22:30:59 +02:00
|
|
|
}
|