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