![]() |
Qt 6.x
The Qt SDK
|
The QQmlIncubator class allows QML objects to be created asynchronously. More...
#include <qqmlincubator.h>
Public Types | |
enum | IncubationMode { Asynchronous , AsynchronousIfNested , Synchronous } |
Specifies the mode the incubator operates in. More... | |
enum | Status { Null , Ready , Loading , Error } |
Specifies the status of the QQmlIncubator. More... | |
Public Member Functions | |
QQmlIncubator (IncubationMode=Asynchronous) | |
Create a new incubator with the specified mode. | |
virtual | ~QQmlIncubator () |
void | clear () |
Clears the incubator. | |
void | forceCompletion () |
Force any in-progress incubation to finish synchronously. | |
bool | isNull () const |
Returns true if the incubator's status() is Null. | |
bool | isReady () const |
Returns true if the incubator's status() is Ready. | |
bool | isError () const |
Returns true if the incubator's status() is Error. | |
bool | isLoading () const |
Returns true if the incubator's status() is Loading. | |
QList< QQmlError > | errors () const |
Return the list of errors encountered while incubating the object. | |
IncubationMode | incubationMode () const |
Return the incubation mode passed to the QQmlIncubator constructor. | |
Status | status () const |
Return the current status of the incubator. | |
QObject * | object () const |
Return the incubated object if the status is Ready, otherwise 0. | |
void | setInitialProperties (const QVariantMap &initialProperties) |
Stores a mapping from property names to initial values, contained in initialProperties, with which the incubated component will be initialized. | |
Protected Member Functions | |
virtual void | statusChanged (Status) |
Called when the status of the incubator changes. | |
virtual void | setInitialState (QObject *) |
Called after the object is first created, but before property bindings are evaluated and, if applicable, QQmlParserStatus::componentComplete() is called. | |
Friends | |
class | QQmlComponent |
class | QQmlEnginePrivate |
class | QQmlIncubatorPrivate |
The QQmlIncubator class allows QML objects to be created asynchronously.
\inmodule QtQml
Creating QML objects - like delegates in a view, or a new page in an application - can take a noticeable amount of time, especially on resource constrained mobile devices. When an application uses QQmlComponent::create() directly, the QML object instance is created synchronously which, depending on the complexity of the object, can cause noticeable pauses or stutters in the application.
The use of QQmlIncubator gives more control over the creation of a QML object, including allowing it to be created asynchronously using application idle time. The following example shows a simple use of QQmlIncubator.
Asynchronous incubators are controlled by a QQmlIncubationController that is set on the QQmlEngine, which lets the engine know when the application is idle and incubating objects should be processed. If an incubation controller is not set on the QQmlEngine, QQmlIncubator creates objects synchronously regardless of the specified IncubationMode.
QQmlIncubator supports three incubation modes: \list
The incubator will remain in the Loading state until either the creation is complete or an error occurs. The statusChanged() callback can be used to be notified of status changes.
Applications should use the Asynchronous incubation mode to create objects that are not needed immediately. For example, the ListView type uses Asynchronous incubation to create objects that are slightly off screen while the list is being scrolled. If, during asynchronous creation, the object is needed immediately the QQmlIncubator::forceCompletion() method can be called to complete the creation process synchronously.
In most scenarios where a QML component wants the appearance of a synchronous instantiation, it should use this mode.
This mode is best explained with an example. When the ListView type is first created, it needs to populate itself with an initial set of delegates to show. If the ListView was 400 pixels high, and each delegate was 100 pixels high, it would need to create four initial delegate instances. If the ListView used the Asynchronous incubation mode, the ListView would always be created empty and then, sometime later, the four initial items would appear.
Conversely, if the ListView was to use the Synchronous incubation mode it would behave correctly but it may introduce stutters into the application. As QML would have to stop and instantiate the ListView's delegates synchronously, if the ListView was part of a QML component that was being instantiated asynchronously this would undo much of the benefit of asynchronous instantiation.
The AsynchronousIfNested mode reconciles this problem. By using AsynchronousIfNested, the ListView delegates are instantiated asynchronously if the ListView itself is already part of an asynchronous instantiation, and synchronously otherwise. In the case of a nested asynchronous instantiation, the outer asynchronous instantiation will not complete until after all the nested instantiations have also completed. This ensures that by the time the outer asynchronous instantitation completes, inner items like ListView have already completed loading their initial delegates.
It is almost always incorrect to use the Synchronous incubation mode - elements or components that want the appearance of synchronous instantiation, but without the downsides of introducing freezes or stutters into the application, should use the AsynchronousIfNested incubation mode. \endlist
Definition at line 19 of file qqmlincubator.h.
Specifies the mode the incubator operates in.
Regardless of the incubation mode, a QQmlIncubator will behave synchronously if the QQmlEngine does not have a QQmlIncubationController set.
\value Asynchronous The object will be created asynchronously. \value AsynchronousIfNested If the object is being created in a context that is already part of an asynchronous creation, this incubator will join that existing incubation and execute asynchronously. The existing incubation will not become Ready until both it and this incubation have completed. Otherwise, the incubation will execute synchronously. \value Synchronous The object will be created synchronously.
Enumerator | |
---|---|
Asynchronous | |
AsynchronousIfNested | |
Synchronous |
Definition at line 23 of file qqmlincubator.h.
Specifies the status of the QQmlIncubator.
\value Null Incubation is not in progress. Call QQmlComponent::create() to begin incubating. \value Ready The object is fully created and can be accessed by calling object(). \value Loading The object is in the process of being created. \value Error An error occurred. The errors can be access by calling errors().
Enumerator | |
---|---|
Null | |
Ready | |
Loading | |
Error |
Definition at line 28 of file qqmlincubator.h.
QQmlIncubator::QQmlIncubator | ( | IncubationMode | mode = Asynchronous | ) |
Create a new incubator with the specified mode.
Definition at line 534 of file qqmlincubator.cpp.
References QBasicAtomicInteger< T >::ref(), and QSharedData::ref.
|
virtual |
Definition at line 541 of file qqmlincubator.cpp.
References QBasicAtomicInteger< T >::deref(), QQmlIncubatorPrivate::q, and QSharedData::ref.
void QQmlIncubator::clear | ( | ) |
Clears the incubator.
Any in-progress incubation is aborted. If the incubator is in the Ready state, the created object is not deleted.
Definition at line 581 of file qqmlincubator.cpp.
References QQmlIncubatorPrivate::changeStatus(), QList< T >::clear(), QQmlIncubatorPrivate::clear(), QQmlIncubatorPrivate::compilationUnit, QExplicitlySharedDataPointer< T >::data(), QObject::deleteLater(), QQmlIncubatorPrivate::enginePriv, QQmlEnginePrivate::erroredBindings, QQmlIncubatorPrivate::errors, QQmlIncubatorPrivate::Execute, QQmlEnginePrivate::inProgressCreations, QIntrusiveList< N, member >::isEmpty(), QQmlRefPointer< T >::isNull(), Loading, Null, QQmlIncubatorPrivate::progress, Q_ASSERT, QQmlDelayedError::removeError(), QQmlIncubatorPrivate::result, status(), QQmlIncubatorPrivate::waitingFor, QQmlIncubatorPrivate::waitingOnMe, QQmlEnginePrivate::warning(), and watcher.
Referenced by QQmlTableInstanceModelIncubationTask::QQmlTableInstanceModelIncubationTask(), QQuickLoaderPrivate::clear(), QQmlComponent::create(), QQuickLoaderPrivate::incubatorStateChanged(), QQmlDelegateModelPrivate::object(), QQmlDelegateModelPrivate::releaseIncubator(), and QQuick3DLoader::setActive().
Return the list of errors encountered while incubating the object.
Definition at line 665 of file qqmlincubator.cpp.
References QQmlIncubatorPrivate::errors.
Referenced by QQuickLoaderPrivate::incubatorStateChanged(), and QQmlDelegateModelPrivate::incubatorStatusChanged().
void QQmlIncubator::forceCompletion | ( | ) |
Force any in-progress incubation to finish synchronously.
Once this call returns, the incubator will not be in the Loading state.
Definition at line 624 of file qqmlincubator.cpp.
References QQmlIncubatorPrivate::forceCompletion(), and i.
Referenced by QQmlDelegateModelPrivate::object(), and QQuick3DLoader::setAsynchronous().
QQmlIncubator::IncubationMode QQmlIncubator::incubationMode | ( | ) | const |
Return the incubation mode passed to the QQmlIncubator constructor.
Definition at line 673 of file qqmlincubator.cpp.
References QQmlIncubatorPrivate::mode.
Referenced by QQmlDelegateModelPrivate::object().
bool QQmlIncubator::isError | ( | ) | const |
Returns true if the incubator's status() is Error.
Definition at line 649 of file qqmlincubator.cpp.
References Error, and status().
Referenced by QQmlDelegateModelPrivate::releaseIncubator().
bool QQmlIncubator::isLoading | ( | ) | const |
Returns true if the incubator's status() is Loading.
Definition at line 657 of file qqmlincubator.cpp.
References Loading, and status().
Referenced by QQuick3DLoader::setAsynchronous().
bool QQmlIncubator::isNull | ( | ) | const |
Returns true if the incubator's status() is Null.
Definition at line 633 of file qqmlincubator.cpp.
References Null, and status().
bool QQmlIncubator::isReady | ( | ) | const |
Returns true if the incubator's status() is Ready.
Definition at line 641 of file qqmlincubator.cpp.
References Ready, and status().
QObject * QQmlIncubator::object | ( | ) | const |
Return the incubated object if the status is Ready, otherwise 0.
Definition at line 689 of file qqmlincubator.cpp.
References Ready, QQmlIncubatorPrivate::result, and status().
Referenced by QQuickLoaderPrivate::incubatorStateChanged(), and QQmlTableInstanceModelIncubationTask::setInitialState().
void QQmlIncubator::setInitialProperties | ( | const QVariantMap & | initialProperties | ) |
Stores a mapping from property names to initial values, contained in initialProperties, with which the incubated component will be initialized.
Definition at line 729 of file qqmlincubator.cpp.
References QQmlIncubatorPrivate::initialProperties.
Called after the object is first created, but before property bindings are evaluated and, if applicable, QQmlParserStatus::componentComplete() is called.
This is equivalent to the point between QQmlComponent::beginCreate() and QQmlComponent::completeCreate(), and can be used to assign initial values to the object's properties.
The default implementation does nothing.
Reimplemented in QQDMIncubationTask, QQuickLoaderIncubator, QQuick3DLoaderIncubator, QQmlComponentIncubator, QQmlTableInstanceModelIncubationTask, and QQuickStackIncubator.
Definition at line 753 of file qqmlincubator.cpp.
References Q_UNUSED.
QQmlIncubator::Status QQmlIncubator::status | ( | ) | const |
Return the current status of the incubator.
Definition at line 681 of file qqmlincubator.cpp.
References QQmlIncubatorPrivate::status.
Referenced by QQuickLoaderPrivate::_q_sourceLoaded(), clear(), QQuickLoaderPrivate::computeStatus(), QQmlComponent::incubateObject(), QQmlTableInstanceModel::incubationStatus(), isError(), isLoading(), isNull(), isReady(), object(), QQmlDelegateModelPrivate::object(), QQuick3DLoader::status(), QQmlTableInstanceModelIncubationTask::statusChanged(), statusChanged(), QQDMIncubationTask::statusChanged(), QQuickLoaderIncubator::statusChanged(), and QQuick3DLoaderIncubator::statusChanged().
Called when the status of the incubator changes.
status is the new status.
The default implementation does nothing.
Reimplemented in QQmlComponentIncubator, QQmlTableInstanceModelIncubationTask, QQDMIncubationTask, QQuickLoaderIncubator, and QQuick3DLoaderIncubator.
Definition at line 739 of file qqmlincubator.cpp.
References Q_UNUSED, and status().
|
friend |
Definition at line 61 of file qqmlincubator.h.
|
friend |
Definition at line 62 of file qqmlincubator.h.
|
friend |
Definition at line 63 of file qqmlincubator.h.