compositor-drm: Work around page flip not setting tiling mode on BYT
[platform/upstream/weston.git] / src / log.c
1 /*
2  * Copyright © 2012 Martin Minarik
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and
5  * its documentation for any purpose is hereby granted without fee, provided
6  * that the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation, and that the name of the copyright holders not be used in
9  * advertising or publicity pertaining to distribution of the software
10  * without specific, written prior permission.  The copyright holders make
11  * no representations about the suitability of this software for any
12  * purpose.  It is provided "as is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21  */
22
23 #include "config.h"
24
25 #include <stdio.h>
26 #include <stdarg.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sys/time.h>
30 #include <time.h>
31
32 #include <wayland-util.h>
33
34 #include "compositor.h"
35
36 static FILE *weston_logfile = NULL;
37
38 static int cached_tm_mday = -1;
39
40 static int weston_log_timestamp(void)
41 {
42         struct timeval tv;
43         struct tm *brokendown_time;
44         char string[128];
45
46         gettimeofday(&tv, NULL);
47
48         brokendown_time = localtime(&tv.tv_sec);
49         if (brokendown_time == NULL)
50                 return fprintf(weston_logfile, "[(NULL)localtime] ");
51
52         if (brokendown_time->tm_mday != cached_tm_mday) {
53                 strftime(string, sizeof string, "%Y-%m-%d %Z", brokendown_time);
54                 fprintf(weston_logfile, "Date: %s\n", string);
55
56                 cached_tm_mday = brokendown_time->tm_mday;
57         }
58
59         strftime(string, sizeof string, "%H:%M:%S", brokendown_time);
60
61         return fprintf(weston_logfile, "[%s.%03li] ", string, tv.tv_usec/1000);
62 }
63
64 static void
65 custom_handler(const char *fmt, va_list arg)
66 {
67         weston_log_timestamp();
68         fprintf(weston_logfile, "libwayland: ");
69         vfprintf(weston_logfile, fmt, arg);
70 }
71
72 void
73 weston_log_file_open(const char *filename)
74 {
75         wl_log_set_handler_server(custom_handler);
76
77         if (filename != NULL)
78                 weston_logfile = fopen(filename, "a");
79
80         if (weston_logfile == NULL)
81                 weston_logfile = stderr;
82         else
83                 setvbuf(weston_logfile, NULL, _IOLBF, 256);
84 }
85
86 void
87 weston_log_file_close()
88 {
89         if ((weston_logfile != stderr) && (weston_logfile != NULL))
90                 fclose(weston_logfile);
91         weston_logfile = stderr;
92 }
93
94 WL_EXPORT int
95 weston_vlog(const char *fmt, va_list ap)
96 {
97         int l;
98
99         l = weston_log_timestamp();
100         l += vfprintf(weston_logfile, fmt, ap);
101
102         return l;
103 }
104
105 WL_EXPORT int
106 weston_log(const char *fmt, ...)
107 {
108         int l;
109         va_list argp;
110
111         va_start(argp, fmt);
112         l = weston_vlog(fmt, argp);
113         va_end(argp);
114
115         return l;
116 }
117
118 WL_EXPORT int
119 weston_vlog_continue(const char *fmt, va_list argp)
120 {
121         return vfprintf(weston_logfile, fmt, argp);
122 }
123
124 WL_EXPORT int
125 weston_log_continue(const char *fmt, ...)
126 {
127         int l;
128         va_list argp;
129
130         va_start(argp, fmt);
131         l = weston_vlog_continue(fmt, argp);
132         va_end(argp);
133
134         return l;
135 }