report-json-serializer: app and top serializers
[apps/native/ttsd-worker-task.git] / src / err-check.h
1 /*
2 * Copyright 2018  Samsung Electronics Co., Ltd
3 *
4 * Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 #ifndef __ERR_CHECK_H__
18 #define __ERR_CHECK_H__
19
20 #include "log.h"
21
22 #define ON_NULL_RETURN_VAL(x, v) do { \
23         if ((x) == NULL) {\
24                 ERR(#x" is NULL");\
25                 return (v);\
26         }\
27 } while (0)
28
29 #define ON_TRUE_RETURN_VAL(cond, v) do { \
30         if ((cond)) {\
31                 ERR("condition ("#cond") is true");\
32                 return (v);\
33         }\
34 } while (0)
35
36 #define ON_NULL_RETURN(x) do { \
37         if ((x) == NULL) {\
38                 ERR(#x" is NULL");\
39                 return;\
40         }\
41 } while (0)
42
43 #define ON_TRUE_RETURN(cond) do { \
44         if ((cond)) {\
45                 ERR("condition ("#cond") is true");\
46                 return;\
47         }\
48 } while (0)
49
50 #endif