binding: remove non-binding lightmediascanner detection
[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 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     bool deviceConnected(const QDBusConnection& system_bus);
47     void initialBluetoothData(const QDBusConnection& system_bus);
48     QString bluezPath;
49
50 signals:
51     void processPlaylistUpdate(const QVariantList& mediaFiles);
52     void processPlaylistHide();
53     void processPlaylistShow();
54
55     void displayBluetoothMetadata(const QString& avrcp_artist, const QString& avrcp_title, const int avrcp_duration);
56     void stopPlayback();
57     void updatePosition(const int current_position);
58     void updatePlayerStatus(const QString status);
59
60 private slots:
61     void newBluetoothDevice(const QDBusObjectPath&, const QVariantMap&);
62     void removeBluetoothDevice(const QDBusObjectPath&, const QStringList&);
63     void processBluetoothEvent(const QString&, const QVariantMap&, const QStringList&);
64 };
65
66 #endif