QAbstractFileEngine Class | Qt 4.8 (original) (raw)

The QAbstractFileEngine class provides an abstraction for accessing the filesystem. More...

Member Function Documentation

[protected] QAbstractFileEngine::QAbstractFileEngine()

Constructs a new QAbstractFileEngine that does not refer to any file or directory.

See also setFileName().

[virtual] QAbstractFileEngine::~QAbstractFileEngine()

Destroys the QAbstractFileEngine.

bool QAbstractFileEngine::atEnd() const

Returns true if the current position is at the end of the file; otherwise, returns false.

This function bases its behavior on calling extension() with AtEndExtension. If the engine does not support this extension, false is returned.

This function was introduced in Qt 4.3.

See also extension(), supportsExtension(), and QFile::atEnd().

[virtual] Iterator * QAbstractFileEngine::beginEntryList(QDir::Filters filters, const QStringList & filterNames)

Returns an instance of a QAbstractFileEngineIterator using filters for entry filtering and filterNames for name filtering. This function is called by QDirIterator to initiate directory iteration.

QDirIterator takes ownership of the returned instance, and deletes it when it's done.

See also QDirIterator.

[virtual] bool QAbstractFileEngine::caseSensitive() const

Should return true if the underlying file system is case-sensitive; otherwise return false.

This virtual function must be reimplemented by all subclasses.

[virtual] bool QAbstractFileEngine::close()

Closes the file, returning true if successful; otherwise returns false.

The default implementation always returns false.

[virtual] bool QAbstractFileEngine::copy(const QString & newName)

Copies the contents of this file to a file with the name newName. Returns true on success; otherwise, false is returned.

[static] QAbstractFileEngine * QAbstractFileEngine::create(const QString & fileName)

Creates and returns a QAbstractFileEngine suitable for processing fileName.

You should not need to call this function; use QFile, QFileInfo or QDir directly instead.

If you reimplemnt this function, it should only return file engines that knows how to handle fileName; otherwise, it should return 0.

See also QAbstractFileEngineHandler.

[virtual] QStringList QAbstractFileEngine::entryList(QDir::Filters filters, const QStringList & filterNames) const

Requests that a list of all the files matching the filters list based on the filterNames in the file engine's directory are returned.

Should return an empty list if the file engine refers to a file rather than a directory, or if the directory is unreadable or does not exist or if nothing matches the specifications.

This virtual function must be reimplemented by all subclasses.

See also setFileName().

QFile::FileError QAbstractFileEngine::error() const

Returns the QFile::FileError that resulted from the last failed operation. If QFile::UnspecifiedError is returned, QFile will use its own idea of the error status.

See also setError(), QFile::FileError, and errorString().

QString QAbstractFileEngine::errorString() const

Returns the human-readable message appropriate to the current error reported by error(). If no suitable string is available, an empty string is returned.

See also error().

[virtual] bool QAbstractFileEngine::extension(Extension extension, const ExtensionOption * option = 0, ExtensionReturn * output = 0)

This virtual function can be reimplemented in a QAbstractFileEngine subclass to provide support for extensions. The option argument is provided as input to the extension, and this function can store output results in output.

The behavior of this function is determined by extension; see the Extension documentation for details.

You can call supportsExtension() to check if an extension is supported by the file engine.

By default, no extensions are supported, and this function returns false.

This function was introduced in Qt 4.3.

See also supportsExtension() and Extension.

[virtual] FileFlags QAbstractFileEngine::fileFlags(FileFlags type = FileInfoAll) const

This function should return the set of OR'd flags that are true for the file engine's file, and that are in the type's OR'd members.

In your reimplementation you can use the type argument as an optimization hint and only return the OR'd set of members that are true and that match those in type; in other words you can ignore any members not mentioned in type, thus avoiding some potentially expensive lookups or system calls.

This virtual function must be reimplemented by all subclasses.

See also setFileName().

[virtual] QString QAbstractFileEngine::fileName(FileName file = DefaultName) const

Return the file engine's current file name in the format specified by file.

If you don't handle some FileName possibilities, return the file name set in setFileName() when an unhandled format is requested.

This virtual function must be reimplemented by all subclasses.

See also setFileName() and FileName.

[virtual] QDateTime QAbstractFileEngine::fileTime(FileTime time) const

If time is CreationTime, return when the file was created. If time is ModificationTime, return when the file was most recently modified. If time is AccessTime, return when the file was most recently accessed (e.g. read or written). If the time cannot be determined return QDateTime() (an invalid date time).

This virtual function must be reimplemented by all subclasses.

See also setFileName(), QDateTime, QDateTime::isValid(), and FileTime.

[virtual] bool QAbstractFileEngine::flush()

Flushes the open file, returning true if successful; otherwise returns false.

The default implementation always returns false.

[virtual] int QAbstractFileEngine::handle() const

Returns the native file handle for this file engine. This handle must be used with care; its value and type are platform specific, and using it will most likely lead to non-portable code.

[virtual] bool QAbstractFileEngine::isRelativePath() const

Return true if the file referred to by this file engine has a relative path; otherwise return false.

This virtual function must be reimplemented by all subclasses.

See also setFileName().

[virtual] bool QAbstractFileEngine::isSequential() const

Returns true if the file is a sequential access device; returns false if the file is a direct access device.

Operations involving size() and seek(int) are not valid on sequential devices.

[virtual] bool QAbstractFileEngine::link(const QString & newName)

Creates a link from the file currently specified by fileName() to newName. What a link is depends on the underlying filesystem (be it a shortcut on Windows or a symbolic link on Unix). Returns true if successful; otherwise returns false.

