libcamera
v0.3.2+116-83c5ad0f
Supporting cameras in Linux since 2019
|
Interface for I/O operations on files. More...
Public Types | |
enum | MapFlag { NoOption = 0, Private = (1 << 0) } |
Flags for the File::map() function. | |
enum | OpenModeFlag { NotOpen = 0, ReadOnly = (1 << 0), WriteOnly = (1 << 1), ReadWrite = ReadOnly | WriteOnly } |
Mode in which a file is opened. | |
using | MapFlags = Flags< MapFlag > |
A bitwise combination of File::MapFlag values. | |
using | OpenMode = Flags< OpenModeFlag > |
A bitwise combination of File::OpenModeFlag values. | |
Public Member Functions | |
File (const std::string &name) | |
Construct a File to represent the file name. More... | |
File () | |
Construct a File without an associated name. More... | |
~File () | |
Destroy a File instance. More... | |
const std::string & | fileName () const |
Retrieve the file name. More... | |
void | setFileName (const std::string &name) |
Set the name of the file. More... | |
bool | exists () const |
Check if the file specified by fileName() exists. More... | |
bool | open (OpenMode mode) |
Open the file in the given mode. More... | |
bool | isOpen () const |
Check if the file is open. More... | |
OpenMode | openMode () const |
Retrieve the file open mode. More... | |
void | close () |
Close the file. More... | |
int | error () const |
Retrieve the file error status. More... | |
ssize_t | size () const |
Retrieve the file size. More... | |
off_t | pos () const |
Return current read or write position. More... | |
off_t | seek (off_t pos) |
Set the read or write position. More... | |
ssize_t | read (const Span< uint8_t > &data) |
Read data from the file. More... | |
ssize_t | write (const Span< const uint8_t > &data) |
Write data to the file. More... | |
Span< uint8_t > | map (off_t offset=0, ssize_t size=-1, MapFlags flags=MapFlag::NoOption) |
Map a region of the file in the process memory. More... | |
bool | unmap (uint8_t *addr) |
Unmap a region mapped with map() More... | |
Static Public Member Functions | |
static bool | exists (const std::string &name) |
Check if the file specified by name exists. More... | |
Interface for I/O operations on files.
The File class provides an interface to perform I/O operations on files. It wraps opening, closing and mapping files in memory, and handles the cleaning of allocated resources.
File instances are usually constructed with a file name, but the name can be set later through the setFileName() function. Instances are not automatically opened when constructed, and shall be opened explictly with open().
Files can be mapped to the process memory with map(). Mapped regions can be unmapped manually with munmap(), and are automatically unmapped when the File is destroyed or when it is used to reference another file with setFileName().
libcamera::File::File | ( | const std::string & | name | ) |
libcamera::File::File | ( | ) |
Construct a File without an associated name.
Before being used for any purpose, the file name shall be set with setFileName().
libcamera::File::~File | ( | ) |
void libcamera::File::close | ( | ) |
|
inline |
Retrieve the file error status.
This function retrieves the error status from the last file open or I/O operation. The error status is a negative number as defined by errno.h. If no error occurred, this function returns 0.
bool libcamera::File::exists | ( | ) | const |
Check if the file specified by fileName() exists.
This function checks if the file specified by fileName() exists. The File instance doesn't need to be open to check for file existence, and this function may return false even if the file is open, if it was deleted from the file system.
|
static |
Check if the file specified by name exists.
[in] | name | The file name |
|
inline |
Retrieve the file name.
|
inline |
Check if the file is open.
Span< uint8_t > libcamera::File::map | ( | off_t | offset = 0 , |
ssize_t | size = -1 , |
||
File::MapFlags | flags = MapFlag::NoOption |
||
) |
Map a region of the file in the process memory.
[in] | offset | The region offset within the file |
[in] | size | The region sise |
[in] | flags | The mapping flags |
This function maps a region of size bytes of the file starting at offset into the process memory. The File instance shall be open, but may be closed after mapping the region. Mappings stay valid when the File is closed, and are destroyed automatically when the File is deleted.
If size is a negative value, this function maps the region starting at offset until the end of the file.
The mapping memory protection is controlled by the file open mode, unless flags contains MapFlag::Private in which case the region is mapped in read/write mode.
The error() status is updated.
bool libcamera::File::open | ( | File::OpenMode | mode | ) |
Open the file in the given mode.
[in] | mode | The open mode |
This function opens the file specified by fileName() in mode. If the file doesn't exist and the mode is WriteOnly or ReadWrite, this function will attempt to create the file with initial permissions set to 0666 (modified by the process' umask).
The file is opened with the O_CLOEXEC flag, and will be closed automatically when a new binary is executed with one of the exec(3) functions.
The error() status is updated.
|
inline |
Retrieve the file open mode.
off_t libcamera::File::pos | ( | ) | const |
Return current read or write position.
If the file is closed, this function returns 0.
ssize_t libcamera::File::read | ( | const Span< uint8_t > & | data | ) |
Read data from the file.
[in] | data | Memory to read data into |
Read at most data.size() bytes from the file into data.data(), and return the number of bytes read. If less data than requested is available, the returned byte count may be smaller than the requested size. If no more data is available, 0 is returned.
The position of the file as returned by pos() is advanced by the number of bytes read. If an error occurs, the position isn't modified.
off_t libcamera::File::seek | ( | off_t | pos | ) |
Set the read or write position.
[in] | pos | The desired position |
void libcamera::File::setFileName | ( | const std::string & | name | ) |
Set the name of the file.
[in] | name | The name of the file |
The name can contain an absolute path, a relative path or no path at all. Calling this function on an open file results in undefined behaviour.
Any memory mapping associated with the File is unmapped.
ssize_t libcamera::File::size | ( | ) | const |
Retrieve the file size.
This function retrieves the size of the file on the filesystem. The File instance shall be open to retrieve its size. The error() status is not modified, error codes are returned directly on failure.
bool libcamera::File::unmap | ( | uint8_t * | addr | ) |
ssize_t libcamera::File::write | ( | const Span< const uint8_t > & | data | ) |
Write data to the file.
[in] | data | Memory containing data to be written |
Write at most data.size() bytes from data.data() to the file, and return the number of bytes written. If the file system doesn't have enough space for the data, the returned byte count may be less than requested.
The position of the file as returned by pos() is advanced by the number of bytes written. If an error occurs, the position isn't modified.