libcruft-util/io.cpp

216 lines
5.7 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.
*
* Copyright 2010-2014 Danny Robson <danny@nerdcruft.net>
*/
2011-05-23 17:18:52 +10:00
#include "io.hpp"
#include "debug.hpp"
#include "except.hpp"
2012-05-08 15:04:31 +10:00
#include "platform.hpp"
#include "types/casts.hpp"
2011-05-23 17:18:52 +10:00
#include <cstdio>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
2011-05-23 17:18:52 +10:00
#include <unistd.h>
#include <boost/filesystem.hpp>
#include <stdexcept>
2011-05-23 17:18:52 +10:00
using namespace std;
using namespace util;
2011-05-23 17:18:52 +10:00
//----------------------------------------------------------------------------
static int
access_to_cflags (access_t a) {
int flags = 0;
if ((a & ACCESS_READWRITE) == ACCESS_READWRITE) {
flags = O_RDWR | O_CREAT;
} else if (a & ACCESS_READ) {
flags = O_RDONLY;
} else if (a & ACCESS_WRITE) {
flags = O_WRONLY | O_CREAT;
}
return flags;
}
2011-05-25 23:02:39 +10:00
//----------------------------------------------------------------------------
2015-06-11 19:28:03 +10:00
std::vector<char>
util::slurp (const boost::filesystem::path& path) {
2015-06-11 19:27:42 +10:00
fd out (path, ACCESS_READ);
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. We provide a null
// padding at the tail as a 'just in case' measure for string manipulation.
2015-06-11 19:28:03 +10:00
std::vector<char> buffer (size + 1);
buffer.data ()[size] = '\0';
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
//-----------------------------------------------------------------------------
template <typename T>
void
2015-07-02 16:34:17 +10:00
util::write (const fd &out,
const T *restrict first,
const T *restrict last)
{
CHECK (first);
CHECK (last);
CHECK_LE (first, last);
2015-07-02 16:34:17 +10:00
const char *restrict cursor = reinterpret_cast<const char*> (first);
size_t remaining = sizeof (T) * (last - first);
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-07-02 16:34:17 +10:00
template void util::write (const fd&, const char*, const char*);
template void util::write (const fd&, const int8_t*, const int8_t*);
template void util::write (const fd&, const uint8_t*, const uint8_t*);
//-----------------------------------------------------------------------------
template <typename T>
void
util::write (const boost::filesystem::path &path,
const T *restrict first,
const T *restrict last)
{
write (fd (path, ACCESS_WRITE), first, last);
}
template void util::write (const boost::filesystem::path&, const char*, const char*);
template void util::write (const boost::filesystem::path&, const int8_t*, const int8_t*);
template void util::write (const boost::filesystem::path&, const uint8_t*, const uint8_t*);
2011-05-25 23:02:39 +10:00
//----------------------------------------------------------------------------
2015-06-11 19:27:42 +10:00
fd::fd (int _fd):
m_fd (_fd)
2011-05-23 17:18:52 +10:00
{
2015-06-11 19:27:42 +10:00
if (_fd < 0)
throw std::invalid_argument ("invalid descriptor");
2011-05-23 17:18:52 +10:00
}
2015-06-11 19:27:42 +10:00
fd::fd (const boost::filesystem::path &path, access_t access):
2012-05-08 15:04:31 +10:00
#ifdef PLATFORM_WIN32
// Windows requires the use of 'string ()' to convert to char datatype
// rather than the typical wchar
2015-06-11 19:27:42 +10:00
m_fd (open (path.string ().c_str (), access_to_cflags (access) | O_BINARY, 0660))
2012-05-08 15:04:31 +10:00
#else
2015-06-11 19:27:42 +10:00
m_fd (open (path.native ().c_str (), access_to_cflags (access), 0660))
2012-05-08 15:04:31 +10:00
#endif
2012-04-26 18:19:12 +10:00
{
2015-06-11 19:27:42 +10:00
if (m_fd < 0)
util::errno_error::throw_code ();
2012-04-26 18:19:12 +10:00
}
2015-06-11 19:27:42 +10:00
fd::~fd () {
CHECK (m_fd >= 0);
close (m_fd);
2011-05-23 17:18:52 +10: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);
}
indenter::indenter (std::streambuf* _dest, size_t _indent)
: m_dest (_dest)
, m_line_start (true)
, m_indent (_indent, ' ')
, m_owner (NULL)
{ ; }
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);
}
indenter::~indenter ()
{
if (m_owner != NULL)
m_owner->rdbuf (m_dest);
}
//////////////////////////////////////////////////////////////////////////////
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 ();
}