warehouse for ces2019
[apps/onscreenapp.git] / app / src / hmi-debug.h
1 /*
2  * Copyright (c) 2018 TOYOTA MOTOR CORPORATION
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 #ifndef __HMI_DEBUG_H__
18 #define __HMI_DEBUG_H__
19
20 #include <stdarg.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <time.h>
25
26 enum LOG_LEVEL {
27   LOG_LEVEL_NONE = 0,
28   LOG_LEVEL_ERROR,
29   LOG_LEVEL_WARNING,
30   LOG_LEVEL_NOTICE,
31   LOG_LEVEL_INFO,
32   LOG_LEVEL_DEBUG,
33   LOG_LEVEL_MAX = LOG_LEVEL_DEBUG
34 };
35
36 #define __FILENAME__ \
37   (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
38
39 #define HMI_ERROR(prefix, args, ...)                                      \
40   _HMI_LOG(LOG_LEVEL_ERROR, __FILENAME__, __FUNCTION__, __LINE__, prefix, \
41            args, ##__VA_ARGS__)
42 #define HMI_WARNING(prefix, args, ...)                                      \
43   _HMI_LOG(LOG_LEVEL_WARNING, __FILENAME__, __FUNCTION__, __LINE__, prefix, \
44            args, ##__VA_ARGS__)
45 #define HMI_NOTICE(prefix, args, ...)                                      \
46   _HMI_LOG(LOG_LEVEL_NOTICE, __FILENAME__, __FUNCTION__, __LINE__, prefix, \
47            args, ##__VA_ARGS__)
48 #define HMI_INFO(prefix, args, ...)                                            \
49   _HMI_LOG(LOG_LEVEL_INFO, __FILENAME__, __FUNCTION__, __LINE__, prefix, args, \
50            ##__VA_ARGS__)
51 #define HMI_DEBUG(prefix, args, ...)                                      \
52   _HMI_LOG(LOG_LEVEL_DEBUG, __FILENAME__, __FUNCTION__, __LINE__, prefix, \
53            args, ##__VA_ARGS__)
54
55 static char ERROR_FLAG[6][20] = {"NONE",   "ERROR", "WARNING",
56                                  "NOTICE", "INFO",  "DEBUG"};
57
58 static void _HMI_LOG(enum LOG_LEVEL level,
59                      const char* file,
60                      const char* func,
61                      const int line,
62                      const char* prefix,
63                      const char* log,
64                      ...) {
65   const int log_level = (getenv("USE_HMI_DEBUG") == NULL)
66                             ? LOG_LEVEL_ERROR
67                             : atoi(getenv("USE_HMI_DEBUG"));
68   if (log_level < level) {
69     return;
70   }
71
72   char* message;
73   struct timespec tp;
74   unsigned int time;
75
76   clock_gettime(CLOCK_REALTIME, &tp);
77   time = (tp.tv_sec * 1000000L) + (tp.tv_nsec / 1000);
78
79   va_list args;
80   va_start(args, log);
81   if (log == NULL || vasprintf(&message, log, args) < 0)
82     message = NULL;
83   fprintf(stderr, "[%10.3f] [%s %s] [%s, %s(), Line:%d] >>> %s \n",
84           time / 1000.0, prefix, ERROR_FLAG[level], file, func, line, message);
85   va_end(args);
86   free(message);
87 }
88
89 #endif  //__HMI_DEBUG_H__