libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
FDFile.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/fs/FileBase.hxx>
5
6namespace cosmos {
7
9
15class COSMOS_API FDFile :
16 public FileBase {
17public: // functions
18
19 FDFile() = default;
20
22 FDFile(const FileDescriptor fd, const AutoCloseFD auto_close) {
23 open(fd, auto_close);
24 }
25
26 FDFile(FDFile &&other) noexcept {
27 *this = std::move(other);
28 }
29
30 FDFile& operator=(FDFile &&other) noexcept {
31 m_auto_close = other.m_auto_close;
32 other.m_auto_close = AutoCloseFD{true};
33
34 FileBase::operator=(std::move(other));
35 return *this;
36 }
37
38 ~FDFile();
39
41
50 void open(const FileDescriptor fd, const AutoCloseFD auto_close) {
51 m_fd = fd;
52 m_auto_close = auto_close;
53 }
54
56
62 void close() override {
63
64 if (!m_auto_close) {
65 m_fd.reset();
66 m_auto_close = AutoCloseFD{true};
67 return;
68 }
69
70 FileBase::close();
71 }
72
73protected: // data
74 AutoCloseFD m_auto_close;
75};
76
77} // end ns
File objects that are opened from existing FileDescriptor objects.
Definition FDFile.hxx:16
void close() override
Close the current file object.
Definition FDFile.hxx:62
void open(const FileDescriptor fd, const AutoCloseFD auto_close)
Takes the already open file descriptor fd and operates on it.
Definition FDFile.hxx:50
FDFile(const FileDescriptor fd, const AutoCloseFD auto_close)
Wrap the given file descriptor applying the specified auto-close behaviour.
Definition FDFile.hxx:22
Base class for File types with ownership of a FileDescriptor.
Definition FileBase.hxx:23
Thin Wrapper around OS file descriptors.