c3afe31169c1af133866db24ad931a6c8ed44ae2
[platform/upstream/iotivity.git] / resource / csdk / connectivity / src / bt_edr_adapter / tizen / caedrutils.h
1 /* ****************************************************************
2  *
3  * Copyright 2014 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 /**
22  * @file
23  *
24  * This file provides helper functions for EDR adapter.
25  */
26
27 #ifndef CA_EDR_UTILS_H_
28 #define CA_EDR_UTILS_H_
29
30 #include <stdbool.h>
31 #include <string.h>
32
33 #include "cacommon.h"
34 #include "oic_malloc.h"
35 #include "caedrinterface.h"
36
37 /**
38  * Logging tag for module name.
39  */
40 #ifndef EDR_ADAPTER_TAG
41 #define EDR_ADAPTER_TAG "CA_EDR_ADAPTER"
42 #endif //EDR_ADAPTER_TAG
43
44 #ifdef __cplusplus
45 extern "C"
46 {
47 #endif
48
49 /**
50  * Checks if the specified list of service UUIDs contains OIC service UUID.
51  *
52  * @param[in]  serviceUUID   Array of service UUIDs.
53  * @param[in]  serviceCount  Size of the service UUIDs array.
54  * @param[in]  matchService  Service UUID to be checked in the given array of service UUIDs.
55  *
56  * @return  true if match service UUID found otherwise false.
57  *
58  */
59 bool CAEDRIsServiceSupported(const char **serviceUUID, int32_t serviceCount,
60                             const char *matchService);
61
62 /**
63  * Get device information from list.
64  * @param[in]   remoteAddress   remote address.
65  * @return  Device information object or NULL.
66  */
67 CAConnectedDeviceInfo_t *CAEDRGetDeviceInfoFromAddress(const char *remoteAddress);
68
69 /**
70  * Add device information to list.
71  * @param[in]   remoteAddress   remote address.
72  * @param[in]   deviceInfo      device information.
73  * @return ::CA_STATUS_OK or Appropriate error code.
74  */
75 CAResult_t CAEDRAddDeviceInfoToList(const char *remoteAddress, CAConnectedDeviceInfo_t *deviceInfo);
76
77 #ifdef __cplusplus
78 } /* extern "C" */
79 #endif
80
81 #endif /* CA_EDR_UTILS_H_ */
82
83