/** * Copyright 2013 Albert Vaca * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License or (at your option) version 3 or any later version * accepted by the membership of KDE e.V. (or its successor approved * by the membership of KDE e.V.), which shall act as a proxy * defined in Section 14 of version 3 of the license. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "devicesmodel.h" #include "interfaces_debug.h" #include #include #include #include "dbusinterfaces.h" // #include "modeltest.h" Q_LOGGING_CATEGORY(KDECONNECT_INTERFACES, "kdeconnect.interfaces"); DevicesModel::DevicesModel(QObject *parent) : QAbstractListModel(parent) , m_dbusInterface(new DaemonDbusInterface(this)) , m_displayFilter(DevicesModel::StatusUnknown) { //new ModelTest(this, this); connect(this, SIGNAL(rowsRemoved(QModelIndex, int, int)), this, SIGNAL(rowsChanged())); connect(this, SIGNAL(rowsInserted(QModelIndex, int, int)), this, SIGNAL(rowsChanged())); connect(m_dbusInterface, SIGNAL(deviceAdded(QString)), this, SLOT(deviceAdded(QString))); connect(m_dbusInterface, SIGNAL(deviceVisibilityChanged(QString,bool)), this, SLOT(deviceStatusChanged(QString))); connect(m_dbusInterface, SIGNAL(deviceRemoved(QString)), this, SLOT(deviceRemoved(QString))); refreshDeviceList(); } QHash< int, QByteArray > DevicesModel::roleNames() const { QHash names = QAbstractItemModel::roleNames(); names.insert(IdModelRole, "deviceId"); names.insert(IconNameRole, "iconName"); return names; } DevicesModel::~DevicesModel() { } int DevicesModel::rowForDeviceId(const QString& id) const { QVector::const_iterator it = m_deviceList.constBegin(), itEnd = m_deviceList.constEnd(); for (int i = 0; it!=itEnd; ++it, ++i) { if ((*it)->id() == id) { return i; } } return -1; } void DevicesModel::deviceAdded(const QString& id) { //Find whether the device already exists. if so, just report it as modified int row = rowForDeviceId(id); if (row>=0) { const QModelIndex idx = index(row, 0); Q_EMIT dataChanged(idx, idx); } else { DeviceDbusInterface* dev = new DeviceDbusInterface(id, this); if (dev->isReachable() == bool(m_displayFilter & StatusReachable) && dev->isPaired() == bool(m_displayFilter & StatusPaired)) { beginInsertRows(QModelIndex(), m_deviceList.count(), m_deviceList.count()); appendDevice(dev); endInsertRows(); } } } void DevicesModel::deviceRemoved(const QString& id) { //TODO: Actually remove instead of refresh Q_UNUSED(id); refreshDeviceList(); } void DevicesModel::deviceStatusChanged(const QString& id) { Q_UNUSED(id); //FIXME: Emitting dataChanged does not invalidate the view, refreshDeviceList does. //Q_EMIT dataChanged(index(0),index(rowCount())); refreshDeviceList(); } int DevicesModel::displayFilter() const { return m_displayFilter; } void DevicesModel::setDisplayFilter(int flags) { m_displayFilter = (StatusFlag)flags; refreshDeviceList(); } void DevicesModel::refreshDeviceList() { if (!m_dbusInterface->isValid()) { clearDevices(); qCWarning(KDECONNECT_INTERFACES) << "dbus interface not valid"; return; } bool onlyPaired = (m_displayFilter & StatusPaired); bool onlyReachable = (m_displayFilter & StatusReachable); QDBusPendingReply pendingDeviceIds = m_dbusInterface->devices(onlyReachable, onlyPaired); QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(pendingDeviceIds, this); QObject::connect(watcher, SIGNAL(finished(QDBusPendingCallWatcher*)), this, SLOT(receivedDeviceList(QDBusPendingCallWatcher*))); } void DevicesModel::receivedDeviceList(QDBusPendingCallWatcher* watcher) { watcher->deleteLater(); clearDevices(); QDBusPendingReply pendingDeviceIds = *watcher; if (pendingDeviceIds.isError()) { qCWarning(KDECONNECT_INTERFACES) << "error while refreshing device list" << pendingDeviceIds.error().message(); return; } Q_ASSERT(m_deviceList.isEmpty()); const QStringList deviceIds = pendingDeviceIds.value(); if (deviceIds.isEmpty()) return; beginInsertRows(QModelIndex(), 0, deviceIds.count()-1); Q_FOREACH(const QString& id, deviceIds) { appendDevice(new DeviceDbusInterface(id, this)); } endInsertRows(); } void DevicesModel::appendDevice(DeviceDbusInterface* dev) { m_deviceList.append(dev); connect(dev, SIGNAL(nameChanged(QString)), SLOT(nameChanged(QString))); } void DevicesModel::nameChanged(const QString& newName) { Q_UNUSED(newName); int row = m_deviceList.indexOf(static_cast(sender())); Q_ASSERT(row>=0); const QModelIndex idx = index(row, 0); Q_EMIT dataChanged(idx, idx); } void DevicesModel::clearDevices() { if (!m_deviceList.isEmpty()) { beginRemoveRows(QModelIndex(), 0, m_deviceList.size() - 1); qDeleteAll(m_deviceList); m_deviceList.clear(); endRemoveRows(); } } QVariant DevicesModel::data(const QModelIndex& index, int role) const { if (!m_dbusInterface->isValid() || !index.isValid() || index.row() < 0 || index.row() >= m_deviceList.size() || !m_deviceList[index.row()]->isValid()) { return QVariant(); } DeviceDbusInterface* device = m_deviceList[index.row()]; //FIXME: This function gets called lots of times, producing lots of dbus calls. Add a cache. switch (role) { case IconModelRole: { bool paired = device->isPaired(); bool reachable = device->isReachable(); QString icon = reachable? (paired? "user-online" : "user-busy") : "user-offline"; return QIcon::fromTheme(icon).pixmap(32, 32); } case IdModelRole: return device->id(); case NameModelRole: return device->name(); case Qt::ToolTipRole: return QVariant(); //To implement case StatusModelRole: { int status = StatusUnknown; if (device->isReachable()) { status |= StatusReachable; if (device->isPaired()) status |= StatusPaired; } return status; } case IconNameRole: return device->iconName(); default: return QVariant(); } } DeviceDbusInterface* DevicesModel::getDevice(int row) const { if (row < 0 || row >= m_deviceList.size()) { return NULL; } return m_deviceList[row]; } int DevicesModel::rowCount(const QModelIndex& parent) const { if(parent.isValid()) { //Return size 0 if we are a child because this is not a tree return 0; } return m_deviceList.size(); }