use gio for watching fd
[profile/ivi/automotive-message-broker.git] / plugins / bluetooth / bluetoothplugin.h
1 /*
2 Copyright (C) 2012 Intel Corporation
3
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with this library; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #ifndef BT_PLUGIN_H_
20 #define BT_PLUGIN_H_
21
22 #include <abstractsink.h>
23 #include <serialport.hpp>
24 #include <string>
25
26 #include <QDBusAbstractAdaptor>
27 #include <QDBusObjectPath>
28 #include <QVariantMap>
29 #include <QTcpSocket>
30 #include <QDBusUnixFileDescriptor>
31
32 class BluetoothSinkPlugin;
33
34 class BtProfileAdaptor : public QDBusAbstractAdaptor
35 {
36         Q_OBJECT
37         Q_CLASSINFO("D-Bus Interface", "org.bluez.Profile1")
38
39 public:
40
41         BtProfileAdaptor(BluetoothSinkPlugin* parent);
42
43 public Q_SLOTS:
44
45         void Release();
46
47         void NewConnection(QDBusObjectPath device, QDBusUnixFileDescriptor fd, QVariantMap fd_properties);
48
49         void RequestDisconnection(QDBusObjectPath device);
50
51 private:
52
53         BluetoothSinkPlugin* mParent;
54
55 };
56
57 class BluetoothSinkPlugin: public QObject, public AbstractSink
58 {
59 Q_OBJECT
60
61 public:
62         BluetoothSinkPlugin(AbstractRoutingEngine* re, map<string, string> config);
63         
64         const string uuid();
65
66         void supportedChanged(const PropertyList &) {}
67
68         void propertyChanged(AbstractPropertyType* value);
69
70         void release();
71
72         void newConnection(std::string path, QDBusUnixFileDescriptor fd, QVariantMap props);
73
74         void requestDisconnection(std::string path);
75
76         void canHasData();
77
78
79 private:
80          SerialPort socket;
81 };
82
83
84
85 #endif // EXAMPLEPLUGIN_H