]> git.sesse.net Git - ffmpeg/blob - libavutil/log.c
Merge commit '4d012eb541ed7f35e00c87035a470d9f0a24a6e8'
[ffmpeg] / libavutil / log.c
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 <unistd.h>
28 #include <stdlib.h>
29 #include "avutil.h"
30 #include "log.h"
31
32 #if LIBAVUTIL_VERSION_MAJOR > 50
33 static
34 #endif
35 int av_log_level = AV_LOG_INFO;
36 static int flags;
37
38 #if defined(_WIN32) && !defined(__MINGW32CE__)
39 #include <windows.h>
40 static const uint8_t color[] = {12,12,12,14,7,7,7};
41 static int16_t background, attr_orig;
42 static HANDLE con;
43 #define set_color(x)  SetConsoleTextAttribute(con, background | color[x])
44 #define reset_color() SetConsoleTextAttribute(con, attr_orig)
45 #else
46 static const uint8_t color[]={0x41,0x41,0x11,0x03,9,9,9};
47 #define set_color(x)  fprintf(stderr, "\033[%d;3%dm", color[x]>>4, color[x]&15)
48 #define reset_color() fprintf(stderr, "\033[0m")
49 #endif
50 static int use_color=-1;
51
52 #undef fprintf
53 static void colored_fputs(int level, const char *str){
54     if(use_color<0){
55 #if defined(_WIN32) && !defined(__MINGW32CE__)
56         CONSOLE_SCREEN_BUFFER_INFO con_info;
57         con = GetStdHandle(STD_ERROR_HANDLE);
58         use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR") && !getenv("FFMPEG_FORCE_NOCOLOR");
59         if (use_color) {
60             GetConsoleScreenBufferInfo(con, &con_info);
61             attr_orig  = con_info.wAttributes;
62             background = attr_orig & 0xF0;
63         }
64 #elif HAVE_ISATTY
65         use_color= !getenv("NO_COLOR") && !getenv("FFMPEG_FORCE_NOCOLOR") &&
66             (getenv("TERM") && isatty(2) || getenv("FFMPEG_FORCE_COLOR"));
67 #else
68         use_color= getenv("FFMPEG_FORCE_COLOR") && !getenv("NO_COLOR") && !getenv("FFMPEG_FORCE_NOCOLOR");
69 #endif
70     }
71
72     if(use_color){
73         set_color(level);
74     }
75     fputs(str, stderr);
76     if(use_color){
77         reset_color();
78     }
79 }
80
81 const char* av_default_item_name(void* ptr){
82     return (*(AVClass**)ptr)->class_name;
83 }
84
85 static void sanitize(uint8_t *line){
86     while(*line){
87         if(*line < 0x08 || (*line > 0x0D && *line < 0x20))
88             *line='?';
89         line++;
90     }
91 }
92
93 void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
94 {
95     static int print_prefix=1;
96     static int count;
97     static char prev[1024];
98     char line[1024];
99     static int is_atty;
100     AVClass* avc= ptr ? *(AVClass**)ptr : NULL;
101     if(level>av_log_level)
102         return;
103     line[0]=0;
104 #undef fprintf
105     if(print_prefix && avc) {
106         if(avc->version >= (50<<16 | 15<<8 | 3) && avc->parent_log_context_offset){
107             AVClass** parent= *(AVClass***)(((uint8_t*)ptr) + avc->parent_log_context_offset);
108             if(parent && *parent){
109                 snprintf(line, sizeof(line), "[%s @ %p] ", (*parent)->item_name(parent), parent);
110             }
111         }
112         snprintf(line + strlen(line), sizeof(line) - strlen(line), "[%s @ %p] ", avc->item_name(ptr), ptr);
113     }
114
115     vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl);
116
117     print_prefix= line[strlen(line)-1] == '\n';
118
119 #if HAVE_ISATTY
120     if(!is_atty) is_atty= isatty(2) ? 1 : -1;
121 #endif
122
123     if(print_prefix && (flags & AV_LOG_SKIP_REPEATED) && !strcmp(line, prev)){
124         count++;
125         if(is_atty==1)
126             fprintf(stderr, "    Last message repeated %d times\r", count);
127         return;
128     }
129     if(count>0){
130         fprintf(stderr, "    Last message repeated %d times\n", count);
131         count=0;
132     }
133     strcpy(prev, line);
134     sanitize(line);
135     colored_fputs(av_clip(level>>3, 0, 6), line);
136 }
137
138 static void (*av_log_callback)(void*, int, const char*, va_list) = av_log_default_callback;
139
140 void av_log(void* avcl, int level, const char *fmt, ...)
141 {
142     AVClass* avc= avcl ? *(AVClass**)avcl : NULL;
143     va_list vl;
144     va_start(vl, fmt);
145     if(avc && avc->version >= (50<<16 | 15<<8 | 2) && avc->log_level_offset_offset && level>=AV_LOG_FATAL)
146         level += *(int*)(((uint8_t*)avcl) + avc->log_level_offset_offset);
147     av_vlog(avcl, level, fmt, vl);
148     va_end(vl);
149 }
150
151 void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
152 {
153     av_log_callback(avcl, level, fmt, vl);
154 }
155
156 int av_log_get_level(void)
157 {
158     return av_log_level;
159 }
160
161 void av_log_set_level(int level)
162 {
163     av_log_level = level;
164 }
165
166 void av_log_set_flags(int arg)
167 {
168     flags= arg;
169 }
170
171 void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
172 {
173     av_log_callback = callback;
174 }