|
Foxit PDF Conversion SDK
|
Chunk-based File stream interface, reading & writing. More...
Public Member Functions | |
| virtual FX_BOOL | Flush ()=0 |
| Flush internal buffer. More... | |
| virtual FX_INT64 | GetPosition ()=0 |
| Get the current reading position in stream. More... | |
| virtual FX_INT64 | GetSize ()=0 |
| Get the current stream size, in bytes. More... | |
| virtual FX_BOOL | IsEOF ()=0 |
| Determine whether reach the end of stream. More... | |
| virtual FX_BOOL | ReadBlock (void *buffer, FX_INT64 offset, size_t size)=0 |
| Read a data block from stream. More... | |
| virtual size_t | ReadBlock (void *buffer, size_t size)=0 |
| Read data block from stream. More... | |
| virtual void | Release ()=0 |
| Destroy the current instance. More... | |
| virtual FX_BOOL | WriteBlock (const void *buffer, FX_INT64 offset, size_t size)=0 |
| Write a block data into stream. More... | |
| virtual FX_BOOL | WriteBlock (const void *buffer, size_t size) |
| Write a block data to the end of current stream. More... | |
Public Member Functions inherited from IFX_FileRead | |
| virtual void | ClearRange () |
| Clear accessing range set by function IFX_FileRead::SetRange. More... | |
| virtual FX_INT64 | SetPosition (FX_INT64 pos) |
| Set the current file accessing position. More... | |
| virtual FX_BOOL | SetRange (FX_INT64 offset, FX_INT64 size) |
| Set accessing range. More... | |
Protected Member Functions | |
| virtual IFX_FileStream * | Retain ()=0 |
| Create a shared instance. More... | |
Chunk-based File stream interface, reading & writing.
|
pure virtual |
Flush internal buffer.
Implements IFX_FileStream.
|
pure virtual |
Get the current reading position in stream.
Implements IFX_FileStream.
|
pure virtual |
Get the current stream size, in bytes.
Implements IFX_FileStream.
|
pure virtual |
Determine whether reach the end of stream.
Implements IFX_FileStream.
|
pure virtual |
Read a data block from stream.
| [in,out] | buffer | Pointer to a buffer receiving data. |
| [in] | offset | Byte offset from beginning of the file, the position to read data. |
| [in] | size | Number of bytes to be read from stream. |
Implements IFX_FileStream.
|
pure virtual |
Read data block from stream.
| [in,out] | buffer | Buffer to store data. |
| [in] | size | Total size of buffer, in bytes. |
Implements IFX_FileStream.
|
pure virtual |
|
protectedpure virtual |
|
pure virtual |
Write a block data into stream.
| [in] | buffer | Pointer to the data block. |
| [in] | offset | Byte offset from beginning of the file, the position to write data. |
| [in] | size | The length in bytes of the buffer. |
Implements IFX_FileStream.
|
inlinevirtual |
Write a block data to the end of current stream.
| [in] | buffer | Pointer to the data block. |
| [in] | size | The length in bytes of the buffer. |
Reimplemented from IFX_FileStream.