File: telepathy-mpris.cpp

package info (click to toggle)
ktp-kded-integration-module 22.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,232 kB
  • sloc: cpp: 2,720; sh: 3; makefile: 2
file content (276 lines) | stat: -rw-r--r-- 11,039 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/*
    Now playing
    Copyright (C) 2017  James D. Smith <smithjd15@gmail.com>
    Copyright (C) 2011  Martin Klapetek <martin.klapetek@gmail.com>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library 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
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/

#include "telepathy-mpris.h"
#include "ktp_kded_debug.h"

#include <KConfig>
#include <KConfigGroup>
#include <KSharedConfig>

#include <QTimer>
#include <QDBusConnectionInterface>
#include <QDBusInterface>
#include <QDBusReply>

static const QLatin1String dbusInterfaceProperties("org.freedesktop.DBus.Properties");

static const QLatin1String mprisPath("/org/mpris/MediaPlayer2");
static const QLatin1String mprisServicePrefix("org.mpris.MediaPlayer2");
static const QLatin1String mprisInterfaceName("org.mpris.MediaPlayer2.Player");

TelepathyMPRIS::TelepathyMPRIS(QObject* parent)
    : QObject(parent),
    m_activationTimer(new QTimer()),
    m_activePlayer(new Player())
{
    connect(this, &TelepathyMPRIS::playerChange, &m_initLoop, &QEventLoop::quit);

    m_activationTimer->setSingleShot(true);
    m_activationTimer->setInterval(400);
}

TelepathyMPRIS::~TelepathyMPRIS()
{
}

void TelepathyMPRIS::enable(bool enable)
{
    if (enable && !m_timerConnection) {
        //player changed
        m_timerConnection = QObject::connect(m_activationTimer, &QTimer::timeout, m_activationTimer, [=] {
            auto getPlayers = [this] (Service state) {
                QList<Player*> players;
                for (Player *watchedPlayer : m_players.values()) {
                    if (watchedPlayer->playState == state) {
                        players << watchedPlayer;
                    }
                }

                return players;
            };

            if (m_activePlayer->playState < Paused) {
                QList<Player*> players = QList<Player*>() << getPlayers(Playing) << getPlayers(Paused);

                //if the players list is empty create a new default active player
                if (players.isEmpty()) {
                    m_activePlayer = new Player();
                } else {
                    m_activePlayer = players.at(0);
                }

                qCDebug(KTP_KDED_MODULE) << "Active player changed:" << m_players.key(m_activePlayer);
            }

            if (!m_initLoop.isRunning()) {
                Q_EMIT playerChange();
            } else {
                m_initLoop.quit();
            }
        });

        //get registered service names asynchronously
        QDBusPendingCall async = QDBusConnection::sessionBus().interface()->asyncCall(QLatin1String("ListNames"));
        QDBusPendingCallWatcher *callWatcher = new QDBusPendingCallWatcher(async, this);
        connect(callWatcher, &QDBusPendingCallWatcher::finished, callWatcher, [=] {
            bool foundPlayers = false;
            QDBusPendingReply<QStringList> reply = *callWatcher;
            if (reply.isError()) {
                qCDebug(KTP_KDED_MODULE) << reply.error();
                return;
            }

            for (const QString &serviceName : reply.value()) {
                if (serviceName.startsWith(mprisServicePrefix)) {
                    requestPlaybackStatus(serviceName, QDBusConnection::sessionBus().interface()->serviceOwner(serviceName));
                    foundPlayers = true;
                }
            }

            if (!foundPlayers) {
                m_initLoop.quit();
            }

            callWatcher->deleteLater();
        });

        //watch for mpris2-enabled players appearing and disappearing
        connect(QDBusConnection::sessionBus().interface(),
                    &QDBusConnectionInterface::serviceOwnerChanged,
                    this,
                    &TelepathyMPRIS::serviceOwnerChanged);

        m_initLoop.exec();
    } else if (!enable) {
        disconnect(m_timerConnection);
        disconnect(QDBusConnection::sessionBus().interface(),
                    &QDBusConnectionInterface::serviceOwnerChanged,
                    this,
                    &TelepathyMPRIS::serviceOwnerChanged);

        QHash<QString, QString> serviceNameByOwner = m_serviceNameByOwner;
        for (const QString &serviceName : serviceNameByOwner) {
            serviceOwnerChanged(serviceName, serviceNameByOwner.key(serviceName), QString());
        }
    }
}

void TelepathyMPRIS::onPlayerSignalReceived(const QString &interface, const QVariantMap &changedProperties, const QStringList &invalidatedProperties)
{
    Q_UNUSED(invalidatedProperties)

    //this is not the correct property interface, ignore
    if (interface != mprisInterfaceName) {
        return;
    }

    const QString &serviceName = m_serviceNameByOwner[QDBusConnection::sessionBus().interface()->serviceOwner(message().service())];
    sortPlayerReply(changedProperties, serviceName);
}

void TelepathyMPRIS::requestPlaybackStatus(const QString &serviceName, const QString &owner)
{
    auto playerConnected = [=] () {
        if (m_players.keys().contains(serviceName)) {
            return true;
        }

        bool connected = QDBusConnection::sessionBus().connect(serviceName,
                                      mprisPath,
                                      dbusInterfaceProperties,
                                      QLatin1String("PropertiesChanged"),
                                      this,
                                      SLOT(onPlayerSignalReceived(QString,QVariantMap,QStringList)));

        if (connected) {
            qCDebug(KTP_KDED_MODULE) << "Found player" << serviceName;
            Player *player = new Player();
            m_players.insert(serviceName, player);
            m_serviceNameByOwner.insert(owner, serviceName);
        }

        return connected;
    };

    QDBusMessage mprisMsg = QDBusMessage::createMethodCall(serviceName, mprisPath, dbusInterfaceProperties, QLatin1String("GetAll"));
    mprisMsg.setArguments(QList<QVariant>() << mprisInterfaceName);

    QDBusPendingCall call = QDBusConnection::sessionBus().asyncCall(mprisMsg);
    QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(call, this);
    connect(watcher, &QDBusPendingCallWatcher::finished, watcher, [=] {
        QDBusPendingReply<QVariantMap> reply = *watcher;

        if (reply.isError()) {
            qCWarning(KTP_KDED_MODULE) << "Received error reply from DBus" << reply.error() << "service" << serviceName;
        } else if (playerConnected()) {
            sortPlayerReply(reply.value(), serviceName);
        }

        watcher->deleteLater();
    });
}

void TelepathyMPRIS::serviceOwnerChanged(const QString &serviceName, const QString &oldOwner, const QString &newOwner)
{
    auto playerVanished = [=] (const QString &serviceName, const QString &oldOwner) {
        if (m_players.keys().contains(serviceName)) {
            QDBusConnection::sessionBus().disconnect(serviceName,
                                                     mprisPath,
                                                     dbusInterfaceProperties,
                                                     QLatin1String("PropertiesChanged"),
                                                     this,
                                                     SLOT(onPlayerSignalReceived(QString,QVariantMap,QStringList)));

            m_players[serviceName]->playState = Service::Unknown;
            if (m_players[serviceName] == m_activePlayer) {
                m_activationTimer->start();
            }
            m_players.remove(serviceName);
            m_serviceNameByOwner.remove(oldOwner);
            qCDebug(KTP_KDED_MODULE) << "Player" << serviceName << "is no longer available";
        }
    };

    if (serviceName.startsWith(mprisServicePrefix)) {
        qCDebug(KTP_KDED_MODULE) << "DBus service name change:" << serviceName << "once owned by" << oldOwner << "is now owned by" << newOwner;
        if (oldOwner.isEmpty()) {
            //if we have no oldOwner, we have new player registered at dbus
            requestPlaybackStatus(serviceName, newOwner);
        } else if (newOwner.isEmpty()) {
            //if there's no newOwner, the player quit
            playerVanished(serviceName, oldOwner);
        } else if (!oldOwner.isEmpty() && !newOwner.isEmpty()) {
            //otherwise the service name owner changed
            m_serviceNameByOwner.remove(oldOwner);
            m_serviceNameByOwner.insert(newOwner, serviceName);
            requestPlaybackStatus(serviceName, newOwner);
        }
    }
}

void TelepathyMPRIS::sortPlayerReply(const QVariantMap &serviceInfo, const QString &serviceName)
{
    bool playerChanged = false;

    //sort and store incoming metadata
    if (serviceInfo.keys().contains(QLatin1String("Metadata"))) {
        QVariantMap metadata = qdbus_cast<QVariantMap>(serviceInfo.value(QLatin1String("Metadata")));
        if (m_players[serviceName]->metadata != metadata) {
            m_players[serviceName]->metadata = metadata;
            playerChanged = true;
        }
    }

    //sort and store incoming playback information
    if (serviceInfo.keys().contains(QLatin1String("PlaybackStatus"))) {
        QVariant playbackStatus = serviceInfo.value(QLatin1String("PlaybackStatus"));
        auto playState = [] (const QVariant &playbackStatus) {
            TelepathyMPRIS::Service playState;
            if (playbackStatus == QLatin1String("Playing")) {
                playState = Service::Playing;
            } else if (playbackStatus == QLatin1String("Paused")) {
                playState = Service::Paused;
            } else if (playbackStatus == QLatin1String("Stopped")) {
                playState = Service::Stopped;
            } else {
                playState = Service::Unknown;
            }

            return playState;
        };

        if (m_players[serviceName]->playState != playState(playbackStatus)) {
            if ((m_players[serviceName]->playState == Unknown) && (playState(playbackStatus) < Playing)) {
                playerChanged = false;
            } else {
                playerChanged = true;
            }

            m_players[serviceName]->playState = playState(serviceInfo.value(QLatin1String("PlaybackStatus")));
        }
    }

    qCDebug(KTP_KDED_MODULE) << "Player" << serviceName << m_players[serviceName]->playState;

    if (playerChanged || m_initLoop.isRunning()) {
        m_activationTimer->start();
    }
}