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 <stdlib.h>
39
41
44
45 #if HAVE_SETCONSOLETEXTATTRIBUTE
46 #include <windows.h>
66 };
67
68 static int16_t background, attr_orig;
69 static HANDLE con;
70 #define set_color(x) SetConsoleTextAttribute(con, background | color[x])
71 #define set_256color set_color
72 #define reset_color() SetConsoleTextAttribute(con, attr_orig)
73 #else
74
94 };
95
96 #define set_color(x) fprintf(stderr, "033円[%d;3%dm", (color[x] >> 4) & 15, color[x] & 15)
97 #define set_256color(x) fprintf(stderr, "033円[48;5;%dm033円[38;5;%dm", (color[x] >> 16) & 0xff, (color[x] >> 8) & 0xff)
98 #define reset_color() fprintf(stderr, "033円[0m")
99 #endif
101
103 {
105 #if HAVE_SETCONSOLETEXTATTRIBUTE
106 CONSOLE_SCREEN_BUFFER_INFO con_info;
107 con = GetStdHandle(STD_ERROR_HANDLE);
108 use_color = (con != INVALID_HANDLE_VALUE) && !getenv(
"NO_COLOR") &&
109 !getenv("AV_LOG_FORCE_NOCOLOR");
111 GetConsoleScreenBufferInfo(con, &con_info);
112 attr_orig = con_info.wAttributes;
113 background = attr_orig & 0xF0;
114 }
115 #elif HAVE_ISATTY
116 use_color = !getenv(
"NO_COLOR") && !getenv(
"AV_LOG_FORCE_NOCOLOR") &&
117 (getenv("TERM") && isatty(2) ||
118 getenv("AV_LOG_FORCE_COLOR"));
119 if (getenv("AV_LOG_FORCE_256COLOR"))
121 #else
122 use_color = getenv(
"AV_LOG_FORCE_COLOR") && !getenv(
"NO_COLOR") &&
123 !getenv("AV_LOG_FORCE_NOCOLOR");
124 #endif
125 }
126
131 fputs(str, stderr);
134 }
135 }
136
138 {
139 return (*(
AVClass **) ptr)->class_name;
140 }
141
143 {
144 return (*(
AVClass **) ptr)->category;
145 }
146
148 while(*line){
149 if(*line < 0x08 || (*line > 0x0D && *line < 0x20))
150 *line='?';
151 line++;
152 }
153 }
154
157 if( !avc
159 || avc->
version < (51 << 16 | 59 << 8)
161
164
166 }
167
169 char part[3][
LINE_SZ],
int part_size,
int *print_prefix,
int type[2])
170 {
172 part[0][0] = part[1][0] = part[2][0] = 0;
174 if (*print_prefix && avc) {
178 if (parent && *parent) {
179 snprintf(part[0], part_size,
"[%s @ %p] ",
180 (*parent)->item_name(parent), parent);
182 }
183 }
184 snprintf(part[1], part_size,
"[%s @ %p] ",
187 }
188
190
191 *print_prefix = strlen(part[2]) && part[2][strlen(part[2]) - 1] == '\n';
192 }
193
195 char *
line,
int line_size,
int *print_prefix)
196 {
198 format_line(ptr, level, fmt, vl, part,
sizeof(part[0]), print_prefix,
NULL);
199 snprintf(line, line_size,
"%s%s%s", part[0], part[1], part[2]);
200 }
201
203 {
204 static int print_prefix = 1;
205 static int count;
209 static int is_atty;
210 int type[2];
211
213 return;
214 format_line(ptr, level, fmt, vl, part,
sizeof(part[0]), &print_prefix, type);
215 snprintf(line,
sizeof(line),
"%s%s%s", part[0], part[1], part[2]);
216
217 #if HAVE_ISATTY
218 if (!is_atty)
219 is_atty = isatty(2) ? 1 : -1;
220 #endif
221
223 count++;
224 if (is_atty == 1)
225 fprintf(stderr, " Last message repeated %d times\r", count);
226 return;
227 }
228 if (count > 0) {
229 fprintf(stderr, " Last message repeated %d times\n", count);
230 count = 0;
231 }
232 strcpy(prev, line);
239 }
240
243
245 {
247 va_list vl;
248 va_start(vl, fmt);
249 if (avc && avc->
version >= (50 << 16 | 15 << 8 | 2) &&
253 va_end(vl);
254 }
255
257 {
260 }
261
263 {
265 }
266
268 {
270 }
271
273 {
275 }
276
278 {
280 }