bluetooth: add a2dp metadata and avrcp controls
[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/QDBusConnection>
29
30 #include "lightmediascanner.h"
31
32 class DbusService : public QObject {
33     Q_OBJECT
34 public:
35     explicit DbusService(QObject *parent = 0);
36
37     bool enableLMS();
38     bool enableBluetooth();
39     Q_INVOKABLE void processQMLEvent(const QString&);
40     Q_INVOKABLE long getCurrentPosition();
41
42 private:
43     void setBluezPath(const QString& path);
44     QString getBluezPath() const;
45     bool checkIfPlayer(const QString& path) const;
46     QString bluezPath;
47
48 signals:
49     void processPlaylistUpdate(const QVariantList& mediaFiles);
50     void processPlaylistHide();
51     void processPlaylistShow();
52
53     void displayBluetoothMetadata(const QString& avrcp_artist, const QString& avrcp_title, const int avrcp_duration);
54     void updatePosition(const int current_position);
55     void updatePlayerStatus(const QString status);
56
57 private slots:
58     void lmsUpdate(const QString&, const QVariantMap&, const QStringList&);
59     void newBluetoothDevice(const QDBusObjectPath&, const QVariantMap&);
60     void removeBluetoothDevice(const QDBusObjectPath&, const QStringList&);
61     void processBluetoothEvent(const QString&, const QVariantMap&, const QStringList&);
62 };
63
64 #endif