Qt 6.x
The Qt SDK
Loading...
Searching...
No Matches
QAbstractFileEngineHandler Class Referenceabstract

\inmodule QtCore \reentrant More...

#include <qabstractfileengine_p.h>

+ Inheritance diagram for QAbstractFileEngineHandler:
+ Collaboration diagram for QAbstractFileEngineHandler:

Public Member Functions

 QAbstractFileEngineHandler ()
 Constructs a file handler and registers it with Qt.
 
virtual ~QAbstractFileEngineHandler ()
 Destroys the file handler.
 
virtual QAbstractFileEnginecreate (const QString &fileName) const =0
 Creates a file engine for file fileName.
 

Detailed Description

\inmodule QtCore \reentrant

The QAbstractFileEngineHandler class provides a way to register custom file engines with your application.

Since
4.1

QAbstractFileEngineHandler is a factory for creating QAbstractFileEngine objects (file engines), which are used internally by QFile, QFileInfo, and QDir when working with files and directories.

When you open a file, Qt chooses a suitable file engine by passing the file name from QFile or QDir through an internal list of registered file engine handlers. The first handler to recognize the file name is used to create the engine. Qt provides internal file engines for working with regular files and resources, but you can also register your own QAbstractFileEngine subclasses.

To install an application-specific file engine, you subclass QAbstractFileEngineHandler and reimplement create(). When you instantiate the handler (e.g. by creating an instance on the stack or on the heap), it will automatically register with Qt. (The latest registered handler takes precedence over existing handlers.)

For example:

{
public:
QAbstractFileEngine *create(const QString &fileName) const override;
};
{
// ZipEngineHandler returns a ZipEngine for all .zip files
return fileName.toLower().endsWith(".zip") ? new ZipEngine(fileName) : 0;
}
int main(int argc, char **argv)
{
QApplication app(argc, argv);
window.show();
return app.exec();
}
\inmodule QtCore \reentrant
\inmodule QtCore \reentrant
The QApplication class manages the GUI application's control flow and main settings.
static int exec()
Enters the main event loop and waits until exit() is called, then returns the value that was set to e...
\macro QT_RESTRICTED_CAST_FROM_ASCII
Definition qstring.h:127
QAbstractFileEngine * create(const QString &fileName) const override
[0]
int main()
[0]
QApplication app(argc, argv)
[0]
aWidget window() -> setWindowTitle("New Window Title")
[2]
view create()
QJSEngine engine
[0]

When the handler is destroyed, it is automatically removed from Qt.

The most common approach to registering a handler is to create an instance as part of the start-up phase of your application. It is also possible to limit the scope of the file engine handler to a particular area of interest (e.g. a special file dialog that needs a custom file engine). By creating the handler inside a local scope, you can precisely control the area in which your engine will be applied without disturbing file operations in other parts of your application.

See also
QAbstractFileEngine, QAbstractFileEngine::create()

Definition at line 186 of file qabstractfileengine_p.h.

Constructor & Destructor Documentation

◆ QAbstractFileEngineHandler()

QAbstractFileEngineHandler::QAbstractFileEngineHandler ( )

Constructs a file handler and registers it with Qt.

Once created this handler's create() function will be called (along with all the other handlers) for any paths used. The most recently created handler that recognizes the given path (i.e. that returns a QAbstractFileEngine) is used for the new path.

See also
create()

Definition at line 96 of file qabstractfileengine.cpp.

References qt_file_engine_handlers_in_use, and QBasicAtomicInteger< T >::storeRelaxed().

+ Here is the call graph for this function:

◆ ~QAbstractFileEngineHandler()

QAbstractFileEngineHandler::~QAbstractFileEngineHandler ( )
virtual

Destroys the file handler.

This will automatically unregister the handler from Qt.

Definition at line 107 of file qabstractfileengine.cpp.

References QList< T >::isEmpty(), qt_abstractfileenginehandlerlist_shutDown, qt_file_engine_handlers_in_use, QList< T >::removeOne(), and QBasicAtomicInteger< T >::storeRelaxed().

+ Here is the call graph for this function:

Member Function Documentation

◆ create()

QAbstractFileEngine * QAbstractFileEngineHandler::create ( const QString fileName) const
pure virtual

Creates a file engine for file fileName.

Returns 0 if this file handler cannot handle fileName.

Example:

{
// ZipEngineHandler returns a ZipEngine for all .zip files
return fileName.toLower().endsWith(".zip") ? new ZipEngine(fileName) : 0;
}
See also
QAbstractFileEngine::create()

Implemented in QIOSFileEngineFactory, ZipEngineHandler, AndroidContentFileEngineHandler, AndroidAssetsFileEngineHandler, and QQmlPreviewFileEngineHandler.


The documentation for this class was generated from the following files: