check if registerProfile is valid
[profile/ivi/automotive-message-broker.git] / plugins / bluetooth / bluetoothplugin.cpp
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 #include "bluetoothplugin.h"
20 #include "timestamp.h"
21 #include "listplusplus.h"
22
23 #include <iostream>
24 #include <boost/assert.hpp>
25 #include <boost/lexical_cast.hpp>
26 #include <glib.h>
27
28 #include <QDBusConnection>
29 #include <QDBusInterface>
30 #include <QDBusReply>
31
32 using namespace std;
33
34 #include "debugout.h"
35
36 BluetoothSinkPlugin::BluetoothSinkPlugin(AbstractRoutingEngine* re, map<string, string> config)
37 :AbstractSink(re, config)
38 {
39         new BtProfileAdaptor(this);
40
41         QDBusConnection::systemBus().registerObject("/org/bluez/spp", this);
42 }
43
44
45
46 extern "C" AbstractSink * create(AbstractRoutingEngine* routingengine, map<string, string> config)
47 {
48         return new BluetoothSinkPlugin(routingengine, config);
49         
50 }
51
52 const string BluetoothSinkPlugin::uuid()
53 {
54         return "47ec4ed0-dc45-11e3-9c1a-0800200c9a66";
55 }
56
57 void BluetoothSinkPlugin::propertyChanged(AbstractPropertyType *value)
58 {
59
60 }
61
62 void BluetoothSinkPlugin::release()
63 {
64         DebugOut()<<"release called."<<endl;
65 }
66
67 void BluetoothSinkPlugin::newConnection(string path, int fd, QVariantMap props)
68 {
69         DebugOut()<<"new Connection! Path: "<<path<<endl;
70
71         socket.setSocketDescriptor(fd);
72
73         connect(&socket, &QTcpSocket::readyRead, this, &BluetoothSinkPlugin::canHasData);
74 }
75
76 void BluetoothSinkPlugin::requestDisconnection(string path)
77 {
78         DebugOut()<<"requestDisconnection called.  Path: "<<path<<endl;
79         socket.close();
80 }
81
82 void BluetoothSinkPlugin::canHasData()
83 {
84         QByteArray data = socket.readAll();
85
86         DebugOut()<<"data read: "<<data.constData()<<endl;
87 }
88
89 BtProfileAdaptor::BtProfileAdaptor(BluetoothSinkPlugin *parent)
90         :QDBusAbstractAdaptor(parent), mParent(parent)
91 {
92         QDBusInterface profileManagerIface("org.bluez", "/org/bluez", "org.bluez.ProfileManager1", QDBusConnection::systemBus());
93
94         QVariantMap options;
95         options["Name"] = "spp";
96         options["Role"] = "server";
97
98         QDBusReply<void> reply = profileManagerIface.call("RegisterProfile", "/org/bluez/spp", "00001101-0000-1000-8000-00805F9B34FB", options);
99
100         if(!reply.isValid())
101         {
102                 DebugOut(DebugOut::Error)<<"RegisterProfile call failed: "<<reply.error().message().toStdString()<<endl;
103         }
104 }
105
106 void BtProfileAdaptor::Release()
107 {
108         mParent->release();
109 }
110
111 void BtProfileAdaptor::NewConnection(QDBusObjectPath device, int fd, QVariantMap fd_properties)
112 {
113         mParent->newConnection(device.path().toStdString(), fd, fd_properties);
114 }
115
116 void BtProfileAdaptor::RequestDisconnection(QDBusObjectPath device)
117 {
118         mParent->requestDisconnection(device.path().toStdString());
119 }