libcruft-util/io_posix.cpp

136 lines
2.9 KiB
C++
Raw Normal View History

/*
2018-08-04 15:14:06 +10:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright 2010-2014 Danny Robson <danny@nerdcruft.net>
*/
#include "io.hpp"
#include "cast.hpp"
#include "debug.hpp"
#include "posix/fd.hpp"
#include "posix/except.hpp"
#include <sys/stat.h>
using cruft::detail::posix::mapped_file;
2015-10-29 10:48:11 +11:00
//////////////////////////////////////////////////////////////////////////////
mapped_file::mapped_file (const std::experimental::filesystem::path &path,
int fflags,
int mflags):
mapped_file (cruft::posix::fd (path, fflags), mflags)
{ ; }
//-----------------------------------------------------------------------------
mapped_file::mapped_file (const ::cruft::posix::fd &src, int mflags)
2015-10-29 10:48:11 +11:00
{
struct stat meta;
::cruft::posix::error::try_value (fstat (src, &meta));
m_size = cruft::cast::sign<size_t> (meta.st_size);
if (!m_size) {
m_data = nullptr;
return;
}
2018-05-03 18:32:08 +10:00
m_data = static_cast<uint8_t*> (mmap (nullptr, m_size, mflags, MAP_SHARED, src, 0));
if (m_data == MAP_FAILED)
::cruft::posix::error::throw_code ();
2015-10-29 10:48:11 +11:00
}
2015-01-07 16:00:12 +11:00
//----------------------------------------------------------------------------
2015-10-29 10:48:54 +11:00
mapped_file::~mapped_file ()
{
if (!m_data)
return;
munmap (m_data, m_size);
}
2015-01-07 16:00:12 +11:00
//----------------------------------------------------------------------------
size_t
mapped_file::size (void) const
{
return m_size;
}
//-----------------------------------------------------------------------------
bool
mapped_file::empty (void) const
{
return size () == 0;
}
2016-06-28 14:14:23 +10:00
//////////////////////////////////////////////////////////////////////////////
uint8_t*
mapped_file::data (void) &
{
return m_data;
}
2015-01-07 16:00:12 +11:00
//----------------------------------------------------------------------------
const uint8_t*
mapped_file::data (void) const &
{
return m_data;
}
2015-01-07 16:00:12 +11:00
//----------------------------------------------------------------------------
uint8_t*
mapped_file::begin (void) &
{
return data ();
}
2015-01-07 16:00:12 +11:00
//----------------------------------------------------------------------------
uint8_t*
mapped_file::end (void) &
{
return data () + size ();
}
2016-06-28 14:14:23 +10:00
//-----------------------------------------------------------------------------
const uint8_t*
mapped_file::begin (void) const &
2016-06-28 14:14:23 +10:00
{
return data ();
}
//-----------------------------------------------------------------------------
const uint8_t*
mapped_file::end (void) const &
2016-06-28 14:14:23 +10:00
{
return data () + size ();
}
2015-01-07 16:00:12 +11:00
//----------------------------------------------------------------------------
const uint8_t*
mapped_file::cbegin (void) const &
{
return data ();
}
2015-01-07 16:00:12 +11:00
//----------------------------------------------------------------------------
const uint8_t*
mapped_file::cend (void) const &
{
return data () + size ();
}