Kodi Documentation 22.0
Kodi is an open source media player and entertainment hub.
|
#include <OverrideFile.h>
Public Member Functions | |
COverrideFile (bool writable) | |
~COverrideFile () override | |
bool | Open (const CURL &url) override |
bool | Exists (const CURL &url) override |
int | Stat (const CURL &url, struct __stat64 *buffer) override |
int | Stat (struct __stat64 *buffer) override |
bool | OpenForWrite (const CURL &url, bool bOverWrite=false) override |
bool | Delete (const CURL &url) override |
bool | Rename (const CURL &url, const CURL &urlnew) override |
ssize_t | Read (void *lpBuf, size_t uiBufSize) override |
ssize_t | Write (const void *lpBuf, size_t uiBufSize) override |
int64_t | Seek (int64_t iFilePosition, int iWhence=SEEK_SET) override |
void | Close () override |
int64_t | GetPosition () override |
int64_t | GetLength () override |
Public Member Functions inherited from XFILE::IFile | |
IFile () | |
virtual | ~IFile () |
virtual bool | ReOpen (const CURL &url) |
virtual ReadLineResult | ReadLine (char *buffer, std::size_t bufferSize) |
virtual void | Flush () |
virtual int | Truncate (int64_t size) |
virtual int | GetChunkSize () |
virtual double | GetDownloadSpeed () |
virtual bool | SetHidden (const CURL &url, bool hidden) |
virtual int | IoControl (EIoControl request, void *param) |
virtual const std::string | GetProperty (XFILE::FileProperty type, const std::string &name="") const |
virtual const std::vector< std::string > | GetPropertyValues (XFILE::FileProperty type, const std::string &name="") const |
Protected Member Functions | |
virtual std::string | TranslatePath (const CURL &url)=0 |
Protected Attributes | |
CFile | m_file |
bool | m_writable |
|
explicit |
|
override |
|
overridevirtual |
Implements XFILE::IFile.
Reimplemented from XFILE::IFile.
Reimplemented in XFILE::CPluginFile.
Implements XFILE::IFile.
Reimplemented in XFILE::CPluginFile.
|
overridevirtual |
Implements XFILE::IFile.
|
overridevirtual |
Implements XFILE::IFile.
Implements XFILE::IFile.
Reimplemented in XFILE::CPluginFile.
Reimplemented from XFILE::IFile.
Reimplemented in XFILE::CPluginFile.
Attempt to read bufSize bytes from currently opened file into buffer bufPtr.
bufPtr | pointer to buffer |
bufSize | size of the buffer |
Implements XFILE::IFile.
Reimplemented from XFILE::IFile.
Reimplemented in XFILE::CPluginFile.
Implements XFILE::IFile.
Fills struct __stat64 with information about file specified by url. For st_mode function will set correctly _S_IFDIR (directory) flag and may set _S_IREAD (read permission), _S_IWRITE (write permission) flags if such information is available. Function may set st_size (file size), st_atime, st_mtime, st_ctime (access, modification, creation times). Any other flags and members of __stat64 that didn't updated with actual file information will be set to zero (st_nlink can be set ether to 1 or zero).
url | specifies requested file |
buffer | pointer to __stat64 buffer to receive information about file |
Implements XFILE::IFile.
Reimplemented in XFILE::CPluginFile.
Fills struct __stat64 with information about currently open file For st_mode function will set correctly _S_IFDIR (directory) flag and may set _S_IREAD (read permission), _S_IWRITE (write permission) flags if such information is available. Function may set st_size (file size), st_atime, st_mtime, st_ctime (access, modification, creation times). Any other flags and members of __stat64 that didn't updated with actual file information will be set to zero (st_nlink can be set ether to 1 or zero).
buffer | pointer to __stat64 buffer to receive information about file |
Reimplemented from XFILE::IFile.
Reimplemented in XFILE::CPluginFile.
|
protectedpure virtual |
Attempt to write bufSize bytes from buffer bufPtr into currently opened file.
bufPtr | pointer to buffer |
bufSize | size of the buffer |
Reimplemented from XFILE::IFile.
|
protected |
|
protected |