#include <NFSFile.h>
|
| CNFSFile () |
|
| ~CNFSFile () override |
|
void | Close () override |
|
int64_t | Seek (int64_t iFilePosition, int iWhence=SEEK_SET) override |
|
ssize_t | Read (void *lpBuf, size_t uiBufSize) override |
|
bool | Open (const CURL &url) override |
|
bool | Exists (const CURL &url) override |
|
int | Stat (const CURL &url, struct __stat64 *buffer) override |
| Fills struct __stat64 with information about file specified by url.
|
|
int | Stat (struct __stat64 *buffer) override |
|
int64_t | GetLength () override |
|
int64_t | GetPosition () override |
|
ssize_t | Write (const void *lpBuf, size_t uiBufSize) override |
|
int | Truncate (int64_t iSize) override |
|
int | IoControl (IOControl request, void *param) override |
|
int | GetChunkSize () 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 |
|
| IFile () |
|
virtual | ~IFile () |
|
virtual bool | ReOpen (const CURL &url) |
|
virtual ReadLineResult | ReadLine (char *buffer, std::size_t bufferSize) |
|
virtual void | Flush () |
|
virtual double | GetDownloadSpeed () |
|
virtual bool | SetHidden (const CURL &url, bool hidden) |
|
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 |
|
◆ CNFSFile()
◆ ~CNFSFile()
◆ Close()
◆ Delete()
bool CNFSFile::Delete |
( |
const CURL & | url | ) |
|
|
overridevirtual |
◆ Exists()
bool CNFSFile::Exists |
( |
const CURL & | url | ) |
|
|
overridevirtual |
◆ GetChunkSize()
int XFILE::CNFSFile::GetChunkSize |
( |
| ) |
|
|
inlineoverridevirtual |
◆ GetLength()
◆ GetPosition()
◆ IoControl()
◆ IsValidFile()
bool CNFSFile::IsValidFile |
( |
const std::string & | strFileName | ) |
|
|
protected |
◆ Open()
◆ OpenForWrite()
bool CNFSFile::OpenForWrite |
( |
const CURL & | url, |
|
|
bool | bOverWrite = false ) |
|
overridevirtual |
◆ Read()
ssize_t CNFSFile::Read |
( |
void * | bufPtr, |
|
|
size_t | bufSize ) |
|
overridevirtual |
Attempt to read bufSize bytes from currently opened file into buffer bufPtr.
- Parameters
-
bufPtr | pointer to buffer |
bufSize | size of the buffer |
- Returns
- number of successfully read bytes if any bytes were read and stored in buffer, zero if no bytes are available to read (end of file was reached) or undetectable error occur, -1 in case of any explicit error
Implements XFILE::IFile.
◆ Rename()
bool CNFSFile::Rename |
( |
const CURL & | url, |
|
|
const CURL & | urlnew ) |
|
overridevirtual |
◆ Seek()
◆ Stat() [1/2]
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
-
[in] | url | specifies requested file. Ends with a directory separator for directories. |
[out] | buffer | pointer to __stat64 buffer to receive information about file |
- Returns
- zero for success, -1 otherwise.
Implements XFILE::IFile.
◆ Stat() [2/2]
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).
- Parameters
-
buffer | pointer to __stat64 buffer to receive information about file |
- Returns
- zero of success, -1 otherwise.
Reimplemented from XFILE::IFile.
◆ Truncate()
◆ Write()
ssize_t CNFSFile::Write |
( |
const void * | bufPtr, |
|
|
size_t | bufSize ) |
|
overridevirtual |
Attempt to write bufSize bytes from buffer bufPtr into currently opened file.
- Parameters
-
bufPtr | pointer to buffer |
bufSize | size of the buffer |
- Returns
- number of successfully written bytes if any bytes were written, zero if no bytes were written and no detectable error occur, -1 in case of any explicit error
- Bug
- libnfs < 2.0.0 isn't const correct
Reimplemented from XFILE::IFile.
◆ m_exportPath
std::string XFILE::CNFSFile::m_exportPath |
|
protected |
◆ m_fileSize
int64_t XFILE::CNFSFile::m_fileSize = 0 |
|
protected |
◆ m_pFileHandle
struct nfsfh* XFILE::CNFSFile::m_pFileHandle |
|
protected |
◆ m_pNfsContext
struct nfs_context* XFILE::CNFSFile::m_pNfsContext |
|
protected |
◆ m_url
CURL XFILE::CNFSFile::m_url |
|
protected |
The documentation for this class was generated from the following files: