libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
FileBase.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/fs/FileDescriptor.hxx>
5#include <cosmos/io/StreamIO.hxx>
6
7namespace cosmos {
8
10
22class COSMOS_API FileBase :
23 public StreamIO {
24protected: // functions
25
27 StreamIO{m_fd},
28 m_fd{fd}
29 {}
30
31 // support move semantics, but only protected, to prevent move object
32 // slicing. derived classes need to provide their own move
33 // ctors/operators that invoke the base class ones.
34
35 FileBase(FileBase &&other) noexcept :
36 StreamIO{m_fd} {
37 *this = std::move(other);
38 }
39
40 FileBase& operator=(FileBase &&other) noexcept {
41 m_fd = other.m_fd;
42 other.m_fd.reset();
43
44 return *this;
45 }
46
47
48public: // functions
49
50 virtual ~FileBase();
51
52 // Prevent copying due to the file descriptor ownership.
53 FileBase(const FileBase&) = delete;
54 FileBase& operator=(const FileBase&) = delete;
55
57
63 virtual void close() {
64 if (!isOpen())
65 return;
66
67 m_fd.close();
68 }
69
71 bool isOpen() const { return m_fd.valid(); }
72
74 FileDescriptor fd() const { return m_fd; }
75
77 void truncate(const off_t length);
78
79protected: // data
80
81 FileDescriptor m_fd;
82};
83
84} // end ns
Base class for File types with ownership of a FileDescriptor.
Definition FileBase.hxx:23
virtual void close()
Close the current file object.
Definition FileBase.hxx:63
bool isOpen() const
Returns whether currently a FileDescriptor is opened.
Definition FileBase.hxx:71
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Definition FileBase.hxx:74
Thin Wrapper around OS file descriptors.
Wrapper around file descriptors for streaming I/O access.
Definition StreamIO.hxx:40