|
| | CFileCache (const unsigned int flags) |
| |
| | CFileCache (CCacheStrategy *pCache, bool bDeleteCache=true) |
| |
| | ~CFileCache () override |
| |
| void | SetCacheStrategy (CCacheStrategy *pCache, bool bDeleteCache=true) |
| |
| void | Process () override |
| |
| void | OnExit () override |
| |
| void | StopThread (bool bWait=true) override |
| |
| bool | Open (const CURL &url) override |
| |
| void | Close () override |
| |
| bool | Exists (const CURL &url) override |
| |
| int | Stat (const CURL &url, struct __stat64 *buffer) override |
| |
| ssize_t | Read (void *lpBuf, size_t uiBufSize) override |
| |
| int64_t | Seek (int64_t iFilePosition, int iWhence) override |
| |
| int64_t | GetPosition () override |
| |
| int64_t | GetLength () override |
| |
| int | IoControl (EIoControl request, void *param) override |
| |
| IFile * | GetFileImp () |
| |
| const std::string | GetProperty (XFILE::FileProperty type, const std::string &name="") const override |
| |
| virtual const std::vector< std::string > | GetPropertyValues (XFILE::FileProperty type, const std::string &name="") const override |
| |
| | IFile () |
| |
| virtual | ~IFile () |
| |
| virtual bool | OpenForWrite (const CURL &url, bool bOverWrite=false) |
| |
| virtual bool | ReOpen (const CURL &url) |
| |
| virtual int | Stat (struct __stat64 *buffer) |
| |
| virtual ssize_t | Write (const void *bufPtr, size_t bufSize) |
| |
| virtual bool | ReadString (char *szLine, int iLineLength) |
| |
| virtual void | Flush () |
| |
| virtual int | Truncate (int64_t size) |
| |
| virtual int | GetChunkSize () |
| |
| virtual double | GetDownloadSpeed () |
| |
| virtual bool | Delete (const CURL &url) |
| |
| virtual bool | Rename (const CURL &url, const CURL &urlnew) |
| |
| virtual bool | SetHidden (const CURL &url, bool hidden) |
| |
| | CThread (IRunnable *pRunnable, const char *ThreadName) |
| |
| virtual | ~CThread () |
| |
| void | Create (bool bAutoDelete=false, unsigned stacksize=0) |
| |
| void | Sleep (unsigned int milliseconds) |
| |
| int | GetSchedRRPriority (void) |
| |
| bool | SetPrioritySched_RR (int iPriority) |
| |
| bool | IsAutoDelete () const |
| |
| bool | IsRunning () const |
| |
| bool | IsCurrentThread () const |
| |
| int | GetMinPriority (void) |
| |
| int | GetMaxPriority (void) |
| |
| int | GetNormalPriority (void) |
| |
| int | GetPriority (void) |
| |
| bool | SetPriority (const int iPriority) |
| |
| bool | WaitForThreadExit (unsigned int milliseconds) |
| |
| float | GetRelativeUsage () |
| |
| int64_t | GetAbsoluteUsage () |
| |
| virtual void | OnException () |
| |
| int CFileCache::Stat |
( |
const CURL & |
url, |
|
|
struct __stat64 * |
buffer |
|
) |
| |
|
overridevirtual |
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).
- Parameters
-
| url | specifies requested file |
| buffer | pointer to __stat64 buffer to receive information about file |
- Returns
- zero of success, -1 otherwise.
Implements XFILE::IFile.