Merge branch 'master' into resource-manipulation
[platform/upstream/iotivity.git] / resource / csdk / security / include / srmutility.h
1 //******************************************************************
2 //
3 // Copyright 2015 Intel Mobile Communications GmbH 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 #ifndef IOTVT_SRM_UTILITY_H
22 #define IOTVT_SRM_UTILITY_H
23
24 #include "ocstack.h"
25 #include "uthash.h"
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif // __cplusplus
30
31 /**
32  * @def VERIFY_SUCCESS
33  * @brief Macro to verify success of operation.
34  * eg: VERIFY_SUCCESS(TAG, OC_STACK_OK == foo(), ERROR);
35  * @note Invoking function must define "exit:" label for goto functionality to work correctly.
36  *
37  */
38 #define VERIFY_SUCCESS(tag, op, logLevel) { if (!(op)) \
39             {OC_LOG((logLevel), tag, PCF(#op " failed!!")); goto exit;} }
40
41 /**
42  * @def VERIFY_NON_NULL
43  * @brief Macro to verify argument is not equal to NULL.
44  * eg: VERIFY_NON_NULL(TAG, ptrData, ERROR);
45  * @note Invoking function must define "exit:" label for goto functionality to work correctly.
46  *
47  */
48 #define VERIFY_NON_NULL(tag, arg, logLevel) { if (NULL == (arg)) \
49             { OC_LOG((logLevel), tag, PCF(#arg " is NULL")); goto exit; } }
50
51
52 #ifdef __cplusplus
53 }
54 #endif // __cplusplus
55
56 #endif //IOTVT_SRM_UTILITY_H