d2145c4569be0b4c65832542dde33df70e02f74c
[platform/core/connectivity/bluetooth-frwk.git] / bt-api / bt-oob.c
1 /*
2  * bluetooth-frwk
3  *
4  * Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *              http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include "bluetooth-api.h"
21 #include "bt-internal-types.h"
22
23 #include "bt-common.h"
24 #include "bt-request-sender.h"
25 #include "bt-event-handler.h"
26
27 BT_EXPORT_API int bluetooth_oob_read_local_data(bt_oob_data_t *local_oob_data)
28 {
29         int result;
30
31         BT_CHECK_PARAMETER(local_oob_data, return);
32         BT_CHECK_ENABLED(return);
33
34         BT_INIT_PARAMS();
35         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
36
37         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_OOB_READ_LOCAL_DATA,
38                 in_param1, in_param2, in_param3, in_param4, &out_param);
39
40         if (result == BLUETOOTH_ERROR_NONE) {
41                 *local_oob_data = g_array_index(out_param,
42                         bt_oob_data_t, 0);
43         }
44
45         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
46
47         return result;
48 }
49
50 BT_EXPORT_API int bluetooth_oob_add_remote_data(
51                         const bluetooth_device_address_t *remote_device_address,
52                         bt_oob_data_t *remote_oob_data)
53 {
54         int result;
55
56         BT_CHECK_PARAMETER(remote_device_address, return);
57         BT_CHECK_PARAMETER(remote_oob_data, return);
58         BT_CHECK_ENABLED(return);
59
60         BT_INIT_PARAMS();
61         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
62
63         g_array_append_vals(in_param1, remote_device_address,
64                                 sizeof(bluetooth_device_address_t));
65
66         g_array_append_vals(in_param2, remote_oob_data, sizeof(bt_oob_data_t));
67
68         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_OOB_ADD_REMOTE_DATA,
69                 in_param1, in_param2, in_param3, in_param4, &out_param);
70
71         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
72
73         return result;
74 }
75
76 BT_EXPORT_API int bluetooth_oob_remove_remote_data(
77                         const bluetooth_device_address_t *remote_device_address)
78 {
79         int result;
80
81         BT_CHECK_PARAMETER(remote_device_address, return);
82         BT_CHECK_ENABLED(return);
83
84         BT_INIT_PARAMS();
85         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
86
87         g_array_append_vals(in_param1, remote_device_address,
88                                 sizeof(bluetooth_device_address_t));
89
90         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_OOB_REMOVE_REMOTE_DATA,
91                 in_param1, in_param2, in_param3, in_param4, &out_param);
92
93         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
94
95         return result;
96 }
97