1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
|
// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <IceBT/Engine.h>
#include <IceBT/DBus.h>
#include <IceBT/Util.h>
#include <Ice/LocalException.h>
#include <IceUtil/StringUtil.h>
#include <IceUtil/Thread.h>
#include <IceUtil/UUID.h>
using namespace std;
using namespace Ice;
using namespace IceBT;
IceUtil::Shared* IceBT::upCast(IceBT::Engine* p) { return p; }
namespace IceBT
{
class ConnectionI;
typedef IceUtil::Handle<ConnectionI> ConnectionIPtr;
//
// ConnectionI implements IceBT::Connection and encapsulates a DBus connection along with
// some additional state.
//
class ConnectionI : public Connection
{
public:
ConnectionI(const DBus::ConnectionPtr& conn, const string& devicePath, const string& uuid) :
_connection(conn),
_devicePath(devicePath),
_uuid(uuid)
{
}
DBus::ConnectionPtr dbusConnection() const
{
return _connection;
}
//
// Blocking close.
//
virtual void close()
{
try
{
//
// Invoke DisconnectProfile to terminate the client-side connection.
//
DBus::MessagePtr msg =
DBus::Message::createCall("org.bluez", _devicePath, "org.bluez.Device1", "DisconnectProfile");
msg->write(new DBus::StringValue(_uuid));
DBus::AsyncResultPtr r = _connection->callAsync(msg);
r->waitUntilFinished(); // Block until the call completes.
}
catch(const DBus::Exception&)
{
// Ignore.
}
try
{
_connection->close();
}
catch(const DBus::Exception&)
{
// Ignore.
}
}
private:
DBus::ConnectionPtr _connection;
string _devicePath;
string _uuid;
};
//
// Profile is an abstract base class representing a Bluetooth "profile". We have to register a DBus
// profile object for a UUID in order to receive connection notifications. This is necessary for both
// outgoing and incoming connections.
//
class Profile : public DBus::Service
{
public:
virtual void handleMethodCall(const DBus::ConnectionPtr& conn, const DBus::MessagePtr& m)
{
string member = m->getMember();
if(member == "Release")
{
//
// Ignore - no reply necessary.
//
}
else if(member == "NewConnection")
{
vector<DBus::ValuePtr> values = m->readAll();
assert(values.size() == 3);
//
// This argument is the Unix file descriptor for the new connection.
//
DBus::UnixFDValuePtr fd = DBus::UnixFDValuePtr::dynamicCast(values[1]);
assert(fd);
try
{
//
// Send an empty reply.
//
DBus::MessagePtr ret = DBus::Message::createReturn(m);
conn->sendAsync(ret);
}
catch(const DBus::Exception&)
{
// Ignore.
}
try
{
newConnection(fd->v);
}
catch(...)
{
// Ignore.
}
}
else if(member == "RequestDisconnection")
{
try
{
//
// Send an empty reply.
//
DBus::MessagePtr ret = DBus::Message::createReturn(m);
conn->sendAsync(ret);
}
catch(const DBus::Exception&)
{
// Ignore.
}
//
// Ignore disconnect requests.
//
}
}
protected:
Profile() {}
virtual void newConnection(int) = 0;
};
ICE_DEFINE_PTR(ProfilePtr, Profile);
//
// ClientProfile represents an outgoing connection profile.
//
class ClientProfile : public Profile
{
public:
ClientProfile(const ConnectionPtr& conn, const ConnectCallbackPtr& cb) :
_connection(conn),
_callback(cb)
{
}
~ClientProfile()
{
}
protected:
virtual void newConnection(int fd)
{
//
// The callback assumes ownership of the file descriptor and connection.
//
_callback->completed(fd, _connection);
_connection = 0; // Remove circular reference.
_callback = 0;
}
private:
ConnectionPtr _connection;
ConnectCallbackPtr _callback;
};
ICE_DEFINE_PTR(ClientProfilePtr, ClientProfile);
//
// ServerProfile represents an incoming connection profile.
//
class ServerProfile : public Profile
{
public:
ServerProfile(const ProfileCallbackPtr& cb) :
_callback(cb)
{
}
protected:
virtual void newConnection(int fd)
{
_callback->newConnection(fd);
}
private:
ProfileCallbackPtr _callback;
};
ICE_DEFINE_PTR(ServerProfilePtr, ServerProfile);
//
// Engine delegates to BluetoothService. It encapsulates a snapshot of the "objects" managed by the
// DBus Bluetooth daemon. These objects include local Bluetooth adapters, paired devices, etc.
//
class BluetoothService : public DBus::Filter
#ifdef ICE_CPP11_MAPPING
, public std::enable_shared_from_this<BluetoothService>
#endif
{
public:
typedef map<string, DBus::VariantValuePtr> VariantMap;
typedef map<string, VariantMap> InterfacePropertiesMap;
struct RemoteDevice
{
RemoteDevice()
{
}
RemoteDevice(const VariantMap& m) :
properties(m)
{
}
string getAddress() const
{
string addr;
VariantMap::const_iterator i = properties.find("Address");
if(i != properties.end())
{
DBus::StringValuePtr str = DBus::StringValuePtr::dynamicCast(i->second->v);
assert(str);
addr = str->v;
}
return IceUtilInternal::toUpper(addr);
}
string getAdapter() const
{
string adapter;
VariantMap::const_iterator i = properties.find("Adapter");
if(i != properties.end())
{
DBus::ObjectPathValuePtr path = DBus::ObjectPathValuePtr::dynamicCast(i->second->v);
assert(path);
adapter = path->v;
}
return adapter;
}
VariantMap properties;
};
struct Adapter
{
Adapter()
{
}
Adapter(const VariantMap& p) :
properties(p)
{
}
string getAddress() const
{
string addr;
VariantMap::const_iterator i = properties.find("Address");
if(i != properties.end())
{
DBus::StringValuePtr str = DBus::StringValuePtr::dynamicCast(i->second->v);
assert(str);
addr = str->v;
}
return IceUtilInternal::toUpper(addr);
}
VariantMap properties;
#ifdef ICE_CPP11_MAPPING
vector<function<void(const string&, const PropertyMap&)>> callbacks;
#else
vector<DiscoveryCallbackPtr> callbacks;
#endif
};
typedef map<string, RemoteDevice> RemoteDeviceMap; // Key is the object path.
typedef map<string, Adapter> AdapterMap; // Key is the object path.
void init()
{
DBus::initThreads();
try
{
//
// Block while we establish a DBus connection and retrieve a snapshot of the managed objects
// from the Bluetooth service.
//
_dbusConnection = DBus::Connection::getSystemBus();
_dbusConnection->addFilter(ICE_SHARED_FROM_THIS);
getManagedObjects();
}
catch(const DBus::Exception& ex)
{
throw BluetoothException(__FILE__, __LINE__, ex.reason);
}
}
//
// From DBus::Filter.
//
virtual bool handleMessage(const DBus::ConnectionPtr&, const DBus::MessagePtr& msg)
{
if(!msg->isSignal())
{
return false; // Not handled.
}
string intf = msg->getInterface();
string member = msg->getMember();
if(intf == "org.freedesktop.DBus.ObjectManager" && member == "InterfacesAdded")
{
//
// The InterfacesAdded signal contains two values:
//
// OBJPATH obj_path
// DICT<STRING,DICT<STRING,VARIANT>> interfaces_and_properties
//
vector<DBus::ValuePtr> values = msg->readAll();
assert(values.size() == 2);
DBus::ObjectPathValuePtr path = DBus::ObjectPathValuePtr::dynamicCast(values[0]);
assert(path);
InterfacePropertiesMap interfaceProps;
extractInterfaceProperties(values[1], interfaceProps);
InterfacePropertiesMap::iterator p = interfaceProps.find("org.bluez.Device1");
if(p != interfaceProps.end())
{
//
// A remote device was added.
//
deviceAdded(path->v, p->second);
}
p = interfaceProps.find("org.bluez.Adapter1");
if(p != interfaceProps.end())
{
//
// A local Bluetooth adapter was added.
//
adapterAdded(path->v, p->second);
}
return true;
}
else if(intf == "org.freedesktop.DBus.ObjectManager" && member == "InterfacesRemoved")
{
//
// The InterfacesRemoved signal contains two values:
//
// OBJPATH obj_path
// ARRAY<STRING> interfaces
//
vector<DBus::ValuePtr> values = msg->readAll();
assert(values.size() == 2);
DBus::ObjectPathValuePtr path = DBus::ObjectPathValuePtr::dynamicCast(values[0]);
assert(path);
DBus::ArrayValuePtr ifaces = DBus::ArrayValuePtr::dynamicCast(values[1]);
assert(ifaces);
for(vector<DBus::ValuePtr>::const_iterator q = ifaces->elements.begin(); q != ifaces->elements.end(); ++q)
{
assert((*q)->getType()->getKind() == DBus::Type::KindString);
DBus::StringValuePtr ifaceName = DBus::StringValuePtr::dynamicCast(*q);
//
// A remote device was removed.
//
if(ifaceName->v == "org.bluez.Device1")
{
deviceRemoved(path->v);
}
else if(ifaceName->v == "org.bluez.Adapter1")
{
adapterRemoved(path->v);
}
}
return true;
}
else if(intf == "org.freedesktop.DBus.Properties" && member == "PropertiesChanged")
{
//
// The PropertiesChanged signal contains three values:
//
// STRING interface_name
// DICT<STRING,VARIANT> changed_properties
// ARRAY<STRING> invalidated_properties
//
vector<DBus::ValuePtr> values = msg->readAll();
assert(values.size() == 3);
DBus::StringValuePtr iface = DBus::StringValuePtr::dynamicCast(values[0]);
assert(iface);
if(iface->v != "org.bluez.Device1" && iface->v != "org.bluez.Adapter1")
{
return false;
}
VariantMap changed;
extractProperties(values[1], changed);
DBus::ArrayValuePtr a = DBus::ArrayValuePtr::dynamicCast(values[2]);
assert(a);
vector<string> removedNames;
for(vector<DBus::ValuePtr>::const_iterator p = a->elements.begin(); p != a->elements.end(); ++p)
{
DBus::StringValuePtr sv = DBus::StringValuePtr::dynamicCast(*p);
assert(sv);
removedNames.push_back(sv->v);
}
if(iface->v == "org.bluez.Device1")
{
deviceChanged(msg->getPath(), changed, removedNames);
}
else
{
adapterChanged(msg->getPath(), changed, removedNames);
}
return true;
}
return false;
}
string getDefaultAdapterAddress() const
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
//
// Return the device address of the default local adapter.
//
// TBD: Be smarter about this? E.g., consider the state of the Powered property?
//
if(!_adapters.empty())
{
return _adapters.begin()->second.getAddress();
}
throw BluetoothException(__FILE__, __LINE__, "no Bluetooth adapter found");
}
bool adapterExists(const string& addr) const
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
//
// Check if a local adapter exists with the given device address.
//
for(AdapterMap::const_iterator p = _adapters.begin(); p != _adapters.end(); ++p)
{
if(addr == p->second.getAddress())
{
return true;
}
}
return false;
}
bool deviceExists(const string& addr) const
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
//
// Check if a remote device exists with the given device address.
//
for(RemoteDeviceMap::const_iterator p = _remoteDevices.begin(); p != _remoteDevices.end(); ++p)
{
if(p->second.getAddress() == IceUtilInternal::toUpper(addr))
{
return true;
}
}
return false;
}
//
// Calling registerProfile will advertise a service (SDP) profile with the Bluetooth daemon.
//
string registerProfile(const string& uuid, const string& name, int channel, const ProfileCallbackPtr& cb)
{
//
// As a subclass of DBus::Service, the ServerProfile object will receive DBus method
// invocations for a given object path.
//
ProfilePtr profile = ICE_MAKE_SHARED(ServerProfile, cb);
string path = generatePath();
try
{
DBus::AsyncResultPtr ar = registerProfileImpl(_dbusConnection, path, uuid, name, channel, profile);
DBus::MessagePtr reply = ar->waitUntilFinished(); // Block until finished.
if(reply->isError())
{
reply->throwException();
}
}
catch(const DBus::Exception& ex)
{
throw BluetoothException(__FILE__, __LINE__, ex.reason);
}
return path;
}
void unregisterProfile(const string& path)
{
try
{
//
// Block while we unregister the profile.
//
DBus::AsyncResultPtr ar = unregisterProfileImpl(_dbusConnection, path);
ar->waitUntilFinished();
DBus::MessagePtr reply = ar->getReply();
_dbusConnection->removeService(path);
if(reply->isError())
{
reply->throwException();
}
}
catch(const DBus::Exception& ex)
{
throw BluetoothException(__FILE__, __LINE__, ex.reason);
}
}
void connect(const string& addr, const string& uuid, const ConnectCallbackPtr& cb)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
//
// Start a thread to establish the connection.
//
IceUtil::ThreadPtr t = new ConnectThread(ICE_SHARED_FROM_THIS, addr, uuid, cb);
_connectThreads.push_back(t);
t->start();
}
#ifdef ICE_CPP11_MAPPING
void startDiscovery(const string& addr, function<void(const string&, const PropertyMap&)> cb)
#else
void startDiscovery(const string& addr, const DiscoveryCallbackPtr& cb)
#endif
{
string path;
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
for(AdapterMap::iterator p = _adapters.begin(); p != _adapters.end(); ++p)
{
if(p->second.getAddress() == IceUtilInternal::toUpper(addr))
{
path = p->first;
#ifdef ICE_CPP11_MAPPING
p->second.callbacks.push_back(move(cb));
#else
p->second.callbacks.push_back(cb);
#endif
}
}
}
if(path.empty())
{
throw BluetoothException(__FILE__, __LINE__, "no Bluetooth adapter found matching address " + addr);
}
//
// Invoke StartDiscovery() on the adapter object.
//
try
{
DBus::MessagePtr msg = DBus::Message::createCall("org.bluez", path, "org.bluez.Adapter1", "StartDiscovery");
DBus::AsyncResultPtr r = _dbusConnection->callAsync(msg);
DBus::MessagePtr reply = r->waitUntilFinished();
if(reply->isError())
{
reply->throwException();
}
}
catch(const DBus::Exception& ex)
{
throw BluetoothException(__FILE__, __LINE__, ex.reason);
}
}
void stopDiscovery(const string& addr)
{
string path;
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
for(AdapterMap::iterator p = _adapters.begin(); p != _adapters.end(); ++p)
{
if(p->second.getAddress() == IceUtilInternal::toUpper(addr))
{
path = p->first;
p->second.callbacks.clear();
}
}
}
if(path.empty())
{
throw BluetoothException(__FILE__, __LINE__, "no Bluetooth adapter found matching address " + addr);
}
//
// Invoke StopDiscovery() on the adapter object.
//
try
{
DBus::MessagePtr msg = DBus::Message::createCall("org.bluez", path, "org.bluez.Adapter1", "StopDiscovery");
DBus::AsyncResultPtr r = _dbusConnection->callAsync(msg);
DBus::MessagePtr reply = r->waitUntilFinished();
if(reply->isError())
{
reply->throwException();
}
}
catch(const DBus::Exception& ex)
{
throw BluetoothException(__FILE__, __LINE__, ex.reason);
}
}
DeviceMap getDevices() const
{
DeviceMap devices;
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
for(RemoteDeviceMap::const_iterator p = _remoteDevices.begin(); p != _remoteDevices.end(); ++p)
{
PropertyMap pm; // Convert to string-string map.
for(VariantMap::const_iterator q = p->second.properties.begin(); q != p->second.properties.end(); ++q)
{
pm[q->first] = q->second->toString();
}
devices[p->second.getAddress()] = pm;
}
}
return devices;
}
void destroy()
{
//
// Wait for any active connect threads to finish.
//
vector<IceUtil::ThreadPtr> v;
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
v.swap(_connectThreads);
}
for(vector<IceUtil::ThreadPtr>::iterator p = v.begin(); p != v.end(); ++p)
{
(*p)->getThreadControl().join();
}
if(_dbusConnection)
{
try
{
_dbusConnection->close();
}
catch(const DBus::Exception& ex)
{
}
}
}
void getManagedObjects()
{
try
{
//
// Query the Bluetooth service for its managed objects. This is a standard DBus invocation
// with the following signature:
//
// org.freedesktop.DBus.ObjectManager.GetManagedObjects (
// out DICT<OBJPATH,DICT<STRING,DICT<STRING,VARIANT>>> objpath_interfaces_and_properties);
//
DBus::MessagePtr msg =
DBus::Message::createCall("org.bluez", "/", "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
DBus::AsyncResultPtr r = _dbusConnection->callAsync(msg);
DBus::MessagePtr reply = r->waitUntilFinished();
if(reply->isError())
{
reply->throwException();
}
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
_adapters.clear();
_remoteDevices.clear();
_defaultAdapterAddress.clear();
//
// The return value of GetManagedObjects is a dictionary structured like this:
//
// Key: Object path (e.g., "/org/bluez")
// Value: Dictionary of interfaces
// Key: Interface name (e.g., "org.bluez.Adapter1")
// Value: Dictionary of properties
// Key: Property name
// Value: Property value (variant)
//
//
// Extract the dictionary from the reply message.
//
DBus::ValuePtr v = reply->read();
//
// Iterate through the dictionary and collect the objects that we need.
//
assert(v->getType()->getKind() == DBus::Type::KindArray);
DBus::ArrayValuePtr a = DBus::ArrayValuePtr::dynamicCast(v);
for(vector<DBus::ValuePtr>::const_iterator p = a->elements.begin(); p != a->elements.end(); ++p)
{
assert((*p)->getType()->getKind() == DBus::Type::KindDictEntry);
DBus::DictEntryValuePtr e = DBus::DictEntryValuePtr::dynamicCast(*p);
assert(e->key->getType()->getKind() == DBus::Type::KindObjectPath);
DBus::ObjectPathValuePtr path = DBus::ObjectPathValuePtr::dynamicCast(e->key);
assert(e->value->getType()->getKind() == DBus::Type::KindArray);
InterfacePropertiesMap ipmap;
extractInterfaceProperties(e->value, ipmap);
InterfacePropertiesMap::iterator q;
q = ipmap.find("org.bluez.Adapter1");
if(q != ipmap.end())
{
//
// org.bluez.Adapter1 is the interface for local Bluetooth adapters.
//
_adapters[path->v] = Adapter(q->second);
}
q = ipmap.find("org.bluez.Device1");
if(q != ipmap.end())
{
//
// org.bluez.Device1 is the interface for paired remote devices.
//
RemoteDevice d(q->second);
if(!d.getAddress().empty())
{
_remoteDevices[path->v] = d;
}
}
}
}
catch(const DBus::Exception& ex)
{
throw BluetoothException(__FILE__, __LINE__, ex.reason);
}
}
DBus::AsyncResultPtr registerProfileImpl(const DBus::ConnectionPtr& conn, const string& path, const string& uuid,
const string& name, int channel, const ProfilePtr& profile)
{
conn->addService(path, profile);
//
// Invoke RegisterProfile on the profile manager object.
//
DBus::MessagePtr msg =
DBus::Message::createCall("org.bluez", "/org/bluez", "org.bluez.ProfileManager1", "RegisterProfile");
vector<DBus::ValuePtr> args;
args.push_back(new DBus::ObjectPathValue(path));
args.push_back(new DBus::StringValue(uuid));
DBus::DictEntryTypePtr dt =
new DBus::DictEntryType(DBus::Type::getPrimitive(DBus::Type::KindString), new DBus::VariantType);
DBus::TypePtr t = new DBus::ArrayType(dt);
DBus::ArrayValuePtr options = new DBus::ArrayValue(t);
if(!name.empty())
{
options->elements.push_back(
new DBus::DictEntryValue(dt, new DBus::StringValue("Name"),
new DBus::VariantValue(new DBus::StringValue(name))));
}
if(channel != -1)
{
options->elements.push_back(
new DBus::DictEntryValue(dt, new DBus::StringValue("Channel"),
new DBus::VariantValue(new DBus::Uint16Value(channel))));
options->elements.push_back(
new DBus::DictEntryValue(dt, new DBus::StringValue("Role"),
new DBus::VariantValue(new DBus::StringValue("server"))));
}
else
{
options->elements.push_back(
new DBus::DictEntryValue(dt, new DBus::StringValue("Role"),
new DBus::VariantValue(new DBus::StringValue("client"))));
}
args.push_back(options);
msg->write(args);
return conn->callAsync(msg);
}
DBus::AsyncResultPtr unregisterProfileImpl(const DBus::ConnectionPtr& conn, const string& path)
{
//
// Invoke UnregisterProfile on the profile manager object.
//
DBus::MessagePtr msg =
DBus::Message::createCall("org.bluez", "/org/bluez", "org.bluez.ProfileManager1", "UnregisterProfile");
msg->write(new DBus::ObjectPathValue(path));
return conn->callAsync(msg);
}
static string generatePath()
{
//
// Generate a unique object path. Path elements can only contain "[A-Z][a-z][0-9]_".
//
string path = "/com/zeroc/P" + IceUtil::generateUUID();
for(string::iterator p = path.begin(); p != path.end(); ++p)
{
if(*p == '-')
{
*p = '_';
}
}
return path;
}
void deviceAdded(const string& path, const VariantMap& props)
{
RemoteDevice dev(props);
if(dev.getAddress().empty())
{
return; // Ignore devices that don't have an Address property.
}
#ifdef ICE_CPP11_MAPPING
vector<function<void(const string&, const PropertyMap&)>> callbacks;
#else
vector<DiscoveryCallbackPtr> callbacks;
#endif
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
AdapterMap::iterator p = _adapters.find(dev.getAdapter());
if(p != _adapters.end())
{
callbacks = p->second.callbacks;
}
_remoteDevices[path] = dev;
}
if(!callbacks.empty())
{
PropertyMap pm; // Convert to string-string map.
for(VariantMap::const_iterator p = props.begin(); p != props.end(); ++p)
{
pm[p->first] = p->second->toString();
}
#ifdef ICE_CPP11_MAPPING
for(const auto& discovered : callbacks)
{
try
{
discovered(dev.getAddress(), pm);
}
catch(...)
{
}
}
#else
for(vector<DiscoveryCallbackPtr>::iterator p = callbacks.begin(); p != callbacks.end(); ++p)
{
try
{
(*p)->discovered(dev.getAddress(), pm);
}
catch(...)
{
}
}
#endif
}
}
void deviceChanged(const string& path, const VariantMap& changed, const vector<string>& removedProps)
{
#ifdef ICE_CPP11_MAPPING
vector<function<void(const string&, const PropertyMap&)>> callbacks;
#else
vector<DiscoveryCallbackPtr> callbacks;
#endif
string addr;
string adapter;
VariantMap props;
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
RemoteDeviceMap::iterator p = _remoteDevices.find(path);
if(p == _remoteDevices.end())
{
RemoteDevice dev(changed);
addr = dev.getAddress();
if(!addr.empty())
{
_remoteDevices[path] = dev;
props = changed;
adapter = dev.getAdapter();
}
}
else
{
updateProperties(p->second.properties, changed, removedProps);
addr = p->second.getAddress();
if(addr.empty())
{
//
// Remove the device if we don't know its address.
//
_remoteDevices.erase(p);
}
else
{
props = p->second.properties;
adapter = p->second.getAdapter();
}
}
AdapterMap::iterator q = _adapters.find(adapter);
if(q != _adapters.end())
{
callbacks = q->second.callbacks;
}
}
if(!addr.empty() && !callbacks.empty())
{
PropertyMap pm; // Convert to string-string map.
for(VariantMap::iterator p = props.begin(); p != props.end(); ++p)
{
pm[p->first] = p->second->toString();
}
#ifdef ICE_CPP11_MAPPING
for(const auto& discovered : callbacks)
{
try
{
discovered(addr, pm);
}
catch(...)
{
}
}
#else
for(vector<DiscoveryCallbackPtr>::iterator p = callbacks.begin(); p != callbacks.end(); ++p)
{
try
{
(*p)->discovered(addr, pm);
}
catch(...)
{
}
}
#endif
}
}
void deviceRemoved(const string& path)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
RemoteDeviceMap::iterator p = _remoteDevices.find(path);
if(p != _remoteDevices.end())
{
_remoteDevices.erase(p);
}
}
void adapterAdded(const string& path, const VariantMap& props)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
_adapters[path] = Adapter(props);
}
void adapterChanged(const string& path, const VariantMap& changed, const vector<string>& removedProps)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
AdapterMap::iterator p = _adapters.find(path);
if(p == _adapters.end())
{
_adapters[path] = Adapter(changed);
}
else
{
updateProperties(p->second.properties, changed, removedProps);
}
}
void adapterRemoved(const string& path)
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
AdapterMap::iterator p = _adapters.find(path);
if(p != _adapters.end())
{
_adapters.erase(p);
}
}
void extractInterfaceProperties(const DBus::ValuePtr& v, InterfacePropertiesMap& interfaceProps)
{
//
// The given value is a dictionary structured like this:
//
// Key: Interface name (e.g., "org.bluez.Adapter1")
// Value: Dictionary of properties
// Key: Property name
// Value: Property value (variant)
//
DBus::ArrayValuePtr ifaces = DBus::ArrayValuePtr::dynamicCast(v);
assert(ifaces);
for(vector<DBus::ValuePtr>::const_iterator q = ifaces->elements.begin(); q != ifaces->elements.end(); ++q)
{
assert((*q)->getType()->getKind() == DBus::Type::KindDictEntry);
DBus::DictEntryValuePtr ie = DBus::DictEntryValuePtr::dynamicCast(*q);
assert(ie->key->getType()->getKind() == DBus::Type::KindString);
DBus::StringValuePtr ifaceName = DBus::StringValuePtr::dynamicCast(ie->key);
VariantMap pm;
extractProperties(ie->value, pm);
interfaceProps[ifaceName->v] = pm;
}
}
void extractProperties(const DBus::ValuePtr& v, VariantMap& vm)
{
//
// The given value is a dictionary structured like this:
//
// Key: Property name
// Value: Property value (variant)
//
assert(v->getType()->getKind() == DBus::Type::KindArray);
DBus::ArrayValuePtr props = DBus::ArrayValuePtr::dynamicCast(v);
for(vector<DBus::ValuePtr>::const_iterator s = props->elements.begin(); s != props->elements.end(); ++s)
{
assert((*s)->getType()->getKind() == DBus::Type::KindDictEntry);
DBus::DictEntryValuePtr pe = DBus::DictEntryValuePtr::dynamicCast(*s);
assert(pe->key->getType()->getKind() == DBus::Type::KindString);
DBus::StringValuePtr propName = DBus::StringValuePtr::dynamicCast(pe->key);
assert(pe->value->getType()->getKind() == DBus::Type::KindVariant);
vm[propName->v] = DBus::VariantValuePtr::dynamicCast(pe->value);
}
}
void updateProperties(VariantMap& props, const VariantMap& changed, const vector<string>& removedProps)
{
//
// Remove properties.
//
for(vector<string>::const_iterator q = removedProps.begin(); q != removedProps.end(); ++q)
{
VariantMap::iterator r = props.find(*q);
if(r != props.end())
{
props.erase(r);
}
}
//
// Merge changes.
//
for(VariantMap::const_iterator q = changed.begin(); q != changed.end(); ++q)
{
props[q->first] = q->second;
}
}
void runConnectThread(const IceUtil::ThreadPtr& thread, const string& addr, const string& uuid,
const ConnectCallbackPtr& cb)
{
//
// Establishing a connection is a complicated process.
//
// 1) Determine whether our local Bluetooth service knows about the target
// remote device denoted by the 'addr' argument. The known remote devices
// are included in the managed objects returned by the GetManagedObjects
// invocation on the Bluetooth service and updated dynamically during
// discovery.
//
// 2) After we find the remote device, we have to register a client profile
// for the given UUID.
//
// 3) After registering the profile, we have to invoke ConnectDevice on the
// local device object corresponding to the target address. The Bluetooth
// service will attempt to establish a connection to the remote device.
// If the connection succeeds, our profile object will receive a
// NewConnection invocation that supplies the file descriptor.
//
ConnectionIPtr conn;
bool ok = true;
try
{
string devicePath;
//
// Search our list of known devices for one that matches the given address.
//
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
for(RemoteDeviceMap::iterator p = _remoteDevices.begin(); p != _remoteDevices.end(); ++p)
{
if(p->second.getAddress() == IceUtilInternal::toUpper(addr))
{
devicePath = p->first;
break;
}
}
}
//
// If we don't find a match, we're done.
//
if(devicePath.empty())
{
throw BluetoothException(__FILE__, __LINE__, "unknown address `" + addr + "'");
}
//
// We have a matching device, now register a client profile.
//
DBus::ConnectionPtr dbusConn = DBus::Connection::getSystemBus();
conn = new ConnectionI(dbusConn, devicePath, uuid);
ProfilePtr profile = ICE_MAKE_SHARED(ClientProfile, conn, cb);
string path = generatePath();
//
// Register a client profile. Client profiles are not advertised in SDP.
//
DBus::AsyncResultPtr r = registerProfileImpl(dbusConn, path, uuid, string(), -1, profile);
DBus::MessagePtr reply = r->waitUntilFinished();
if(reply->isError())
{
reply->throwException();
}
//
// Invoke ConnectProfile to initiate the client-side connection:
//
// void ConnectProfile(string uuid)
//
// We only care about errors from this invocation. If the connection succeeds, our
// client profile will receive a separate NewConnection invocation.
//
DBus::MessagePtr msg =
DBus::Message::createCall("org.bluez", devicePath, "org.bluez.Device1", "ConnectProfile");
msg->write(new DBus::StringValue(uuid));
r = dbusConn->callAsync(msg);
reply = r->waitUntilFinished();
if(reply->isError())
{
try
{
reply->throwException();
}
catch(const DBus::Exception& ex)
{
ostringstream ostr;
ostr << "unable to establish connection to " << uuid << " at " << addr;
if(!ex.reason.empty())
{
ostr << ':' << endl << ex.reason;
}
throw BluetoothException(__FILE__, __LINE__, ostr.str());
}
}
}
catch(const DBus::Exception& ex)
{
ok = false;
cb->failed(BluetoothException(__FILE__, __LINE__, ex.reason));
}
catch(const Ice::LocalException& ex)
{
ok = false;
cb->failed(ex);
}
//
// Clean up.
//
if(!ok && conn)
{
conn->close();
}
//
// Remove the thread from the list.
//
{
IceUtil::Monitor<IceUtil::Mutex>::Lock lock(_lock);
vector<IceUtil::ThreadPtr>::iterator p = find(_connectThreads.begin(), _connectThreads.end(), thread);
assert(p != _connectThreads.end());
_connectThreads.erase(p);
}
}
class ConnectThread : public IceUtil::Thread
{
public:
ConnectThread(const BluetoothServicePtr& mo, const string& addr, const string& uuid,
const ConnectCallbackPtr& cb) :
_mo(mo),
_addr(addr),
_uuid(uuid),
_cb(cb)
{
}
virtual void run()
{
_mo->runConnectThread(this, _addr, _uuid, _cb);
}
private:
BluetoothServicePtr _mo;
string _addr;
string _uuid;
ConnectCallbackPtr _cb;
};
IceUtil::Monitor<IceUtil::Mutex> _lock;
DBus::ConnectionPtr _dbusConnection;
AdapterMap _adapters;
RemoteDeviceMap _remoteDevices;
string _defaultAdapterAddress;
vector<IceUtil::ThreadPtr> _connectThreads;
bool _discovering;
#ifdef ICE_CPP11_MAPPING
vector<function<void(const string&, const PropertyMap&)>> _discoveryCallbacks;
#else
vector<DiscoveryCallbackPtr> _discoveryCallbacks;
#endif
};
}
#ifndef ICE_CPP11_MAPPING
IceUtil::Shared* IceBT::upCast(IceBT::BluetoothService* p) { return p; }
#endif
IceBT::Engine::Engine(const Ice::CommunicatorPtr& communicator) :
_communicator(communicator),
_initialized(false)
{
}
Ice::CommunicatorPtr
IceBT::Engine::communicator() const
{
return _communicator;
}
void
IceBT::Engine::initialize()
{
_service = ICE_MAKE_SHARED(BluetoothService);
_service->init();
_initialized = true;
}
bool
IceBT::Engine::initialized() const
{
return _initialized;
}
string
IceBT::Engine::getDefaultAdapterAddress() const
{
return _service->getDefaultAdapterAddress();
}
bool
IceBT::Engine::adapterExists(const string& addr) const
{
return _service->adapterExists(addr);
}
bool
IceBT::Engine::deviceExists(const string& addr) const
{
return _service->deviceExists(addr);
}
string
IceBT::Engine::registerProfile(const string& uuid, const string& name, int channel, const ProfileCallbackPtr& cb)
{
return _service->registerProfile(uuid, name, channel, cb);
}
void
IceBT::Engine::unregisterProfile(const string& path)
{
return _service->unregisterProfile(path);
}
void
IceBT::Engine::connect(const string& addr, const string& uuid, const ConnectCallbackPtr& cb)
{
_service->connect(addr, uuid, cb);
}
void
#ifdef ICE_CPP11_MAPPING
IceBT::Engine::startDiscovery(const string& address, function<void(const string&, const PropertyMap&)> cb)
#else
IceBT::Engine::startDiscovery(const string& address, const DiscoveryCallbackPtr& cb)
#endif
{
_service->startDiscovery(address, cb);
}
void
IceBT::Engine::stopDiscovery(const string& address)
{
_service->stopDiscovery(address);
}
IceBT::DeviceMap
IceBT::Engine::getDevices() const
{
return _service->getDevices();
}
void
IceBT::Engine::destroy()
{
_service->destroy();
}
|