tizen 2.3.1 release
[framework/web/mobile/wrt-plugins-tizen.git] / src / Bluetooth / 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 <memory>
27 #include <PropertyBag.h>
28 #include <Security.h>
29 #include "BluetoothClass.h"
30
31 namespace DeviceAPI {
32 namespace Bluetooth {
33
34 class BluetoothDevice : public Common::SecurityAccessor
35 {
36 public:
37     BluetoothDevice(bt_adapter_device_discovery_info_s *discoveryInfo);
38     BluetoothDevice(bt_device_info_s *deviceInfo);
39     virtual ~BluetoothDevice();
40
41     void updateInfo(bt_device_info_s *deviceInfo);
42     std::string getName() const;
43     std::string getAddress() const;
44     JSValueRef getDeviceClass(JSContextRef context);
45     bool isBonded() const;
46     bool isTrusted() const;
47     bool isConnected() const;
48     JSValueRef getUUIDs(JSContextRef context);
49     void copyAceCheckAccessFunction(
50         const Common::SecurityAccessor *securityAccessor);
51 private:
52     std::string mName;
53     std::string mAddress;
54     BluetoothClassSharedPtr mDeviceClass;
55     std::vector<std::string> mUUIDs;
56     bool isUpdated;
57 };
58
59 typedef std::shared_ptr<BluetoothDevice> BluetoothDeviceSharedPtr;
60
61 } // Bluetooth
62 } // DeviceAPI
63
64 #endif // __TIZEN_BLUETOOTH_DEVICE_H__