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

File objects that are opened from existing FileDescriptor objects. More...

#include <FDFile.hxx>

+ Inheritance diagram for cosmos::FDFile:

Public Member Functions

 FDFile (const FileDescriptor fd, const AutoCloseFD auto_close)
 Wrap the given file descriptor applying the specified auto-close behaviour.
 
 FDFile (FDFile &&other) noexcept
 
FDFileoperator= (FDFile &&other) noexcept
 
void open (const FileDescriptor fd, const AutoCloseFD auto_close)
 Takes the already open file descriptor fd and operates on it.
 
void close () override
 Close the current file object.
 
- Public Member Functions inherited from cosmos::FileBase
 FileBase (const FileBase &)=delete
 
FileBaseoperator= (const FileBase &)=delete
 
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 Attributes

AutoCloseFD m_auto_close
 
- Protected Attributes inherited from cosmos::FileBase
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...
 
- Protected Member Functions inherited from cosmos::FileBase
 FileBase (const FileDescriptor fd=FileDescriptor{})
 
 FileBase (FileBase &&other) noexcept
 
FileBaseoperator= (FileBase &&other) noexcept
 

Detailed Description

File objects that are opened from existing FileDescriptor objects.

This is a thin file type that simply wraps an existing FileDescriptor object. Taking ownership of the provided file descriptor is optional and needs to be decided explicitly. If ownership is not taken then the file descriptor will never be closed by the implementation.

Definition at line 15 of file FDFile.hxx.

Constructor & Destructor Documentation

◆ FDFile() [1/2]

cosmos::FDFile::FDFile ( const FileDescriptor fd,
const AutoCloseFD auto_close )
inline

Wrap the given file descriptor applying the specified auto-close behaviour.

Definition at line 22 of file FDFile.hxx.

22 {
23 open(fd, auto_close);
24 }
void open(const FileDescriptor fd, const AutoCloseFD auto_close)
Takes the already open file descriptor fd and operates on it.
Definition FDFile.hxx:50
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
Definition FileBase.hxx:74

◆ FDFile() [2/2]

cosmos::FDFile::FDFile ( FDFile && other)
inlinenoexcept

Definition at line 26 of file FDFile.hxx.

26 {
27 *this = std::move(other);
28 }

◆ ~FDFile()

cosmos::FDFile::~FDFile ( )

Definition at line 6 of file FDFile.cxx.

6 {
7 if (!m_auto_close) {
8 // only close() here if we're not actually closing. This
9 // cannot fail. If we have to close() then let the base class
10 // destructor do that.
11 close();
12 }
13}
void close() override
Close the current file object.
Definition FDFile.hxx:62

Member Function Documentation

◆ close()

void cosmos::FDFile::close ( )
inlineoverridevirtual

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 from cosmos::FileBase.

Reimplemented in cosmos::TimerFD< CLOCK >.

Definition at line 62 of file FDFile.hxx.

62 {
63
64 if (!m_auto_close) {
65 m_fd.reset();
66 m_auto_close = AutoCloseFD{true};
67 return;
68 }
69
71 }
virtual void close()
Close the current file object.
Definition FileBase.hxx:63
void reset()
Invalidates the stored file descriptor.
NamedBool< struct close_file_t, true > AutoCloseFD
Strong boolean type for expressing the responsibility to close file descriptors.
Definition types.hxx:29

◆ open()

void cosmos::FDFile::open ( const FileDescriptor fd,
const AutoCloseFD auto_close )
inline

Takes the already open file descriptor fd and operates on it.

The caller is responsible for invalidating fd, if desired, and that the file descriptor is not used in conflicting ways.

The parameter auto_close determines whether the File object will take ownership of the file descriptor, or not. If so then the file descriptor is closed on OS level if deemed necessary by the implementation.

Definition at line 50 of file FDFile.hxx.

50 {
51 m_fd = fd;
52 m_auto_close = auto_close;
53 }

◆ operator=()

FDFile & cosmos::FDFile::operator= ( FDFile && other)
inlinenoexcept

Definition at line 30 of file FDFile.hxx.

30 {
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 }

Member Data Documentation

◆ m_auto_close

AutoCloseFD cosmos::FDFile::m_auto_close
protected

Definition at line 74 of file FDFile.hxx.


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