libcosmos
Linux C++ System Programming Library
|
Specialization of FileBase for managing temporary files. More...
#include <TempFile.hxx>
Public Member Functions | |
TempFile (const SysString _template, const OpenFlags flags=OpenFlags{OpenFlag::CLOEXEC}) | |
TempFile & | operator= (TempFile &&other) noexcept |
void | close () override |
Close the current file object. | |
void | open (const SysString _template, const OpenFlags flags=OpenFlags{OpenFlag::CLOEXEC}) |
const std::string & | path () const |
Returns the expanded path to the temporary file. | |
![]() | |
FileBase (const FileBase &)=delete | |
FileBase & | operator= (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) |
![]() | |
StreamIO (FileDescriptor &fd) | |
StreamIO (const StreamIO &)=delete | |
StreamIO & | operator= (const StreamIO &)=delete |
StreamIO & | operator= (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 | |
void | unlinkPath () |
![]() | |
FileBase (const FileDescriptor fd=FileDescriptor{}) | |
FileBase (FileBase &&other) noexcept | |
FileBase & | operator= (FileBase &&other) noexcept |
Protected Attributes | |
std::string | m_tmp_path |
![]() | |
FileDescriptor | m_fd |
![]() | |
FileDescriptor & | m_stream_fd |
Additional Inherited Members | |
![]() | |
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... | |
Specialization of FileBase for managing temporary files.
Creates a named temporary file in a template path and manages the lifetime of the resulting file descriptor and of the file on file system level.
Upon close() both the file descriptor will be closed and the file on disk will be unlinked.
_template
path. Definition at line 20 of file TempFile.hxx.
|
inlineexplicit |
Definition at line 26 of file TempFile.hxx.
cosmos::TempFile::~TempFile | ( | ) |
Definition at line 8 of file TempFile.cxx.
|
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.
Definition at line 42 of file TempFile.hxx.
|
inline |
Definition at line 53 of file TempFile.hxx.
Definition at line 32 of file TempFile.hxx.
const std::string & cosmos::TempFile::path | ( | ) | const |
Returns the expanded path to the temporary file.
This is only valid if currently a temporary file is open. Otherwise a UsageError will be thrown.
Definition at line 16 of file TempFile.cxx.
|
inlineprotected |
Definition at line 70 of file TempFile.hxx.
|
protected |
Definition at line 84 of file TempFile.hxx.