2014-08-07 18:54:06 +02:00
|
|
|
/*
|
2019-12-16 17:02:35 +01:00
|
|
|
* Copyright 2014-2019 Max Kellermann <max.kellermann@gmail.com>
|
2014-08-07 18:54:06 +02:00
|
|
|
*
|
2019-12-16 17:02:35 +01:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
2014-08-07 18:54:06 +02:00
|
|
|
*
|
2019-12-16 17:02:35 +01:00
|
|
|
* - Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2014-08-07 18:54:06 +02:00
|
|
|
*
|
2019-12-16 17:02:35 +01:00
|
|
|
* - Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
2014-08-07 18:54:06 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "BufferedReader.hxx"
|
|
|
|
#include "Reader.hxx"
|
|
|
|
#include "util/TextFile.hxx"
|
|
|
|
|
2020-03-13 01:08:53 +01:00
|
|
|
#include <cstdint>
|
2016-08-16 08:46:44 +02:00
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2014-08-07 18:54:06 +02:00
|
|
|
bool
|
|
|
|
BufferedReader::Fill(bool need_more)
|
|
|
|
{
|
|
|
|
if (eof)
|
|
|
|
return !need_more;
|
|
|
|
|
|
|
|
auto w = buffer.Write();
|
2017-11-10 19:24:33 +01:00
|
|
|
if (w.empty()) {
|
2014-08-07 18:54:06 +02:00
|
|
|
if (buffer.GetCapacity() >= MAX_SIZE)
|
|
|
|
return !need_more;
|
|
|
|
|
|
|
|
buffer.Grow(buffer.GetCapacity() * 2);
|
|
|
|
w = buffer.Write();
|
2017-11-10 19:24:33 +01:00
|
|
|
assert(!w.empty());
|
2014-08-07 18:54:06 +02:00
|
|
|
}
|
|
|
|
|
2015-12-16 11:05:33 +01:00
|
|
|
size_t nbytes = reader.Read(w.data, w.size);
|
2014-08-07 18:54:06 +02:00
|
|
|
if (nbytes == 0) {
|
|
|
|
eof = true;
|
|
|
|
return !need_more;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer.Append(nbytes);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-08-16 12:09:04 +02:00
|
|
|
void *
|
|
|
|
BufferedReader::ReadFull(size_t size)
|
|
|
|
{
|
|
|
|
while (true) {
|
|
|
|
auto r = Read();
|
|
|
|
if (r.size >= size)
|
|
|
|
return r.data;
|
|
|
|
|
|
|
|
if (!Fill(true))
|
|
|
|
throw std::runtime_error("Premature end of file");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-16 08:46:44 +02:00
|
|
|
size_t
|
2017-06-03 21:33:44 +02:00
|
|
|
BufferedReader::ReadFromBuffer(WritableBuffer<void> dest) noexcept
|
2016-08-16 08:46:44 +02:00
|
|
|
{
|
|
|
|
auto src = Read();
|
|
|
|
size_t nbytes = std::min(src.size, dest.size);
|
|
|
|
memcpy(dest.data, src.data, nbytes);
|
2016-08-16 11:47:31 +02:00
|
|
|
Consume(nbytes);
|
2016-08-16 08:46:44 +02:00
|
|
|
return nbytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BufferedReader::ReadFull(WritableBuffer<void> _dest)
|
|
|
|
{
|
|
|
|
auto dest = WritableBuffer<uint8_t>::FromVoid(_dest);
|
|
|
|
assert(dest.size == _dest.size);
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
size_t nbytes = ReadFromBuffer(dest.ToVoid());
|
|
|
|
dest.skip_front(nbytes);
|
|
|
|
if (dest.size == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (!Fill(true))
|
|
|
|
throw std::runtime_error("Premature end of file");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-07 18:54:06 +02:00
|
|
|
char *
|
|
|
|
BufferedReader::ReadLine()
|
|
|
|
{
|
|
|
|
do {
|
|
|
|
char *line = ReadBufferedLine(buffer);
|
2015-01-21 23:43:32 +01:00
|
|
|
if (line != nullptr) {
|
|
|
|
++line_number;
|
2014-08-07 18:54:06 +02:00
|
|
|
return line;
|
2015-01-21 23:43:32 +01:00
|
|
|
}
|
2014-08-07 18:54:06 +02:00
|
|
|
} while (Fill(true));
|
|
|
|
|
2017-11-10 19:24:33 +01:00
|
|
|
if (!eof || buffer.empty())
|
2014-08-07 18:54:06 +02:00
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
auto w = buffer.Write();
|
2017-11-10 19:24:33 +01:00
|
|
|
if (w.empty()) {
|
2014-08-07 18:54:06 +02:00
|
|
|
buffer.Grow(buffer.GetCapacity() + 1);
|
|
|
|
w = buffer.Write();
|
2017-11-10 19:24:33 +01:00
|
|
|
assert(!w.empty());
|
2014-08-07 18:54:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* terminate the last line */
|
|
|
|
w[0] = 0;
|
|
|
|
|
|
|
|
char *line = buffer.Read().data;
|
|
|
|
buffer.Clear();
|
2015-01-21 23:43:32 +01:00
|
|
|
++line_number;
|
2014-08-07 18:54:06 +02:00
|
|
|
return line;
|
|
|
|
}
|