FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
log.c
Go to the documentation of this file.
1 /*
2  * log functions
3  * Copyright (c) 2003 Michel Bardiaux
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * logging functions
25  */
26 
27 #include "config.h"
28 
29 #if HAVE_UNISTD_H
30 #include <unistd.h>
31 #endif
32 #if HAVE_IO_H
33 #include <io.h>
34 #endif
35 #include <stdarg.h>
36 #include <stdlib.h>
37 #include "avutil.h"
38 #include "bprint.h"
39 #include "common.h"
40 #include "internal.h"
41 #include "log.h"
42 
43 #if HAVE_PTHREADS
44 #include <pthread.h>
45 static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
46 #endif
47 
48 #define LINE_SZ 1024
49 
51 static int flags;
52 
53 #if HAVE_SETCONSOLETEXTATTRIBUTE
54 #include <windows.h>
55 static const uint8_t color[16 + AV_CLASS_CATEGORY_NB] = {
56  [AV_LOG_PANIC /8] = 12,
57  [AV_LOG_FATAL /8] = 12,
58  [AV_LOG_ERROR /8] = 12,
59  [AV_LOG_WARNING/8] = 14,
60  [AV_LOG_INFO /8] = 7,
61  [AV_LOG_VERBOSE/8] = 10,
62  [AV_LOG_DEBUG /8] = 10,
63  [16+AV_CLASS_CATEGORY_NA ] = 7,
64  [16+AV_CLASS_CATEGORY_INPUT ] = 13,
65  [16+AV_CLASS_CATEGORY_OUTPUT ] = 5,
66  [16+AV_CLASS_CATEGORY_MUXER ] = 13,
67  [16+AV_CLASS_CATEGORY_DEMUXER ] = 5,
68  [16+AV_CLASS_CATEGORY_ENCODER ] = 11,
69  [16+AV_CLASS_CATEGORY_DECODER ] = 3,
70  [16+AV_CLASS_CATEGORY_FILTER ] = 10,
74 };
75 
76 static int16_t background, attr_orig;
77 static HANDLE con;
78 #define set_color(x) SetConsoleTextAttribute(con, background | color[x])
79 #define set_256color set_color
80 #define reset_color() SetConsoleTextAttribute(con, attr_orig)
81 #else
82 
83 static const uint32_t color[16 + AV_CLASS_CATEGORY_NB] = {
84  [AV_LOG_PANIC /8] = 52 << 16 | 196 << 8 | 0x41,
85  [AV_LOG_FATAL /8] = 208 << 8 | 0x41,
86  [AV_LOG_ERROR /8] = 196 << 8 | 0x11,
87  [AV_LOG_WARNING/8] = 226 << 8 | 0x03,
88  [AV_LOG_INFO /8] = 253 << 8 | 0x09,
89  [AV_LOG_VERBOSE/8] = 40 << 8 | 0x02,
90  [AV_LOG_DEBUG /8] = 34 << 8 | 0x02,
91  [16+AV_CLASS_CATEGORY_NA ] = 250 << 8 | 0x09,
92  [16+AV_CLASS_CATEGORY_INPUT ] = 219 << 8 | 0x15,
93  [16+AV_CLASS_CATEGORY_OUTPUT ] = 201 << 8 | 0x05,
94  [16+AV_CLASS_CATEGORY_MUXER ] = 213 << 8 | 0x15,
95  [16+AV_CLASS_CATEGORY_DEMUXER ] = 207 << 8 | 0x05,
96  [16+AV_CLASS_CATEGORY_ENCODER ] = 51 << 8 | 0x16,
97  [16+AV_CLASS_CATEGORY_DECODER ] = 39 << 8 | 0x06,
98  [16+AV_CLASS_CATEGORY_FILTER ] = 155 << 8 | 0x12,
99  [16+AV_CLASS_CATEGORY_BITSTREAM_FILTER] = 192 << 8 | 0x14,
100  [16+AV_CLASS_CATEGORY_SWSCALER ] = 153 << 8 | 0x14,
101  [16+AV_CLASS_CATEGORY_SWRESAMPLER ] = 147 << 8 | 0x14,
102 };
103 
104 #define set_color(x) fprintf(stderr, "\033[%d;3%dm", (color[x] >> 4) & 15, color[x] & 15)
105 #define set_256color(x) fprintf(stderr, "\033[48;5;%dm\033[38;5;%dm", (color[x] >> 16) & 0xff, (color[x] >> 8) & 0xff)
106 #define reset_color() fprintf(stderr, "\033[0m")
107 #endif
108 static int use_color = -1;
109 
110 static void colored_fputs(int level, const char *str)
111 {
112  if (!*str)
113  return;
114 
115  if (use_color < 0) {
116 #if HAVE_SETCONSOLETEXTATTRIBUTE
117  CONSOLE_SCREEN_BUFFER_INFO con_info;
118  con = GetStdHandle(STD_ERROR_HANDLE);
119  use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR") &&
120  !getenv("AV_LOG_FORCE_NOCOLOR");
121  if (use_color) {
122  GetConsoleScreenBufferInfo(con, &con_info);
123  attr_orig = con_info.wAttributes;
124  background = attr_orig & 0xF0;
125  }
126 #elif HAVE_ISATTY
127  use_color = !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR") &&
128  (getenv("TERM") && isatty(2) ||
129  getenv("AV_LOG_FORCE_COLOR"));
130  if (getenv("AV_LOG_FORCE_256COLOR"))
131  use_color *= 256;
132 #else
133  use_color = getenv("AV_LOG_FORCE_COLOR") && !getenv("NO_COLOR") &&
134  !getenv("AV_LOG_FORCE_NOCOLOR");
135 #endif
136  }
137 
138  if (use_color == 1) {
139  set_color(level);
140  } else if (use_color == 256)
141  set_256color(level);
142  fputs(str, stderr);
143  if (use_color) {
144  reset_color();
145  }
146 }
147 
148 const char *av_default_item_name(void *ptr)
149 {
150  return (*(AVClass **) ptr)->class_name;
151 }
152 
154 {
155  return (*(AVClass **) ptr)->category;
156 }
157 
158 static void sanitize(uint8_t *line){
159  while(*line){
160  if(*line < 0x08 || (*line > 0x0D && *line < 0x20))
161  *line='?';
162  line++;
163  }
164 }
165 
166 static int get_category(void *ptr){
167  AVClass *avc = *(AVClass **) ptr;
168  if( !avc
169  || (avc->version&0xFF)<100
170  || avc->version < (51 << 16 | 59 << 8)
171  || avc->category >= AV_CLASS_CATEGORY_NB) return AV_CLASS_CATEGORY_NA + 16;
172 
173  if(avc->get_category)
174  return avc->get_category(ptr) + 16;
175 
176  return avc->category + 16;
177 }
178 
179 static void format_line(void *ptr, int level, const char *fmt, va_list vl,
180  AVBPrint part[3], int *print_prefix, int type[2])
181 {
182  AVClass* avc = ptr ? *(AVClass **) ptr : NULL;
183  av_bprint_init(part+0, 0, 1);
184  av_bprint_init(part+1, 0, 1);
185  av_bprint_init(part+2, 0, 65536);
186 
187  if(type) type[0] = type[1] = AV_CLASS_CATEGORY_NA + 16;
188  if (*print_prefix && avc) {
189  if (avc->parent_log_context_offset) {
190  AVClass** parent = *(AVClass ***) (((uint8_t *) ptr) +
192  if (parent && *parent) {
193  av_bprintf(part+0, "[%s @ %p] ",
194  (*parent)->item_name(parent), parent);
195  if(type) type[0] = get_category(parent);
196  }
197  }
198  av_bprintf(part+1, "[%s @ %p] ",
199  avc->item_name(ptr), ptr);
200  if(type) type[1] = get_category(ptr);
201  }
202 
203  av_vbprintf(part+2, fmt, vl);
204 
205  if(*part[0].str || *part[1].str || *part[2].str) {
206  char lastc = part[2].len && part[2].len <= part[2].size ? part[2].str[part[2].len - 1] : 0;
207  *print_prefix = lastc == '\n' || lastc == '\r';
208  }
209 }
210 
211 void av_log_format_line(void *ptr, int level, const char *fmt, va_list vl,
212  char *line, int line_size, int *print_prefix)
213 {
214  AVBPrint part[3];
215  format_line(ptr, level, fmt, vl, part, print_prefix, NULL);
216  snprintf(line, line_size, "%s%s%s", part[0].str, part[1].str, part[2].str);
217  av_bprint_finalize(part+2, NULL);
218 }
219 
220 void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
221 {
222  static int print_prefix = 1;
223  static int count;
224  static char prev[LINE_SZ];
225  AVBPrint part[3];
226  char line[LINE_SZ];
227  static int is_atty;
228  int type[2];
229 
230  if (level > av_log_level)
231  return;
232 #if HAVE_PTHREADS
234 #endif
235 
236  format_line(ptr, level, fmt, vl, part, &print_prefix, type);
237  snprintf(line, sizeof(line), "%s%s%s", part[0].str, part[1].str, part[2].str);
238 
239 #if HAVE_ISATTY
240  if (!is_atty)
241  is_atty = isatty(2) ? 1 : -1;
242 #endif
243 
244  if (print_prefix && (flags & AV_LOG_SKIP_REPEATED) && !strcmp(line, prev) &&
245  *line && line[strlen(line) - 1] != '\r'){
246  count++;
247  if (is_atty == 1)
248  fprintf(stderr, " Last message repeated %d times\r", count);
249  goto end;
250  }
251  if (count > 0) {
252  fprintf(stderr, " Last message repeated %d times\n", count);
253  count = 0;
254  }
255  strcpy(prev, line);
256  sanitize(part[0].str);
257  colored_fputs(type[0], part[0].str);
258  sanitize(part[1].str);
259  colored_fputs(type[1], part[1].str);
260  sanitize(part[2].str);
261  colored_fputs(av_clip(level >> 3, 0, 6), part[2].str);
262 end:
263  av_bprint_finalize(part+2, NULL);
264 #if HAVE_PTHREADS
266 #endif
267 }
268 
269 static void (*av_log_callback)(void*, int, const char*, va_list) =
271 
272 void av_log(void* avcl, int level, const char *fmt, ...)
273 {
274  AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
275  va_list vl;
276  va_start(vl, fmt);
277  if (avc && avc->version >= (50 << 16 | 15 << 8 | 2) &&
278  avc->log_level_offset_offset && level >= AV_LOG_FATAL)
279  level += *(int *) (((uint8_t *) avcl) + avc->log_level_offset_offset);
280  av_vlog(avcl, level, fmt, vl);
281  va_end(vl);
282 }
283 
284 void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
285 {
286  void (*log_callback)(void*, int, const char*, va_list) = av_log_callback;
287  if (log_callback)
288  log_callback(avcl, level, fmt, vl);
289 }
290 
292 {
293  return av_log_level;
294 }
295 
297 {
299 }
300 
302 {
303  flags = arg;
304 }
305 
306 void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
307 {
309 }
310 
311 static void missing_feature_sample(int sample, void *avc, const char *msg,
312  va_list argument_list)
313 {
314  av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
315  av_log(avc, AV_LOG_WARNING, " is not implemented. Update your FFmpeg "
316  "version to the newest one from Git. If the problem still "
317  "occurs, it means that your file has a feature which has not "
318  "been implemented.\n");
319  if (sample)
320  av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
321  "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
322  "and contact the ffmpeg-devel mailing list.\n");
323 }
324 
325 void avpriv_request_sample(void *avc, const char *msg, ...)
326 {
327  va_list argument_list;
328 
329  va_start(argument_list, msg);
330  missing_feature_sample(1, avc, msg, argument_list);
331  va_end(argument_list);
332 }
333 
334 void avpriv_report_missing_feature(void *avc, const char *msg, ...)
335 {
336  va_list argument_list;
337 
338  va_start(argument_list, msg);
339  missing_feature_sample(0, avc, msg, argument_list);
340  va_end(argument_list);
341 }