libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::FileBase Class Reference

Base class for File types with ownership of a FileDescriptor. More...

#include <FileBase.hxx>

+ Inheritance diagram for cosmos::FileBase:

Public Member Functions

 FileBase (const FileBase &)=delete
 
FileBaseoperator= (const FileBase &)=delete
 
virtual void close ()
 Close the current file object.
 
bool isOpen () const
 Returns whether currently a FileDescriptor is opened.
 
FileDescriptor fd () const
 Allows access to the underlying fd with const semantics.
 
void truncate (const off_t length)
 
- Public Member Functions inherited from cosmos::StreamIO
 StreamIO (FileDescriptor &fd)
 
 StreamIO (const StreamIO &)=delete
 
StreamIOoperator= (const StreamIO &)=delete
 
StreamIOoperator= (StreamIO &&) noexcept
 
size_t read (void *buf, size_t length)
 Read up to length bytes from the file into buf.
 
size_t write (const void *buf, size_t length)
 Write up to length bytes from buf into the underlying file.
 
size_t write (const std::string_view data)
 string_view wrapper around write(const void*, size_t).
 
void readAll (void *buf, size_t length)
 Read all length bytes from the underlying file.
 
void readAll (std::string &s, size_t length)
 Like readAll(void*, size_t) using an STL string.
 
void writeAll (const void *buf, size_t length)
 Write all length bytes into the underlying file.
 
void writeAll (const std::string_view data)
 string_view wrapper around writeAll(const void*, size_t).
 
bool read (ReadIOVector &iovec)
 Read data from file into a vector of data regions.
 
bool write (WriteIOVector &iovec)
 Write data to file from a vector of data regions.
 
void readAll (ReadIOVector &iovec)
 Read into all data regions specified in iovec.
 
void writeAll (WriteIOVector &iovec)
 Write all data regions specified in iovec.
 
off_t seek (const SeekType type, off_t off)
 Seek to the given offset based on the given offset type.
 
off_t seekFromStart (off_t off)
 Seek to the given offset relative to the start of the file.
 
off_t seekFromCurrent (off_t off)
 Seek to the given offset relative to the current file position.
 
off_t seekFromEnd (off_t off)
 Seek to the given offset relative to the end of the file.
 

Protected Member Functions

 FileBase (const FileDescriptor fd=FileDescriptor{})
 
 FileBase (FileBase &&other) noexcept
 
FileBaseoperator= (FileBase &&other) noexcept
 

Protected Attributes

FileDescriptor m_fd
 
- Protected Attributes inherited from cosmos::StreamIO
FileDescriptorm_stream_fd
 

Additional Inherited Members

- Public Types inherited from cosmos::StreamIO
enum class  SeekType : int {
  SET = SEEK_SET , CUR = SEEK_CUR , END = SEEK_END , DATA = SEEK_DATA ,
  HOLE = SEEK_HOLE
}
 Different methods for changing the file read/write position. More...
 

Detailed Description

Base class for File types with ownership of a FileDescriptor.

Implementations of FileBase carry ownership of a FileDescriptor. How this FileDescriptor is obtained is defined by specializations of this class.

This type implements the file close() logic and the moveable-only-semantics i.e. the type is non-copiable, but the ownership of the file descriptor can be transferred to other instances using std::move() and implicit move operations.

This type inherits the StreamIO interface for operating on the file content using streaming file I/O.

Definition at line 22 of file FileBase.hxx.

Constructor & Destructor Documentation

◆ FileBase() [1/2]

cosmos::FileBase::FileBase ( const FileDescriptor fd = FileDescriptor{})
inlineprotected

Definition at line 26 of file FileBase.hxx.

26 {}) :
27 StreamIO{m_fd},
28 m_fd{fd}
29 {}
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Definition FileBase.hxx:74

◆ FileBase() [2/2]

cosmos::FileBase::FileBase ( FileBase && other)
inlineprotectednoexcept

Definition at line 35 of file FileBase.hxx.

35 :
36 StreamIO{m_fd} {
37 *this = std::move(other);
38 }

◆ ~FileBase()

cosmos::FileBase::~FileBase ( )
virtual

Definition at line 10 of file FileBase.cxx.

10 {
11 const auto orig_fd = m_fd.raw();
12 try {
13 this->close();
14 } catch (const std::exception &e) {
15 noncritical_error(sprintf("%s: failed to close fd(%d)", __FUNCTION__, to_integral(orig_fd)), e);
16 }
17}
virtual void close()
Close the current file object.
Definition FileBase.hxx:63
FileNum raw() const
Returns the primitive file descriptor contained in the object.

Member Function Documentation

◆ close()

virtual void cosmos::FileBase::close ( )
inlinevirtual

Close the current file object.

If currently no file is open then this does nothing. If currently an external FileDescriptor is wrapped and auto-close is not set then only the object's state will be invalidated. Otherwise the referenced file descriptor will also be closed on OS-level.

Reimplemented in cosmos::EventFile, cosmos::FDFile, cosmos::TempFile, and cosmos::TimerFD< CLOCK >.

Definition at line 63 of file FileBase.hxx.

63 {
64 if (!isOpen())
65 return;
66
67 m_fd.close();
68 }
bool isOpen() const
Returns whether currently a FileDescriptor is opened.
Definition FileBase.hxx:71
void close()
Explicitly close the contained FD.

◆ fd()

FileDescriptor cosmos::FileBase::fd ( ) const
inline

Allows access to the underlying fd with const semantics.

Definition at line 74 of file FileBase.hxx.

74{ return m_fd; }

◆ isOpen()

bool cosmos::FileBase::isOpen ( ) const
inline

Returns whether currently a FileDescriptor is opened.

Definition at line 71 of file FileBase.hxx.

71{ return m_fd.valid(); }
bool valid() const
Returns whether currently a valid file descriptor number is assigned.

◆ operator=()

FileBase & cosmos::FileBase::operator= ( FileBase && other)
inlineprotectednoexcept

Definition at line 40 of file FileBase.hxx.

40 {
41 m_fd = other.m_fd;
42 other.m_fd.reset();
43
44 return *this;
45 }

◆ truncate()

void cosmos::FileBase::truncate ( const off_t length)
See also
cosmos::fs::truncate().

Definition at line 19 of file FileBase.cxx.

19 {
20 fs::truncate(fd(), bytes);
21}

Member Data Documentation

◆ m_fd

FileDescriptor cosmos::FileBase::m_fd
protected

Definition at line 81 of file FileBase.hxx.


The documentation for this class was generated from the following files: