[Boiler Plate] Update Boiler plate to remove unwanted information
[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,
40                         bt_oob_data_t, 0);
41         }
42
43         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
44
45         return result;
46 }
47
48 BT_EXPORT_API int bluetooth_oob_add_remote_data(
49                         const bluetooth_device_address_t *remote_device_address,
50                         bt_oob_data_t *remote_oob_data)
51 {
52         int result;
53
54         BT_CHECK_PARAMETER(remote_device_address, return);
55         BT_CHECK_PARAMETER(remote_oob_data, return);
56         BT_CHECK_ENABLED(return);
57
58         BT_INIT_PARAMS();
59         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
60
61         g_array_append_vals(in_param1, remote_device_address,
62                                 sizeof(bluetooth_device_address_t));
63
64         g_array_append_vals(in_param2, remote_oob_data, sizeof(bt_oob_data_t));
65
66         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_OOB_ADD_REMOTE_DATA,
67                 in_param1, in_param2, in_param3, in_param4, &out_param);
68
69         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
70
71         return result;
72 }
73
74 BT_EXPORT_API int bluetooth_oob_remove_remote_data(
75                         const bluetooth_device_address_t *remote_device_address)
76 {
77         int result;
78
79         BT_CHECK_PARAMETER(remote_device_address, return);
80         BT_CHECK_ENABLED(return);
81
82         BT_INIT_PARAMS();
83         BT_ALLOC_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
84
85         g_array_append_vals(in_param1, remote_device_address,
86                                 sizeof(bluetooth_device_address_t));
87
88         result = _bt_send_request(BT_BLUEZ_SERVICE, BT_OOB_REMOVE_REMOTE_DATA,
89                 in_param1, in_param2, in_param3, in_param4, &out_param);
90
91         BT_FREE_PARAMS(in_param1, in_param2, in_param3, in_param4, out_param);
92
93         return result;
94 }
95