// Copyright (C) 2016 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author // Milian Wolff // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #undef QT_NO_FOREACH // this file contains unported legacy Q_FOREACH uses #include "qqmlwebchannel.h" #include #include #include #include #include "qqmlwebchannelattached_p.h" QT_BEGIN_NAMESPACE /*! \qmltype WebChannel \nativetype QQmlWebChannel \inqmlmodule QtWebChannel \ingroup webchannel-qml \brief QML interface to QWebChannel. \since 5.4 The WebChannel provides a mechanism to transparently access QObject or QML objects from HTML clients. All properties, signals and public slots can be used from the HTML clients. \sa QWebChannel, {Qt WebChannel JavaScript API}{JavaScript API} */ /*! \qmlproperty list WebChannel::transports A list of transport objects, which implement QWebChannelAbstractTransport. The transports are used to talk to the remote clients. \sa connectTo(), disconnectFrom() */ /*! \qmlproperty list WebChannel::registeredObjects \brief A list of objects which should be accessible to remote clients. The objects must have the attached \l id property set to an identifier, under which the object is then known on the HTML side. Once registered, all signals and property changes are automatically propagated to the clients. Public invokable methods, including slots, are also accessible to the clients. If one needs to register objects which are not available when the component is created, use the imperative registerObjects method. \sa registerObjects(), id */ class QQmlWebChannelPrivate : public QWebChannelPrivate { Q_DECLARE_PUBLIC(QQmlWebChannel) public: QList registeredObjects; void _q_objectIdChanged(const QString &newId); }; /*! \internal Update the name of the sender object, when its attached WebChannel.id property changed. This is required, since during startup the property is empty and only gets set later on. */ void QQmlWebChannelPrivate::_q_objectIdChanged(const QString &newId) { Q_Q(QQmlWebChannel); const QQmlWebChannelAttached *const attached = qobject_cast(q->sender()); Q_ASSERT(attached); Q_ASSERT(attached->parent()); Q_ASSERT(registeredObjects.contains(attached->parent())); QObject *const object = attached->parent(); const QString &oldId = publisher->registeredObjectIds.value(object); if (!oldId.isEmpty()) { q->deregisterObject(object); } q->registerObject(newId, object); } QQmlWebChannel::QQmlWebChannel(QObject *parent) : QWebChannel(*(new QQmlWebChannelPrivate), parent) { } QQmlWebChannel::~QQmlWebChannel() { } /*! \qmlmethod void WebChannel::registerObjects(object objects) Registers the specified \a objects to make them accessible to HTML clients. \a objects should be a JavaScript Map object. The key of the map is used as an identifier for the object on the client side. Once registered, all signals and property changes are automatically propagated to the clients. Public invokable methods, including slots, are also accessible to the clients. This imperative API can be used to register objects on the fly. For static objects, the declarative registeredObjects property should be preferred. \sa registeredObjects */ void QQmlWebChannel::registerObjects(const QVariantMap &objects) { Q_D(QQmlWebChannel); QMap::const_iterator it = objects.constBegin(); for (; it != objects.constEnd(); ++it) { QObject *object = it.value().value(); if (!object) { qWarning("Invalid QObject given to register under name %s", qPrintable(it.key())); continue; } d->publisher->registerObject(it.key(), object); } } QQmlWebChannelAttached *QQmlWebChannel::qmlAttachedProperties(QObject *obj) { return new QQmlWebChannelAttached(obj); } /*! \qmlmethod void WebChannel::connectTo(QtObject transport) \brief Connects to the \a transport, which represents a communication channel to a single client. The transport object must be an implementation of \l QWebChannelAbstractTransport. \sa transports, disconnectFrom() */ void QQmlWebChannel::connectTo(QObject *transport) { if (QWebChannelAbstractTransport *realTransport = qobject_cast(transport)) { QWebChannel::connectTo(realTransport); } else { qWarning() << "Cannot connect to transport" << transport << " - it is not a QWebChannelAbstractTransport."; } } /*! \qmlmethod void WebChannel::disconnectFrom(QtObject transport) \brief Disconnects the \a transport from this WebChannel. The client will not be able to communicate with the WebChannel anymore, nor will it receive any signals or property updates. \sa connectTo() */ void QQmlWebChannel::disconnectFrom(QObject *transport) { if (QWebChannelAbstractTransport *realTransport = qobject_cast(transport)) { QWebChannel::disconnectFrom(realTransport); } else { qWarning() << "Cannot disconnect from transport" << transport << " - it is not a QWebChannelAbstractTransport."; } } QQmlListProperty QQmlWebChannel::registeredObjects() { return QQmlListProperty(this, nullptr, registeredObjects_append, registeredObjects_count, registeredObjects_at, registeredObjects_clear); } void QQmlWebChannel::registeredObjects_append(QQmlListProperty *prop, QObject *object) { const QQmlWebChannelAttached *const attached = qobject_cast( qmlAttachedPropertiesObject(object, false /* don't create */)); if (!attached) { const QQmlContext *const context = qmlContext(object); qWarning() << "Cannot register object" << context->nameForObject(object) << '(' << object << ") without attached WebChannel.id property. Did you forget to set it?"; return; } QQmlWebChannel *channel = static_cast(prop->object); if (!attached->id().isEmpty()) { // TODO: warning in such cases? channel->registerObject(attached->id(), object); } channel->d_func()->registeredObjects.append(object); connect(attached, SIGNAL(idChanged(QString)), channel, SLOT(_q_objectIdChanged(QString))); } qsizetype QQmlWebChannel::registeredObjects_count(QQmlListProperty *prop) { return static_cast(prop->object)->d_func()->registeredObjects.size(); } QObject *QQmlWebChannel::registeredObjects_at(QQmlListProperty *prop, qsizetype index) { return static_cast(prop->object)->d_func()->registeredObjects.at(index); } void QQmlWebChannel::registeredObjects_clear(QQmlListProperty *prop) { QQmlWebChannel *channel = static_cast(prop->object); foreach (QObject *object, channel->d_func()->registeredObjects) { channel->deregisterObject(object); } return channel->d_func()->registeredObjects.clear(); } QQmlListProperty QQmlWebChannel::transports() { return QQmlListProperty(this, nullptr, transports_append, transports_count, transports_at, transports_clear); } void QQmlWebChannel::transports_append(QQmlListProperty *prop, QObject *transport) { QQmlWebChannel *channel = static_cast(prop->object); channel->connectTo(transport); } qsizetype QQmlWebChannel::transports_count(QQmlListProperty *prop) { return static_cast(prop->object)->d_func()->transports.size(); } QObject *QQmlWebChannel::transports_at(QQmlListProperty *prop, qsizetype index) { QQmlWebChannel *channel = static_cast(prop->object); return channel->d_func()->transports.at(index); } void QQmlWebChannel::transports_clear(QQmlListProperty *prop) { QWebChannel *channel = static_cast(prop->object); foreach (QWebChannelAbstractTransport *transport, channel->d_func()->transports) { channel->disconnectFrom(transport); } Q_ASSERT(channel->d_func()->transports.isEmpty()); } QT_END_NAMESPACE #include "moc_qqmlwebchannel.cpp"