2014-12-19 18:28:50 +11:00
|
|
|
/*
|
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
|
2014-12-19 18:28:50 +11:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-12-19 18:28:50 +11:00
|
|
|
*
|
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.
|
2014-12-19 18:28:50 +11:00
|
|
|
*
|
2016-06-28 14:14:23 +10:00
|
|
|
* Copyright 2010-2016 Danny Robson <danny@nerdcruft.net>
|
2014-12-19 18:28:50 +11:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_IO_POSIX_HPP
|
|
|
|
#define __UTIL_IO_POSIX_HPP
|
|
|
|
|
2016-10-02 16:13:31 +11:00
|
|
|
#include "posix/fd.hpp"
|
2014-12-19 18:28:50 +11:00
|
|
|
|
2016-06-28 14:15:19 +10:00
|
|
|
#include "view.hpp"
|
|
|
|
|
2016-06-28 15:58:41 +10:00
|
|
|
#include <type_traits>
|
2016-10-08 17:18:04 +11:00
|
|
|
#include <experimental/filesystem>
|
2016-06-28 15:58:41 +10:00
|
|
|
|
2015-10-29 10:48:11 +11:00
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2014-12-19 18:28:50 +11:00
|
|
|
namespace util {
|
2017-01-05 15:06:49 +11:00
|
|
|
namespace detail::posix {
|
2014-12-19 18:28:50 +11:00
|
|
|
class mapped_file {
|
2016-06-28 12:21:12 +10:00
|
|
|
public:
|
2017-07-19 17:20:51 +10:00
|
|
|
mapped_file (const std::experimental::filesystem::path&,
|
|
|
|
int fflags = O_RDONLY | O_BINARY,
|
|
|
|
int mflags = PROT_READ);
|
|
|
|
mapped_file (const util::posix::fd&,
|
|
|
|
int mflags = PROT_READ);
|
2014-12-19 18:28:50 +11:00
|
|
|
|
2016-06-28 12:21:12 +10:00
|
|
|
mapped_file (const mapped_file&) = delete;
|
|
|
|
mapped_file& operator= (const mapped_file&) = delete;
|
2014-12-19 18:28:50 +11:00
|
|
|
|
2016-06-28 12:21:12 +10:00
|
|
|
~mapped_file ();
|
2014-12-19 18:28:50 +11:00
|
|
|
|
2016-06-28 12:21:12 +10:00
|
|
|
bool empty (void) const;
|
2016-10-25 19:57:13 +11:00
|
|
|
|
|
|
|
/// returns the total allocated mapped region in bytes.
|
|
|
|
///
|
|
|
|
/// result is typed size_t (rather than a signed type) because we
|
|
|
|
/// often use this in conjunction with sizeof and packed structure.
|
|
|
|
/// it is greatly simpler to cast to signed where it's actually
|
|
|
|
/// required rather than the other way around.
|
|
|
|
size_t size (void) const;
|
2014-12-19 18:28:50 +11:00
|
|
|
|
2016-06-28 14:23:42 +10:00
|
|
|
const uint8_t* data (void) const &;
|
|
|
|
uint8_t* data (void) &;
|
|
|
|
|
|
|
|
uint8_t* begin (void) &;
|
|
|
|
uint8_t* end (void) &;
|
2016-06-28 14:14:23 +10:00
|
|
|
|
2016-06-28 14:23:42 +10:00
|
|
|
const uint8_t* begin (void) const &;
|
|
|
|
const uint8_t* end (void) const &;
|
2014-12-19 18:28:50 +11:00
|
|
|
|
2016-06-28 14:23:42 +10:00
|
|
|
const uint8_t* cbegin (void) const &;
|
|
|
|
const uint8_t* cend (void) const &;
|
2016-06-28 12:21:30 +10:00
|
|
|
|
2016-06-28 15:58:41 +10:00
|
|
|
template <typename T>
|
|
|
|
util::view<std::add_const_t<T>*>
|
|
|
|
as_view () const &;
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
util::view<T*>
|
|
|
|
as_view () &;
|
2016-06-28 14:15:19 +10:00
|
|
|
|
2016-06-28 12:21:30 +10:00
|
|
|
private:
|
|
|
|
uint8_t *m_data;
|
2016-10-25 19:57:13 +11:00
|
|
|
size_t m_size;
|
2014-12-19 18:28:50 +11:00
|
|
|
};
|
2017-01-05 15:06:49 +11:00
|
|
|
}
|
2014-12-19 18:28:50 +11:00
|
|
|
|
|
|
|
typedef detail::posix::mapped_file mapped_file;
|
|
|
|
}
|
|
|
|
|
2016-06-28 14:15:19 +10:00
|
|
|
#include "io_posix.ipp"
|
|
|
|
|
2014-12-19 18:28:50 +11:00
|
|
|
#endif
|