dbus: monitor for udisks media removal events
[apps/mediaplayer.git] / app / dbus.h
1 /*
2  * Copyright (C) 2017 Konsulko Group
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef DBUS_H
18 #define DBUS_H
19
20 #include <QtCore/QDebug>
21 #include <QtCore/QObject>
22 #include <QtCore/QString>
23 #include <QtCore/QVariant>
24 #include <QtCore/QVariantList>
25 #include <QtDBus/QDBusPendingCall>
26 #include <QtDBus/QDBusPendingReply>
27 #include <QtDBus/QDBusInterface>
28 #include <QtDBus/QDBusReply>
29 #include <QtDBus/QDBusConnection>
30
31 #include "lightmediascanner.h"
32
33 class DbusService : public QObject {
34     Q_OBJECT
35 public:
36     explicit DbusService(QObject *parent = 0);
37
38     bool enableLMS();
39     bool enableBluetooth();
40     Q_INVOKABLE void processQMLEvent(const QString&);
41     Q_INVOKABLE long getCurrentPosition();
42
43 private:
44     void setBluezPath(const QString& path);
45     QString getBluezPath() const;
46     bool checkIfPlayer(const QString& path) const;
47     bool deviceConnected(const QDBusConnection& system_bus);
48     void initialBluetoothData(const QDBusConnection& system_bus);
49     QString bluezPath;
50
51 signals:
52     void processPlaylistUpdate(const QVariantList& mediaFiles);
53     void processPlaylistHide();
54     void processPlaylistShow();
55
56     void displayBluetoothMetadata(const QString& avrcp_artist, const QString& avrcp_title, const int avrcp_duration);
57     void stopPlayback();
58     void updatePosition(const int current_position);
59     void updatePlayerStatus(const QString status);
60
61 private slots:
62     void lmsUpdate(const QString&, const QVariantMap&, const QStringList&);
63     void mediaRemoved(const QDBusObjectPath&);
64     void newBluetoothDevice(const QDBusObjectPath&, const QVariantMap&);
65     void removeBluetoothDevice(const QDBusObjectPath&, const QStringList&);
66     void processBluetoothEvent(const QString&, const QVariantMap&, const QStringList&);
67 };
68
69 #endif