libcruft-util/io.cpp

206 lines
5.4 KiB
C++
Raw Normal View History

/*
2015-04-13 18:05:28 +10:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
2015-04-13 18:05:28 +10:00
* http://www.apache.org/licenses/LICENSE-2.0
*
2015-04-13 18:05:28 +10:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
2016-04-27 17:06:25 +10:00
* Copyright 2010-2016 Danny Robson <danny@nerdcruft.net>
*/
2011-05-23 17:18:52 +10:00
#include "io.hpp"
#include "debug.hpp"
#include "except.hpp"
2015-11-17 16:19:27 +11:00
#include "cast.hpp"
2011-05-23 17:18:52 +10:00
#include <cstdio>
#include <fcntl.h>
#include <sys/stat.h>
2011-05-23 17:18:52 +10:00
#include <unistd.h>
#include <experimental/filesystem>
#include <stdexcept>
2011-05-23 17:18:52 +10:00
using namespace util;
2011-05-23 17:18:52 +10:00
2011-05-25 23:02:39 +10:00
//----------------------------------------------------------------------------
2015-06-11 19:28:03 +10:00
std::vector<char>
util::slurp (const std::experimental::filesystem::path &path)
{
posix::fd out (path, O_RDONLY | O_BINARY);
2011-05-25 23:02:39 +10:00
// Calculate the total file size
2015-06-11 19:27:42 +10:00
off_t size = lseek (out, 0, SEEK_END);
2011-05-25 23:02:39 +10:00
if (size == (off_t)-1)
throw errno_error();
2015-06-11 19:27:42 +10:00
if (lseek (out, 0, SEEK_SET) == (off_t)-1)
2011-05-25 23:02:39 +10:00
throw errno_error ();
// Allocate a buffer, and keep reading until it's full.
std::vector<char> buffer (size);
2011-05-25 23:02:39 +10:00
CHECK_GE (size, 0);
2011-05-25 23:02:39 +10:00
size_t remaining = (size_t)size;
2015-06-11 19:28:03 +10:00
char *cursor = buffer.data ();
2011-05-25 23:02:39 +10:00
while (remaining) {
2015-06-11 19:27:42 +10:00
ssize_t consumed = ::read (out, cursor, remaining);
2011-05-25 23:02:39 +10:00
if (consumed == -1)
throw errno_error();
CHECK_GT ( consumed, 0);
CHECK_LE ((size_t)consumed, remaining);
2011-05-25 23:02:39 +10:00
remaining -= (size_t)consumed;
cursor += consumed;
}
2012-04-26 18:18:09 +10:00
return buffer;
2011-05-25 23:02:39 +10:00
}
2011-05-23 17:18:52 +10:00
2015-07-02 16:34:17 +10:00
2015-10-29 17:52:19 +11:00
//-----------------------------------------------------------------------------
std::vector<char>
util::slurp (FILE *stream)
{
// find how much data is in this file
const int desc = fileno (stream);
if (desc < 0)
errno_error::throw_code ();
2015-10-29 17:52:19 +11:00
struct stat meta;
if (fstat (desc, &meta) < 0)
2015-10-29 17:52:19 +11:00
errno_error::throw_code ();
std::vector<char> buf;
2016-04-19 14:52:05 +10:00
// we think we know the size, so try to do a simple read
if (meta.st_size) {
buf.resize (meta.st_size);
// read as much as possible, then resize to the actual length
auto res = fread (buf.data (), 1, meta.st_size, stream);
buf.resize (res);
2016-04-19 14:52:05 +10:00
}
// try reading small chunks until we've hit the end. important for
// handling pipe streams (like from popen) which report a zero size.
constexpr size_t CHUNK_SIZE = 128;
size_t cursor = buf.size ();
while (!feof (stream) && !ferror (stream)) {
auto oldsize = buf.size ();
buf.resize (oldsize + CHUNK_SIZE);
auto res = fread (buf.data () + cursor, 1, CHUNK_SIZE, stream);
if (res != CHUNK_SIZE)
buf.resize (oldsize + res);
}
if (ferror (stream))
throw stream_error ();
return buf;
2015-10-29 17:52:19 +11:00
}
2015-07-02 16:34:17 +10:00
//-----------------------------------------------------------------------------
void
util::write (const posix::fd &out,
2015-10-29 10:48:54 +11:00
const void *restrict data,
size_t bytes)
2015-07-02 16:34:17 +10:00
{
2015-10-29 10:48:54 +11:00
const char *restrict cursor = reinterpret_cast<const char*> (data);
size_t remaining = bytes;
while (remaining) {
2015-06-11 19:27:42 +10:00
ssize_t consumed = ::write (out, cursor, remaining);
if (consumed < 0)
errno_error::throw_code ();
remaining -= sign_cast<size_t> (consumed);
cursor += sign_cast<size_t> (consumed);
}
}
2015-10-29 10:48:11 +11:00
//////////////////////////////////////////////////////////////////////////////
2012-04-12 14:06:26 +10:00
int
indenter::overflow (int ch) {
if (m_line_start && ch != '\n')
m_dest->sputn (m_indent.data (), sign_cast<std::streamsize> (m_indent.size ()));
m_line_start = ch == '\n';
return m_dest->sputc (ch);
}
2016-03-17 18:07:45 +11:00
//-----------------------------------------------------------------------------
2012-04-12 14:06:26 +10:00
indenter::indenter (std::streambuf* _dest, size_t _indent)
: m_dest (_dest)
, m_line_start (true)
, m_indent (_indent, ' ')
, m_owner (NULL)
{ ; }
2016-03-17 18:07:45 +11:00
//-----------------------------------------------------------------------------
2012-04-12 14:06:26 +10:00
indenter::indenter (std::ostream& _dest, size_t _indent)
: m_dest (_dest.rdbuf())
, m_line_start (true)
, m_indent (_indent, ' ')
, m_owner (&_dest)
{
m_owner->rdbuf (this);
}
2016-03-17 18:07:45 +11:00
//-----------------------------------------------------------------------------
2012-04-12 14:06:26 +10:00
indenter::~indenter ()
{
if (m_owner != NULL)
m_owner->rdbuf (m_dest);
}
2016-03-17 18:07:45 +11:00
//////////////////////////////////////////////////////////////////////////////
scoped_cwd::scoped_cwd ()
{
m_original.resize (16);
while (getcwd (&m_original[0], m_original.size ()) == nullptr && errno == ERANGE)
m_original.resize (m_original.size () * 2);
errno_error::try_code ();
}
//-----------------------------------------------------------------------------
scoped_cwd::~scoped_cwd ()
{
if (!chdir (m_original.c_str ()))
errno_error::throw_code ();
}
2016-02-12 13:36:03 +11:00
///////////////////////////////////////////////////////////////////////////////
path_error::path_error (const std::experimental::filesystem::path &_path):
2016-02-12 13:36:03 +11:00
runtime_error (format::render ("Unknown path: %!", m_path)),
m_path (_path)
{ ; }
//-----------------------------------------------------------------------------
const std::experimental::filesystem::path&
2016-02-12 13:36:03 +11:00
path_error::path (void) const noexcept
{
return m_path;
2016-02-12 13:36:03 +11:00
}