Source code formating unification
[platform/framework/web/wrt.git] / src / wrt-launchpad-daemon / include / perf.h
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 #ifndef __PERF_H__
18 #define __PERF_H__
19
20 #ifdef PERF_ACTIVATE
21
22 #include <sys/time.h>
23 static struct timeval __g_base_time = {
24     .tv_sec = 0,
25     .tv_usec = 0
26 };
27
28 #define INIT_PERF(kb) \
29     do { \
30         const char *tmp; \
31         struct timeval tv; \
32         tmp = bundle_get_val(kb, AUL_K_STARTTIME); \
33         if (tmp != NULL) { \
34             sscanf(tmp, "%ld/%ld", &tv.tv_sec, &tv.tv_usec); } \
35         else { \
36             gettimeofday(&tv, NULL); } \
37         __g_base_time.tv_sec = tv.tv_sec; \
38         __g_base_time.tv_usec = tv.tv_usec; \
39     } while (0);
40
41 #define PERF(fmt, arg ...) \
42     do { \
43         struct timeval cur; \
44         struct timeval res; \
45         gettimeofday(&cur, NULL); \
46         if (__g_base_time.tv_sec != 0) { \
47             timersub(&cur, &__g_base_time, &res); \
48             printf("%c[1;31m[%s,%d] %ld sec %ld msec "fmt " %c[0m\n", \
49                    27, __FUNCTION__, __LINE__, \
50                    res.tv_sec, res.tv_usec / 1000,##arg, 27); \
51         } \
52     } while (0);
53
54 #else
55
56 #define INIT_PERF(kb)
57 #define PERF(fmt, arg ...)
58
59 #endif
60
61 #endif
62