libcruft-util/posix/fd.hpp

119 lines
3.6 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 2017-2018 Danny Robson <danny@nerdcruft.net>
*/
#ifndef CRUFT_UTIL_POSIX_FD_HPP
#define CRUFT_UTIL_POSIX_FD_HPP
#include "../debug.hpp"
#include "../view.hpp"
#include <sys/types.h>
#include <sys/stat.h>
#include <experimental/filesystem>
namespace cruft::posix {
///------------------------------------------------------------------------
/// A simple RAII wrapper for file descriptors
class fd {
public:
2016-10-02 16:34:40 +11:00
///////////////////////////////////////////////////////////////////////
fd (const std::experimental::filesystem::path &path, int flags);
fd (const std::experimental::filesystem::path &path, int flags, mode_t);
fd (fd &&) noexcept;
fd& operator= (fd &&) noexcept;
2017-12-26 17:26:53 +11:00
fd& operator= (int);
2016-10-02 16:34:40 +11:00
// The int constructor steals the fd. So don't pass in something that
// you don't want closed at destruct time. This should really only be
// used when interfacing with results of syscalls that we don't wrap.
explicit fd (int);
2016-10-02 16:34:40 +11:00
// copy constructors are removed in favour of explicit calls to dup.
// This should reduce unexpected or expensive copies as much as
// possible; one should not be doing this unless it is absolutely
// required.
fd (const fd&) = delete;
fd dup (void) const;
static fd dup (int);
~fd ();
2016-10-02 16:34:40 +11:00
///////////////////////////////////////////////////////////////////////
struct ::stat stat (void) const;
2017-12-26 17:25:58 +11:00
///////////////////////////////////////////////////////////////////////
void close (void);
void reset (int);
void reset (void);
int release (void);
//---------------------------------------------------------------------
[[nodiscard]] ssize_t read (void *buf, size_t count);
[[nodiscard]] ssize_t write (const void *buf, size_t count);
2017-12-26 17:26:53 +11:00
//---------------------------------------------------------------------
template <typename ValueT>
[[nodiscard]]
ValueT*
read (cruft::view<ValueT*> dst)
2017-12-26 17:26:53 +11:00
{
return dst.begin () + read (
&*std::data (dst), std::size (dst) * sizeof (ValueT)
);
2017-12-26 17:26:53 +11:00
}
//---------------------------------------------------------------------
template <typename ValueT>
[[nodiscard]]
auto
write (const cruft::view<ValueT*> &src)
2017-12-26 17:26:53 +11:00
{
return const_cast<ValueT*> (
write (
cruft::view<const ValueT*> (src)
)
);
2017-12-26 17:26:53 +11:00
}
2016-10-11 20:58:31 +11:00
//---------------------------------------------------------------------
template <typename ValueT>
[[nodiscard]]
const ValueT*
write (const cruft::view<const ValueT*> &src)
{
const auto written = write (
&*std::data (src), std::size (src) * sizeof (ValueT)
);
CHECK_MOD (written, sizeof (ValueT));
return src.begin () + written / sizeof (ValueT);
}
//---------------------------------------------------------------------
[[nodiscard]] off_t lseek (off_t offset, int whence);
2016-10-11 20:58:31 +11:00
2017-12-26 17:26:53 +11:00
2016-10-02 16:34:40 +11:00
///////////////////////////////////////////////////////////////////////
operator int (void) const;
int native (void) const { return m_fd; }
private:
int m_fd;
};
}
#endif