Implements the File interface for writing files to a disk.
More...
#include <kanzi/core/file/write_only_disk_file.hpp>
Implements the File interface for writing files to a disk.
◆ WriteOnlyDiskFile() [1/2]
kanzi::WriteOnlyDiskFile::WriteOnlyDiskFile |
( |
string_view |
filename | ) |
|
|
explicit |
Constructor.
- Parameters
-
filename | The name (including path) of the disk file to handle. Throws runtime_error if file cannot be accessed. |
◆ WriteOnlyDiskFile() [2/2]
kanzi::WriteOnlyDiskFile::WriteOnlyDiskFile |
( |
detail::FileUniquePtr |
file | ) |
|
|
protected |
◆ tryOpen()
Factory function.
Creates an object representing an open file handle to a disk file.
- Parameters
-
filename | The name (including path) of the disk file to handle. |
- Returns
- Pointer to the object, or null when file cannot be accessed.
◆ read()
void kanzi::WriteOnlyDiskFile::read |
( |
char * |
buffer, |
|
|
uintmax_t |
count |
|
) |
| |
|
overridevirtual |
Reads data from a file.
The function starts reading at the current file position. When you call read(), it invalidates the pointer returned by map(). This function throws when its can't read count number of bytes from the File.
- Parameters
-
buffer | Buffer to which to read. The size of the buffer in bytes must be at least the size of the value you pass in the count parameter. |
count | Number of bytes to read. |
- See also
- write(), tell(), and map().
Implements kanzi::File.
◆ tryRead()
KZ_NO_DISCARD uintmax_t kanzi::WriteOnlyDiskFile::tryRead |
( |
char * |
buffer, |
|
|
uintmax_t |
count |
|
) |
| |
|
overridevirtual |
Tries to reads data from a file.
The function starts reading at the current file position. When you call tryRead(), it invalidates the pointer returned by map().
- Parameters
-
buffer | Buffer to which to read. The size of the buffer in bytes must be at least the size of the value you pass in the count parameter. |
count | Number of bytes to read. |
- See also
- write(), tell(), and map().
- Returns
- Returns the number of bytes read.
Implements kanzi::File.
◆ write()
void kanzi::WriteOnlyDiskFile::write |
( |
const char * |
buffer, |
|
|
uintmax_t |
count |
|
) |
| |
|
overridevirtual |
Writes data to a file.
The function starts writing at the current file position. When you call write(), it invalidates the pointer returned by map().
- Parameters
-
buffer | Buffer from which to write. The size of the buffer in bytes must be at least the size of the value you pass in the count parameter. |
count | Number of bytes to write. |
- See also
- read(), tell(), and map().
Implements kanzi::File.
◆ size()
uintmax_t kanzi::WriteOnlyDiskFile::size |
( |
| ) |
const |
|
overridevirtual |
Gets the size of a file.
- Returns
- Returns the size of a file in bytes.
Implements kanzi::File.
◆ tell()
uintmax_t kanzi::WriteOnlyDiskFile::tell |
( |
| ) |
const |
|
overridevirtual |
◆ seek()
void kanzi::WriteOnlyDiskFile::seek |
( |
SeekPosition |
position, |
|
|
intmax_t |
offset |
|
) |
| |
|
overridevirtual |
Sets the position in a file.
You can set the position as an offset to either the current position or the beginning of the file. When you call seek(), it invalidates the pointer returned by map().
- Parameters
-
position | Seek origin. |
offset | Offset in bytes from the seek origin. |
- See also
- SeekPosition and tell().
Implements kanzi::File.
◆ map()
const byte* kanzi::WriteOnlyDiskFile::map |
( |
| ) |
|
|
overridevirtual |
Creates a memory mapping of the disk file.
Does nothing if the disk file has already been memory mapped.
- Returns
- Pointer to the view of the memory map.
Implements kanzi::File.
◆ m_fileHandle
detail::FileUniquePtr kanzi::WriteOnlyDiskFile::m_fileHandle |
|
protected |
The documentation for this class was generated from the following file: