![]() |
Exiv2
|
Provides binary file IO by implementing the BasicIo interface. More...
#include <basicio.hpp>
Public Member Functions | |
Creators | |
FileIo (const std::string &path) | |
Constructor that accepts the file path on which IO will be performed. The constructor does not open the file, and therefore never fails. | |
~FileIo () override | |
Destructor. Flushes and closes an open file. | |
Manipulators | |
int | open (const std::string &mode) |
Open the file using the specified mode. | |
int | open () override |
Open the file using the default access mode of "rb". This method can also be used to "reopen" a file which will flush any unwritten data and reset the IO position to the start. | |
int | close () override |
Flush and unwritten data and close the file . It is safe to call close on an already closed instance. | |
size_t | write (const byte *data, size_t wcount) override |
Write data to the file. The file position is advanced by the number of bytes written. | |
size_t | write (BasicIo &src) override |
Write data that is read from another BasicIo instance to the file. The file position is advanced by the number of bytes written. | |
int | putb (byte data) override |
Write one byte to the file. The file position is advanced by one byte. | |
DataBuf | read (size_t rcount) override |
Read data from the file. Reading starts at the current file position and the position is advanced by the number of bytes read. | |
size_t | read (byte *buf, size_t rcount) override |
Read data from the file. Reading starts at the current file position and the position is advanced by the number of bytes read. | |
int | getb () override |
Read one byte from the file. The file position is advanced by one byte. | |
void | transfer (BasicIo &src) override |
Remove the contents of the file and then transfer data from the src BasicIo object into the empty file. | |
int | seek (int64_t offset, Position pos) override |
Move the current IO position. | |
byte * | mmap (bool isWriteable=false) override |
Map the file into the process's address space. The file must be open before mmap() is called. If the mapped area is writeable, changes may not be written back to the underlying file until munmap() is called. The pointer is valid only as long as the FileIo object exists. | |
int | munmap () override |
Remove a mapping established with mmap(). If the mapped area is writeable, this ensures that changes are written back to the underlying file. | |
virtual void | setPath (const std::string &path) |
close the file source and set a new path. | |
![]() | |
virtual | ~BasicIo ()=default |
Destructor. | |
void | readOrThrow (byte *buf, size_t rcount, ErrorCode err=ErrorCode::kerCorruptedMetadata) |
Safe version of read() that checks for errors and throws an exception if the read was unsuccessful. | |
void | seekOrThrow (int64_t offset, Position pos, ErrorCode err) |
Safe version of seek() that checks for errors and throws an exception if the seek was unsuccessful. | |
Accessors | |
size_t | tell () const override |
Get the current file position. | |
size_t | size () const override |
Flush any buffered writes and get the current file size in bytes. | |
bool | isopen () const override |
Returns true if the file is open, otherwise false. | |
int | error () const override |
Returns 0 if the file is in a valid state, otherwise nonzero. | |
bool | eof () const override |
Returns true if the file position has reached the end, otherwise false. | |
const std::string & | path () const noexcept override |
Returns the path of the file. | |
void | populateFakeData () override |
Mark all the bNone blocks to bKnow. This avoids allocating memory for parts of the file that contain image-date (non-metadata/pixel data) | |
FileIo (const FileIo &)=delete | |
Copy constructor. | |
FileIo & | operator= (const FileIo &)=delete |
Assignment operator. | |
Additional Inherited Members | |
![]() | |
enum | Position { beg , cur , end } |
Seek starting positions. | |
using | UniquePtr = std::unique_ptr< BasicIo > |
BasicIo auto_ptr type. | |
![]() | |
byte * | bigBlock_ {} |
this is allocated and populated by mmap() | |
Provides binary file IO by implementing the BasicIo interface.
|
explicit |
Constructor that accepts the file path on which IO will be performed. The constructor does not open the file, and therefore never fails.
path | The full path of a file |
|
overridevirtual |
Flush and unwritten data and close the file . It is safe to call close on an already closed instance.
Implements Exiv2::BasicIo.
|
overridevirtual |
Returns true if the file position has reached the end, otherwise false.
Implements Exiv2::BasicIo.
|
overridevirtual |
Returns 0 if the file is in a valid state, otherwise nonzero.
Implements Exiv2::BasicIo.
|
overridevirtual |
Read one byte from the file. The file position is advanced by one byte.
Implements Exiv2::BasicIo.
|
overridevirtual |
Returns true if the file is open, otherwise false.
Implements Exiv2::BasicIo.
|
overridevirtual |
Map the file into the process's address space. The file must be open before mmap() is called. If the mapped area is writeable, changes may not be written back to the underlying file until munmap() is called. The pointer is valid only as long as the FileIo object exists.
isWriteable | Set to true if the mapped area should be writeable (default is false). |
Error | In case of failure. |
Implements Exiv2::BasicIo.
|
overridevirtual |
Remove a mapping established with mmap(). If the mapped area is writeable, this ensures that changes are written back to the underlying file.
Implements Exiv2::BasicIo.
|
overridevirtual |
Open the file using the default access mode of "rb". This method can also be used to "reopen" a file which will flush any unwritten data and reset the IO position to the start.
Implements Exiv2::BasicIo.
int Exiv2::FileIo::open | ( | const std::string & | mode | ) |
Open the file using the specified mode.
This method can also be used to "reopen" a file which will flush any unwritten data and reset the IO position to the start. Although files can be opened in binary or text mode, this class has only been tested carefully in binary mode.
mode | Specified that type of access allowed on the file. Valid values match those of the C fopen command exactly. |
|
overridevirtualnoexcept |
Returns the path of the file.
Implements Exiv2::BasicIo.
|
overridevirtual |
Mark all the bNone blocks to bKnow. This avoids allocating memory for parts of the file that contain image-date (non-metadata/pixel data)
Implements Exiv2::BasicIo.
|
overridevirtual |
Write one byte to the file. The file position is advanced by one byte.
data | The single byte to be written. |
Implements Exiv2::BasicIo.
|
overridevirtual |
Read data from the file. Reading starts at the current file position and the position is advanced by the number of bytes read.
buf | Pointer to a block of memory into which the read data is stored. The memory block must be at least rcount bytes long. |
rcount | Maximum number of bytes to read. Fewer bytes may be read if rcount bytes are not available. |
Implements Exiv2::BasicIo.
|
overridevirtual |
Read data from the file. Reading starts at the current file position and the position is advanced by the number of bytes read.
rcount | Maximum number of bytes to read. Fewer bytes may be read if rcount bytes are not available. |
Implements Exiv2::BasicIo.
|
overridevirtual |
Move the current IO position.
offset | Number of bytes to move the position relative to the starting position specified by pos |
pos | Position from which the seek should start |
Implements Exiv2::BasicIo.
|
overridevirtual |
Flush any buffered writes and get the current file size in bytes.
Implements Exiv2::BasicIo.
|
overridevirtual |
|
overridevirtual |
Remove the contents of the file and then transfer data from the src BasicIo object into the empty file.
This method is optimized to simply rename the source file if the source object is another FileIo instance. The source BasicIo object is invalidated by this operation and should not be used after this method returns. This method exists primarily to be used with the BasicIo::temporary() method.
src | Reference to another BasicIo instance. The entire contents of src are transferred to this object. The src object is invalidated by the method. |
Error | In case of failure |
Implements Exiv2::BasicIo.
Reimplemented in Exiv2::XPathIo.
|
overridevirtual |
Write data that is read from another BasicIo instance to the file. The file position is advanced by the number of bytes written.
src | Reference to another BasicIo instance. Reading start at the source's current IO position |
Implements Exiv2::BasicIo.
|
overridevirtual |
Write data to the file. The file position is advanced by the number of bytes written.
data | Pointer to data. Data must be at least wcount bytes long |
wcount | Number of bytes to be written. |
Implements Exiv2::BasicIo.