system/UniqueFileDescriptor: make the base class public
This commit is contained in:
parent
a65d02d3ae
commit
5e512763d3
@ -34,10 +34,12 @@
|
|||||||
|
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An OO wrapper for a UNIX file descriptor.
|
* An OO wrapper for a UNIX file descriptor.
|
||||||
*/
|
*/
|
||||||
class UniqueFileDescriptor : protected FileDescriptor {
|
class UniqueFileDescriptor : public FileDescriptor {
|
||||||
public:
|
public:
|
||||||
UniqueFileDescriptor() noexcept
|
UniqueFileDescriptor() noexcept
|
||||||
:FileDescriptor(FileDescriptor::Undefined()) {}
|
:FileDescriptor(FileDescriptor::Undefined()) {}
|
||||||
@ -51,6 +53,8 @@ public:
|
|||||||
explicit UniqueFileDescriptor(FileDescriptor _fd) noexcept
|
explicit UniqueFileDescriptor(FileDescriptor _fd) noexcept
|
||||||
:FileDescriptor(_fd) {}
|
:FileDescriptor(_fd) {}
|
||||||
|
|
||||||
|
UniqueFileDescriptor(const UniqueFileDescriptor &) = delete;
|
||||||
|
|
||||||
UniqueFileDescriptor(UniqueFileDescriptor &&other) noexcept
|
UniqueFileDescriptor(UniqueFileDescriptor &&other) noexcept
|
||||||
:FileDescriptor(other.Steal()) {}
|
:FileDescriptor(other.Steal()) {}
|
||||||
|
|
||||||
@ -63,20 +67,6 @@ public:
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Convert this object to its #FileDescriptor base type.
|
|
||||||
*/
|
|
||||||
const FileDescriptor &ToFileDescriptor() const noexcept {
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
using FileDescriptor::IsDefined;
|
|
||||||
#ifndef _WIN32
|
|
||||||
using FileDescriptor::IsValid;
|
|
||||||
#endif
|
|
||||||
using FileDescriptor::Get;
|
|
||||||
using FileDescriptor::Steal;
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void Set(int _fd) noexcept {
|
void Set(int _fd) noexcept {
|
||||||
assert(!IsDefined());
|
assert(!IsDefined());
|
||||||
@ -86,57 +76,17 @@ protected:
|
|||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
using FileDescriptor::Open;
|
|
||||||
using FileDescriptor::OpenReadOnly;
|
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
using FileDescriptor::OpenNonBlocking;
|
|
||||||
|
|
||||||
static bool CreatePipe(UniqueFileDescriptor &r, UniqueFileDescriptor &w) noexcept {
|
static bool CreatePipe(UniqueFileDescriptor &r, UniqueFileDescriptor &w) noexcept {
|
||||||
return FileDescriptor::CreatePipe(r, w);
|
return FileDescriptor::CreatePipe(r, w);
|
||||||
}
|
}
|
||||||
|
|
||||||
using FileDescriptor::SetNonBlocking;
|
|
||||||
using FileDescriptor::SetBlocking;
|
|
||||||
using FileDescriptor::Duplicate;
|
|
||||||
using FileDescriptor::CheckDuplicate;
|
|
||||||
|
|
||||||
static bool CreatePipe(FileDescriptor &r, FileDescriptor &w) noexcept;
|
static bool CreatePipe(FileDescriptor &r, FileDescriptor &w) noexcept;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
using FileDescriptor::EnableCloseOnExec;
|
|
||||||
using FileDescriptor::DisableCloseOnExec;
|
|
||||||
|
|
||||||
#ifdef USE_EVENTFD
|
|
||||||
using FileDescriptor::CreateEventFD;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef USE_SIGNALFD
|
|
||||||
using FileDescriptor::CreateSignalFD;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef HAVE_INOTIFY_INIT
|
|
||||||
using FileDescriptor::CreateInotify;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
bool Close() noexcept {
|
bool Close() noexcept {
|
||||||
return IsDefined() && FileDescriptor::Close();
|
return IsDefined() && FileDescriptor::Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
using FileDescriptor::Rewind;
|
|
||||||
using FileDescriptor::Seek;
|
|
||||||
using FileDescriptor::Skip;
|
|
||||||
using FileDescriptor::Tell;
|
|
||||||
using FileDescriptor::GetSize;
|
|
||||||
using FileDescriptor::Read;
|
|
||||||
using FileDescriptor::Write;
|
|
||||||
|
|
||||||
#ifndef _WIN32
|
|
||||||
using FileDescriptor::Poll;
|
|
||||||
using FileDescriptor::WaitReadable;
|
|
||||||
using FileDescriptor::WaitWritable;
|
|
||||||
using FileDescriptor::IsReadyForWriting;
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user