uchar * QAbstractFileEngine::map(qint64 offset, qint64 size, QFile::MemoryMapFlags flags)

Maps size bytes of the file into memory starting at offset. Returns a pointer to the memory if successful; otherwise returns false if, for example, an error occurs.

This function bases its behavior on calling extension() with MapExtensionOption. If the engine does not support this extension, 0 is returned.

flags is currently not used, but could be used in the future.

This function was introduced in Qt 4.4.

See also unmap() and supportsExtension().

[virtual] bool QAbstractFileEngine::mkdir(const QString & dirName, bool createParentDirectories) const

Requests that the directory dirName be created. If createParentDirectories is true, then any sub-directories in dirName that don't exist must be created. If createParentDirectories is false then any sub-directories in dirName must already exist for the function to succeed. If the operation succeeds return true; otherwise return false.

This virtual function must be reimplemented by all subclasses.

See also setFileName(), rmdir(), and isRelativePath().

[virtual] bool QAbstractFileEngine::open(QIODevice::OpenMode mode)

Opens the file in the specified mode. Returns true if the file was successfully opened; otherwise returns false.

The mode is an OR combination of QIODevice::OpenMode and QIODevice::HandlingMode values.

[virtual] QString QAbstractFileEngine::owner(FileOwner owner) const

If owner is OwnerUser return the name of the user who owns the file. If owner is OwnerGroup return the name of the group that own the file. If you can't determine the owner return QString().

This virtual function must be reimplemented by all subclasses.

See also ownerId(), setFileName(), and FileOwner.

[virtual] uint QAbstractFileEngine::ownerId(FileOwner owner) const

If owner is OwnerUser return the ID of the user who owns the file. If owner is OwnerGroup return the ID of the group that own the file. If you can't determine the owner return -2.

This virtual function must be reimplemented by all subclasses.

See also owner(), setFileName(), and FileOwner.

[virtual] qint64 QAbstractFileEngine::pos() const

Returns the current file position.

This is the position of the data read/write head of the file.

[virtual] qint64 QAbstractFileEngine::read(char * data, qint64 maxlen)

Reads a number of characters from the file into data. At most maxlen characters will be read.

Returns -1 if a fatal error occurs, or 0 if there are no bytes to read.

[virtual] qint64 QAbstractFileEngine::readLine(char * data, qint64 maxlen)

This function reads one line, terminated by a '\n' character, from the file info data. At most maxlen characters will be read. The end-of-line character is included.

[virtual] bool QAbstractFileEngine::remove()

Requests that the file is deleted from the file system. If the operation succeeds return true; otherwise return false.

This virtual function must be reimplemented by all subclasses.

See also setFileName() and rmdir().

[virtual] bool QAbstractFileEngine::rename(const QString & newName)

Requests that the file be renamed to newName in the file system. If the operation succeeds return true; otherwise return false.

This virtual function must be reimplemented by all subclasses.

See also setFileName().

[virtual] bool QAbstractFileEngine::rmdir(const QString & dirName, bool recurseParentDirectories) const

Requests that the directory dirName is deleted from the file system. When recurseParentDirectories is true, then any empty parent-directories in dirName must also be deleted. If recurseParentDirectories is false, only the dirName leaf-node should be deleted. In most file systems a directory cannot be deleted using this function if it is non-empty. If the operation succeeds return true; otherwise return false.

This virtual function must be reimplemented by all subclasses.

See also setFileName(), remove(), mkdir(), and isRelativePath().

[virtual] bool QAbstractFileEngine::seek(qint64 offset)

Sets the file position to the given offset. Returns true if the position was successfully set; otherwise returns false.

The offset is from the beginning of the file, unless the file is sequential.

See also isSequential().

[protected] void QAbstractFileEngine::setError(QFile::FileError error, const QString & errorString)

Sets the error type to error, and the error string to errorString. Call this function to set the error values returned by the higher-level classes.

See also QFile::error(), QIODevice::errorString(), and QIODevice::setErrorString().

[virtual] void QAbstractFileEngine::setFileName(const QString & file)

Sets the file engine's file name to file. This file name is the file that the rest of the virtual functions will operate on.

This virtual function must be reimplemented by all subclasses.

See also fileName() and rename().

[virtual] bool QAbstractFileEngine::setPermissions(uint perms)

Requests that the file's permissions be set to perms. The argument perms will be set to the OR-ed together combination of QAbstractFileEngine::FileInfo, with only the QAbstractFileEngine::PermsMask being honored. If the operations succceeds return true; otherwise return false;

This virtual function must be reimplemented by all subclasses.

See also size().

[virtual] bool QAbstractFileEngine::setSize(qint64 size)

Requests that the file be set to size size. If size is larger than the current file then it is filled with 0's, if smaller it is simply truncated. If the operations succceeds return true; otherwise return false;

This virtual function must be reimplemented by all subclasses.

See also size().

[virtual] qint64 QAbstractFileEngine::size() const

Returns the size of the file.

See also setSize().

[virtual] bool QAbstractFileEngine::supportsExtension(Extension extension) const

This virtual function returns true if the file engine supports extension; otherwise, false is returned. By default, no extensions are supported.

This function was introduced in Qt 4.3.

See also extension().

bool QAbstractFileEngine::unmap(uchar * address)

Unmaps the memory address. Returns true if the unmap succeeds; otherwise returns false.

This function bases its behavior on calling extension() with UnMapExtensionOption. If the engine does not support this extension, false is returned.

This function was introduced in Qt 4.4.

See also map() and supportsExtension().

[virtual] qint64 QAbstractFileEngine::write(const char * data, qint64 len)

Writes len bytes from data to the file. Returns the number of characters written on success; otherwise returns -1.