bd17dc2041
Reviewers: #kde_connect, apol Reviewed By: #kde_connect, apol Subscribers: apol, kdeconnect Tags: #kde_connect Differential Revision: https://phabricator.kde.org/D17164
173 lines
5.3 KiB
C++
173 lines
5.3 KiB
C++
/**
|
|
* Copyright 2018 Nicolas Fella <nicolas.fella@gmx.de>
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "remotesinksmodel.h"
|
|
#include "interfaces_debug.h"
|
|
|
|
#include <QDebug>
|
|
#include <QDBusInterface>
|
|
|
|
RemoteSinksModel::RemoteSinksModel(QObject* parent)
|
|
: QAbstractListModel(parent)
|
|
, m_dbusInterface(nullptr)
|
|
{
|
|
|
|
connect(this, &QAbstractItemModel::rowsInserted,
|
|
this, &RemoteSinksModel::rowsChanged);
|
|
connect(this, &QAbstractItemModel::rowsRemoved,
|
|
this, &RemoteSinksModel::rowsChanged);
|
|
|
|
QDBusServiceWatcher* watcher = new QDBusServiceWatcher(DaemonDbusInterface::activatedService(),
|
|
QDBusConnection::sessionBus(), QDBusServiceWatcher::WatchForOwnerChange, this);
|
|
connect(watcher, &QDBusServiceWatcher::serviceRegistered, this, &RemoteSinksModel::refreshSinkList);
|
|
connect(watcher, &QDBusServiceWatcher::serviceUnregistered, this, &RemoteSinksModel::refreshSinkList);
|
|
}
|
|
|
|
QHash<int, QByteArray> RemoteSinksModel::roleNames() const
|
|
{
|
|
//Role names for QML
|
|
QHash<int, QByteArray> names = QAbstractItemModel::roleNames();
|
|
names.insert(NameRole, "name");
|
|
names.insert(DescriptionRole, "description");
|
|
names.insert(MaxVolumeRole, "maxVolume");
|
|
names.insert(VolumeRole, "volume");
|
|
names.insert(MutedRole, "muted");
|
|
|
|
return names;
|
|
}
|
|
|
|
RemoteSinksModel::~RemoteSinksModel()
|
|
{
|
|
}
|
|
|
|
QString RemoteSinksModel::deviceId() const
|
|
{
|
|
return m_deviceId;
|
|
}
|
|
|
|
void RemoteSinksModel::setDeviceId(const QString& deviceId)
|
|
{
|
|
m_deviceId = deviceId;
|
|
|
|
if (m_dbusInterface) {
|
|
delete m_dbusInterface;
|
|
}
|
|
|
|
m_dbusInterface = new RemoteSystemVolumeDbusInterface(deviceId, this);
|
|
|
|
connect(m_dbusInterface, &OrgKdeKdeconnectDeviceRemotesystemvolumeInterface::sinksChanged,
|
|
this, &RemoteSinksModel::refreshSinkList);
|
|
|
|
connect(m_dbusInterface, &OrgKdeKdeconnectDeviceRemotesystemvolumeInterface::volumeChanged, this, [this](const QString& name, int volume) {
|
|
for (Sink* s: qAsConst(m_sinkList)) {
|
|
if (s->name == name) {
|
|
s->volume = volume;
|
|
Q_EMIT dataChanged(index(0,0), index(m_sinkList.size() - 1, 0));
|
|
}
|
|
}
|
|
});
|
|
|
|
connect(m_dbusInterface, &OrgKdeKdeconnectDeviceRemotesystemvolumeInterface::mutedChanged, this, [this](const QString& name, bool muted) {
|
|
for (Sink* s: qAsConst(m_sinkList)) {
|
|
if (s->name == name) {
|
|
s->muted = muted;
|
|
Q_EMIT dataChanged(index(0,0), index(m_sinkList.size() - 1, 0));
|
|
}
|
|
}
|
|
});
|
|
|
|
refreshSinkList();
|
|
|
|
Q_EMIT deviceIdChanged(deviceId);
|
|
}
|
|
|
|
void RemoteSinksModel::refreshSinkList()
|
|
{
|
|
if (!m_dbusInterface) {
|
|
return;
|
|
}
|
|
|
|
if (!m_dbusInterface->isValid()) {
|
|
qCWarning(KDECONNECT_INTERFACES) << "dbus interface not valid";
|
|
return;
|
|
}
|
|
|
|
const auto cmds = QJsonDocument::fromJson(m_dbusInterface->sinks()).array();
|
|
|
|
beginResetModel();
|
|
|
|
qDeleteAll(m_sinkList);
|
|
m_sinkList.clear();
|
|
|
|
for (auto it = cmds.constBegin(), itEnd = cmds.constEnd(); it!=itEnd; ++it) {
|
|
const QJsonObject cont = it->toObject();
|
|
Sink* sink = new Sink();
|
|
sink->name = cont.value(QStringLiteral("name")).toString();
|
|
sink->description = cont.value(QStringLiteral("description")).toString();
|
|
sink->maxVolume = cont.value(QStringLiteral("maxVolume")).toInt();
|
|
sink->volume = cont.value(QStringLiteral("volume")).toInt();
|
|
sink->muted = cont.value(QStringLiteral("muted")).toBool();
|
|
|
|
m_sinkList.append(sink);
|
|
}
|
|
|
|
endResetModel();
|
|
}
|
|
|
|
QVariant RemoteSinksModel::data(const QModelIndex& index, int role) const
|
|
{
|
|
if (!index.isValid()
|
|
|| index.row() < 0
|
|
|| index.row() >= m_sinkList.count())
|
|
{
|
|
return QVariant();
|
|
}
|
|
|
|
if (!m_dbusInterface || !m_dbusInterface->isValid()) {
|
|
return QVariant();
|
|
}
|
|
|
|
Sink* sink = m_sinkList[index.row()];
|
|
|
|
switch (role) {
|
|
case NameRole:
|
|
return sink->name;
|
|
case DescriptionRole:
|
|
return sink->description;
|
|
case MaxVolumeRole:
|
|
return sink->maxVolume;
|
|
case VolumeRole:
|
|
return sink->volume;
|
|
case MutedRole:
|
|
return sink->muted;
|
|
default:
|
|
return QVariant();
|
|
}
|
|
}
|
|
|
|
int RemoteSinksModel::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_sinkList.count();
|
|
}
|