Updated this component to use Bluez 5 API calls. This fixes TIVI-2936
[profile/ivi/wrt-plugins-ivi-bt.git] / src / BluetoothDevice.h
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #ifndef __TIZEN_BLUETOOTH_DEVICE_H__
19 #define __TIZEN_BLUETOOTH_DEVICE_H__
20
21 #include <string>
22 #include <vector>
23
24 #include <JavaScriptCore/JavaScript.h>
25 #include <bluetooth.h>
26 #include <boost/shared_ptr.hpp>
27 #include <PropertyBag.h>
28
29 #include "BluetoothClass.h"
30
31 namespace DeviceAPI {
32 namespace Bluetooth {
33
34 class BluetoothDevice
35 {
36 public:
37     BluetoothDevice(bt_adapter_device_discovery_info_s *discoveryInfo, char *devicePath = NULL);
38     BluetoothDevice(bt_device_info_s *deviceInfo, char *devicePath = NULL);
39     virtual ~BluetoothDevice();
40
41     void updateInfo(bt_device_info_s *deviceInfo);
42     std::string getName() const;
43     std::string getAddress() const;
44     char* getDevicePath() const {return mDevicePath;}
45     JSValueRef getDeviceClass(JSContextRef context);
46     bool isBonded() const;
47     bool isTrusted() const;
48     bool isConnected() const;
49     JSValueRef getUUIDs(JSContextRef context);
50
51 private:
52     char *getDefaultAdapter() const;
53     char *deviceFromAddress() const;
54     char *getDevice() const;
55
56 private:
57     std::string mName;
58     std::string mAddress;
59     char *mDevicePath;
60     BluetoothClassSharedPtr mDeviceClass;
61     std::vector<std::string> mUUIDs;
62     bool isUpdated;
63 };
64
65 typedef boost::shared_ptr<BluetoothDevice> BluetoothDeviceSharedPtr;
66
67 } // Bluetooth
68 } // DeviceAPI
69
70 #endif // __TIZEN_BLUETOOTH_DEVICE_H__