Mercurial > libavutil.hg
annotate log.c @ 1019:4a16166d580e libavutil
2nd try to fix av_log() repeated detection
author | michael |
---|---|
date | Fri, 24 Sep 2010 15:37:01 +0000 |
parents | fd2dd26fab8a |
children | d5c1288962a1 |
rev | line source |
---|---|
81 | 1 /* |
2 * log functions | |
3 * Copyright (c) 2003 Michel Bardiaux | |
4 * | |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
5 * This file is part of FFmpeg. |
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
6 * |
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
81 | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
81 | 11 * |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
81 | 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 | |
116
d76a36742464
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
88
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
81 | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
20 */ | |
21 | |
22 /** | |
899
0795a743bda1
Remove explicit filename from Doxygen @file commands.
diego
parents:
797
diff
changeset
|
23 * @file |
637 | 24 * logging functions |
81 | 25 */ |
26 | |
901 | 27 #include <unistd.h> |
907
3f0ed02fff47
4th try at getting ansi colors working with a default of color=yes_please.
michael
parents:
905
diff
changeset
|
28 #include <stdlib.h> |
81 | 29 #include "avutil.h" |
628
51e8796fe8fc
C files should #include the header files of the same name.
diego
parents:
543
diff
changeset
|
30 #include "log.h" |
81 | 31 |
797
e2fd9fd487ae
Make av_log_level static at next lavu major version bump.
ramiro
parents:
672
diff
changeset
|
32 #if LIBAVUTIL_VERSION_MAJOR > 50 |
e2fd9fd487ae
Make av_log_level static at next lavu major version bump.
ramiro
parents:
672
diff
changeset
|
33 static |
e2fd9fd487ae
Make av_log_level static at next lavu major version bump.
ramiro
parents:
672
diff
changeset
|
34 #endif |
88
b39b6310973c
removing redundant mess next time we break compatiility
michael
parents:
81
diff
changeset
|
35 int av_log_level = AV_LOG_INFO; |
1019 | 36 static int flags; |
81 | 37 |
940 | 38 #if defined(_WIN32) && !defined(__MINGW32CE__) |
936 | 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; | |
937
823d95e42402
log.c: Use parameter passed to macro instead of the equivalent local variable
ramiro
parents:
936
diff
changeset
|
43 #define set_color(x) SetConsoleTextAttribute(con, background | color[x]) |
936 | 44 #define reset_color() SetConsoleTextAttribute(con, attr_orig) |
45 #else | |
935
096294624d52
Move ansi color array to outside of av_log_default_callback(). Do not pass
ramiro
parents:
934
diff
changeset
|
46 static const uint8_t color[]={0x41,0x41,0x11,0x03,9,9,9}; |
936 | 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 | |
934
252d7a7ee7d5
Rename use_ansi_color to use_color so it is not ANSI-specific.
ramiro
parents:
924
diff
changeset
|
50 static int use_color=-1; |
901 | 51 |
52 #undef fprintf | |
935
096294624d52
Move ansi color array to outside of av_log_default_callback(). Do not pass
ramiro
parents:
934
diff
changeset
|
53 static void colored_fputs(int level, const char *str){ |
934
252d7a7ee7d5
Rename use_ansi_color to use_color so it is not ANSI-specific.
ramiro
parents:
924
diff
changeset
|
54 if(use_color<0){ |
940 | 55 #if defined(_WIN32) && !defined(__MINGW32CE__) |
936 | 56 CONSOLE_SCREEN_BUFFER_INFO con_info; |
57 con = GetStdHandle(STD_ERROR_HANDLE); | |
58 use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR"); | |
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 | |
934
252d7a7ee7d5
Rename use_ansi_color to use_color so it is not ANSI-specific.
ramiro
parents:
924
diff
changeset
|
65 use_color= getenv("TERM") && !getenv("NO_COLOR") && isatty(2); |
907
3f0ed02fff47
4th try at getting ansi colors working with a default of color=yes_please.
michael
parents:
905
diff
changeset
|
66 #else |
934
252d7a7ee7d5
Rename use_ansi_color to use_color so it is not ANSI-specific.
ramiro
parents:
924
diff
changeset
|
67 use_color= 0; |
907
3f0ed02fff47
4th try at getting ansi colors working with a default of color=yes_please.
michael
parents:
905
diff
changeset
|
68 #endif |
3f0ed02fff47
4th try at getting ansi colors working with a default of color=yes_please.
michael
parents:
905
diff
changeset
|
69 } |
3f0ed02fff47
4th try at getting ansi colors working with a default of color=yes_please.
michael
parents:
905
diff
changeset
|
70 |
934
252d7a7ee7d5
Rename use_ansi_color to use_color so it is not ANSI-specific.
ramiro
parents:
924
diff
changeset
|
71 if(use_color){ |
936 | 72 set_color(level); |
901 | 73 } |
74 fputs(str, stderr); | |
934
252d7a7ee7d5
Rename use_ansi_color to use_color so it is not ANSI-specific.
ramiro
parents:
924
diff
changeset
|
75 if(use_color){ |
936 | 76 reset_color(); |
901 | 77 } |
78 } | |
79 | |
922
2acb0b1891c0
av_default_item_name() so Simply AVClasses need 1 function less.
michael
parents:
917
diff
changeset
|
80 const char* av_default_item_name(void* ptr){ |
2acb0b1891c0
av_default_item_name() so Simply AVClasses need 1 function less.
michael
parents:
917
diff
changeset
|
81 return (*(AVClass**)ptr)->class_name; |
2acb0b1891c0
av_default_item_name() so Simply AVClasses need 1 function less.
michael
parents:
917
diff
changeset
|
82 } |
2acb0b1891c0
av_default_item_name() so Simply AVClasses need 1 function less.
michael
parents:
917
diff
changeset
|
83 |
163 | 84 void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl) |
81 | 85 { |
86 static int print_prefix=1; | |
672
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
87 static int count; |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
88 static char line[1024], prev[1024]; |
1017
fd2dd26fab8a
Limit av_log repeat detection to terminals so as to avoid filling files with
michael
parents:
1001
diff
changeset
|
89 static int detect_repeats; |
81 | 90 AVClass* avc= ptr ? *(AVClass**)ptr : NULL; |
91 if(level>av_log_level) | |
92 return; | |
924 | 93 line[0]=0; |
81 | 94 #undef fprintf |
95 if(print_prefix && avc) { | |
924 | 96 if(avc->version >= (50<<16 | 15<<8 | 3) && avc->parent_log_context_offset){ |
97 AVClass** parent= *(AVClass***)(((uint8_t*)ptr) + avc->parent_log_context_offset); | |
98 if(parent && *parent){ | |
951 | 99 snprintf(line, sizeof(line), "[%s @ %p] ", (*parent)->item_name(parent), parent); |
924 | 100 } |
101 } | |
951 | 102 snprintf(line + strlen(line), sizeof(line) - strlen(line), "[%s @ %p] ", avc->item_name(ptr), ptr); |
924 | 103 } |
672
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
104 |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
105 vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl); |
81 | 106 |
672
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
107 print_prefix= line[strlen(line)-1] == '\n'; |
1017
fd2dd26fab8a
Limit av_log repeat detection to terminals so as to avoid filling files with
michael
parents:
1001
diff
changeset
|
108 |
fd2dd26fab8a
Limit av_log repeat detection to terminals so as to avoid filling files with
michael
parents:
1001
diff
changeset
|
109 #if HAVE_ISATTY |
fd2dd26fab8a
Limit av_log repeat detection to terminals so as to avoid filling files with
michael
parents:
1001
diff
changeset
|
110 if(!detect_repeats) detect_repeats= isatty(2) ? 1 : -1; |
fd2dd26fab8a
Limit av_log repeat detection to terminals so as to avoid filling files with
michael
parents:
1001
diff
changeset
|
111 #endif |
fd2dd26fab8a
Limit av_log repeat detection to terminals so as to avoid filling files with
michael
parents:
1001
diff
changeset
|
112 |
1019 | 113 if(print_prefix && (flags & AV_LOG_SKIP_REPEATED) && !strcmp(line, prev)){ |
672
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
114 count++; |
1019 | 115 if(detect_repeats==1) |
1001 | 116 fprintf(stderr, " Last message repeated %d times\r", count); |
672
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
117 return; |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
118 } |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
119 if(count>0){ |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
120 fprintf(stderr, " Last message repeated %d times\n", count); |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
121 count=0; |
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
122 } |
935
096294624d52
Move ansi color array to outside of av_log_default_callback(). Do not pass
ramiro
parents:
934
diff
changeset
|
123 colored_fputs(av_clip(level>>3, 0, 6), line); |
672
4cd8f715ab17
Compact repeated messages to "Last message repeated x times".
michael
parents:
642
diff
changeset
|
124 strcpy(prev, line); |
81 | 125 } |
126 | |
127 static void (*av_log_callback)(void*, int, const char*, va_list) = av_log_default_callback; | |
128 | |
129 void av_log(void* avcl, int level, const char *fmt, ...) | |
130 { | |
917 | 131 AVClass* avc= avcl ? *(AVClass**)avcl : NULL; |
81 | 132 va_list vl; |
133 va_start(vl, fmt); | |
917 | 134 if(avc && avc->version >= (50<<16 | 15<<8 | 2) && avc->log_level_offset_offset && level>=AV_LOG_FATAL) |
135 level += *(int*)(((uint8_t*)avcl) + avc->log_level_offset_offset); | |
81 | 136 av_vlog(avcl, level, fmt, vl); |
137 va_end(vl); | |
138 } | |
139 | |
140 void av_vlog(void* avcl, int level, const char *fmt, va_list vl) | |
141 { | |
142 av_log_callback(avcl, level, fmt, vl); | |
143 } | |
144 | |
145 int av_log_get_level(void) | |
146 { | |
147 return av_log_level; | |
148 } | |
149 | |
150 void av_log_set_level(int level) | |
151 { | |
152 av_log_level = level; | |
153 } | |
154 | |
1019 | 155 void av_log_set_flags(int arg) |
156 { | |
157 flags= arg; | |
158 } | |
159 | |
81 | 160 void av_log_set_callback(void (*callback)(void*, int, const char*, va_list)) |
161 { | |
162 av_log_callback = callback; | |
163 } |