Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
351 lines
11 KiB
C++
351 lines
11 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
** Contact: http://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the tools applications of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at http://www.qt.io/contact-us.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
** following information to ensure the GNU Lesser General Public License
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** As a special exception, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3.0 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "qdbusmodel.h"
|
|
|
|
#include <QtCore/qvector.h>
|
|
#include <QtXml/QtXml>
|
|
|
|
struct QDBusItem
|
|
{
|
|
inline QDBusItem(QDBusModel::Type aType, const QString &aName, QDBusItem *aParent = 0)
|
|
: type(aType), parent(aParent), isPrefetched(type != QDBusModel::PathItem), name(aName)
|
|
{}
|
|
inline ~QDBusItem()
|
|
{
|
|
qDeleteAll(children);
|
|
}
|
|
|
|
QString path() const
|
|
{
|
|
Q_ASSERT(type == QDBusModel::PathItem);
|
|
|
|
QString s;
|
|
const QDBusItem *item = this;
|
|
while (item) {
|
|
s.prepend(item->name);
|
|
item = item->parent;
|
|
}
|
|
if (s.length() > 1)
|
|
s.chop(1); // remove tailing slash
|
|
return s;
|
|
}
|
|
|
|
QDBusModel::Type type;
|
|
QDBusItem *parent;
|
|
QVector<QDBusItem *> children;
|
|
bool isPrefetched;
|
|
QString name;
|
|
QString caption;
|
|
QString typeSignature;
|
|
};
|
|
|
|
QDomDocument QDBusModel::introspect(const QString &path)
|
|
{
|
|
QDomDocument doc;
|
|
|
|
QDBusInterface iface(service, path, QLatin1String("org.freedesktop.DBus.Introspectable"), c);
|
|
if (!iface.isValid()) {
|
|
QDBusError err(iface.lastError());
|
|
emit busError(QString::fromLatin1("Cannot introspect object %1 at %2:\n %3 (%4)\n").arg(path).arg(
|
|
service).arg(err.name()).arg(err.message()));
|
|
return doc;
|
|
}
|
|
|
|
QDBusReply<QString> xml = iface.call(QLatin1String("Introspect"));
|
|
|
|
if (!xml.isValid()) {
|
|
QDBusError err(xml.error());
|
|
if (err.isValid()) {
|
|
emit busError(QString::fromLatin1("Call to object %1 at %2:\n %3 (%4) failed\n").arg(
|
|
path).arg(service).arg(err.name()).arg(err.message()));
|
|
} else {
|
|
emit busError(QString::fromLatin1("Invalid XML received from object %1 at %2\n").arg(
|
|
path).arg(service));
|
|
}
|
|
return doc;
|
|
}
|
|
|
|
doc.setContent(xml);
|
|
return doc;
|
|
}
|
|
|
|
void QDBusModel::addMethods(QDBusItem *parent, const QDomElement &iface)
|
|
{
|
|
Q_ASSERT(parent);
|
|
|
|
QDomElement child = iface.firstChildElement();
|
|
while (!child.isNull()) {
|
|
QDBusItem *item = 0;
|
|
if (child.tagName() == QLatin1String("method")) {
|
|
item = new QDBusItem(QDBusModel::MethodItem,
|
|
child.attribute(QLatin1String("name")), parent);
|
|
item->caption = QLatin1String("Method: ") + item->name;
|
|
//get "type" from <arg> where "direction" is "in"
|
|
QDomElement n = child.firstChildElement();
|
|
while (!n.isNull()) {
|
|
if (n.attribute(QLatin1String("direction")) == QLatin1String("in"))
|
|
item->typeSignature += n.attribute(QLatin1String("type"));
|
|
n = n.nextSiblingElement();
|
|
}
|
|
} else if (child.tagName() == QLatin1String("signal")) {
|
|
item = new QDBusItem(QDBusModel::SignalItem,
|
|
child.attribute(QLatin1String("name")), parent);
|
|
item->caption = QLatin1String("Signal: ") + item->name;
|
|
} else if (child.tagName() == QLatin1String("property")) {
|
|
item = new QDBusItem(QDBusModel::PropertyItem,
|
|
child.attribute(QLatin1String("name")), parent);
|
|
item->caption = QLatin1String("Property: ") + item->name;
|
|
} else {
|
|
qDebug() << "addMethods: unknown tag:" << child.tagName();
|
|
}
|
|
if (item)
|
|
parent->children.append(item);
|
|
|
|
child = child.nextSiblingElement();
|
|
}
|
|
}
|
|
|
|
void QDBusModel::addPath(QDBusItem *parent)
|
|
{
|
|
Q_ASSERT(parent);
|
|
|
|
QString path = parent->path();
|
|
|
|
QDomDocument doc = introspect(path);
|
|
QDomElement node = doc.documentElement();
|
|
QDomElement child = node.firstChildElement();
|
|
while (!child.isNull()) {
|
|
if (child.tagName() == QLatin1String("node")) {
|
|
QDBusItem *item = new QDBusItem(QDBusModel::PathItem,
|
|
child.attribute(QLatin1String("name")) + QLatin1Char('/'), parent);
|
|
parent->children.append(item);
|
|
|
|
addMethods(item, child);
|
|
} else if (child.tagName() == QLatin1String("interface")) {
|
|
QDBusItem *item = new QDBusItem(QDBusModel::InterfaceItem,
|
|
child.attribute(QLatin1String("name")), parent);
|
|
parent->children.append(item);
|
|
|
|
addMethods(item, child);
|
|
} else {
|
|
qDebug() << "addPath: Unknown tag name:" << child.tagName();
|
|
}
|
|
child = child.nextSiblingElement();
|
|
}
|
|
|
|
parent->isPrefetched = true;
|
|
}
|
|
|
|
QDBusModel::QDBusModel(const QString &aService, const QDBusConnection &connection)
|
|
: service(aService), c(connection), root(0)
|
|
{
|
|
root = new QDBusItem(QDBusModel::PathItem, QLatin1String("/"));
|
|
}
|
|
|
|
QDBusModel::~QDBusModel()
|
|
{
|
|
delete root;
|
|
}
|
|
|
|
QModelIndex QDBusModel::index(int row, int column, const QModelIndex &parent) const
|
|
{
|
|
const QDBusItem *item = static_cast<QDBusItem *>(parent.internalPointer());
|
|
if (!item)
|
|
item = root;
|
|
|
|
if (column != 0 || row < 0 || row >= item->children.count())
|
|
return QModelIndex();
|
|
|
|
return createIndex(row, 0, item->children.at(row));
|
|
}
|
|
|
|
QModelIndex QDBusModel::parent(const QModelIndex &child) const
|
|
{
|
|
QDBusItem *item = static_cast<QDBusItem *>(child.internalPointer());
|
|
if (!item || !item->parent || !item->parent->parent)
|
|
return QModelIndex();
|
|
|
|
return createIndex(item->parent->parent->children.indexOf(item->parent), 0, item->parent);
|
|
}
|
|
|
|
int QDBusModel::rowCount(const QModelIndex &parent) const
|
|
{
|
|
QDBusItem *item = static_cast<QDBusItem *>(parent.internalPointer());
|
|
if (!item)
|
|
item = root;
|
|
if (!item->isPrefetched)
|
|
const_cast<QDBusModel *>(this)->addPath(item);
|
|
|
|
return item->children.count();
|
|
}
|
|
|
|
int QDBusModel::columnCount(const QModelIndex &) const
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
QVariant QDBusModel::data(const QModelIndex &index, int role) const
|
|
{
|
|
const QDBusItem *item = static_cast<QDBusItem *>(index.internalPointer());
|
|
if (!item)
|
|
return QVariant();
|
|
|
|
if (role != Qt::DisplayRole)
|
|
return QVariant();
|
|
|
|
return item->caption.isEmpty() ? item->name : item->caption;
|
|
}
|
|
|
|
QVariant QDBusModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
{
|
|
if (role != Qt::DisplayRole || orientation == Qt::Vertical || section != 0)
|
|
return QVariant();
|
|
|
|
return QLatin1String("Methods");
|
|
}
|
|
|
|
QDBusModel::Type QDBusModel::itemType(const QModelIndex &index) const
|
|
{
|
|
const QDBusItem *item = static_cast<QDBusItem *>(index.internalPointer());
|
|
return item ? item->type : PathItem;
|
|
}
|
|
|
|
void QDBusModel::refresh(const QModelIndex &aIndex)
|
|
{
|
|
QModelIndex index = aIndex;
|
|
while (index.isValid() && static_cast<QDBusItem *>(index.internalPointer())->type != PathItem) {
|
|
index = index.parent();
|
|
}
|
|
|
|
QDBusItem *item = static_cast<QDBusItem *>(index.internalPointer());
|
|
if (!item)
|
|
item = root;
|
|
|
|
if (!item->children.isEmpty()) {
|
|
beginRemoveRows(index, 0, item->children.count() - 1);
|
|
qDeleteAll(item->children);
|
|
item->children.clear();
|
|
endRemoveRows();
|
|
}
|
|
|
|
addPath(item);
|
|
if (!item->children.isEmpty()) {
|
|
beginInsertRows(index, 0, item->children.count() - 1);
|
|
endInsertRows();
|
|
}
|
|
}
|
|
|
|
QString QDBusModel::dBusPath(const QModelIndex &aIndex) const
|
|
{
|
|
QModelIndex index = aIndex;
|
|
while (index.isValid() && static_cast<QDBusItem *>(index.internalPointer())->type != PathItem) {
|
|
index = index.parent();
|
|
}
|
|
|
|
QDBusItem *item = static_cast<QDBusItem *>(index.internalPointer());
|
|
if (!item)
|
|
item = root;
|
|
|
|
return item->path();
|
|
}
|
|
|
|
QString QDBusModel::dBusInterface(const QModelIndex &index) const
|
|
{
|
|
QDBusItem *item = static_cast<QDBusItem *>(index.internalPointer());
|
|
if (!item)
|
|
return QString();
|
|
if (item->type == InterfaceItem)
|
|
return item->name;
|
|
if (item->parent && item->parent->type == InterfaceItem)
|
|
return item->parent->name;
|
|
return QString();
|
|
}
|
|
|
|
QString QDBusModel::dBusMethodName(const QModelIndex &index) const
|
|
{
|
|
QDBusItem *item = static_cast<QDBusItem *>(index.internalPointer());
|
|
return item ? item->name : QString();
|
|
}
|
|
|
|
QString QDBusModel::dBusTypeSignature(const QModelIndex &index) const
|
|
{
|
|
QDBusItem *item = static_cast<QDBusItem *>(index.internalPointer());
|
|
return item ? item->typeSignature : QString();
|
|
}
|
|
|
|
QModelIndex QDBusModel::findObject(const QDBusObjectPath &objectPath)
|
|
{
|
|
QStringList path = objectPath.path().split(QLatin1Char('/'), QString::SkipEmptyParts);
|
|
|
|
QDBusItem *item = root;
|
|
int childIdx = -1;
|
|
while (item && !path.isEmpty()) {
|
|
const QString branch = path.takeFirst() + QLatin1Char('/');
|
|
childIdx = -1;
|
|
|
|
// do a linear search over all the children
|
|
for (int i = 0; i < item->children.count(); ++i) {
|
|
QDBusItem *child = item->children.at(i);
|
|
if (child->type == PathItem && child->name == branch) {
|
|
item = child;
|
|
childIdx = i;
|
|
|
|
// prefetch the found branch
|
|
if (!item->isPrefetched)
|
|
addPath(item);
|
|
break;
|
|
}
|
|
}
|
|
|
|
// branch not found - bail out
|
|
if (childIdx == -1)
|
|
return QModelIndex();
|
|
}
|
|
|
|
// found the right item
|
|
if (childIdx != -1 && item && path.isEmpty())
|
|
return createIndex(childIdx, 0, item);
|
|
|
|
return QModelIndex();
|
|
}
|
|
|