| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * log functions | 
					
						
							|  |  |  |  * Copyright (c) 2003 Michel Bardiaux | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2009-01-28 23:16:49 +00:00
										 |  |  |  * logging functions | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-22 18:58:39 +00:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2010-04-23 21:27:26 +00:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | #include "avutil.h"
 | 
					
						
							| 
									
										
										
										
											2009-01-25 22:40:43 +00:00
										 |  |  | #include "log.h"
 | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-12 21:17:26 +02:00
										 |  |  | static int av_log_level = AV_LOG_INFO; | 
					
						
							| 
									
										
										
										
											2010-09-24 15:37:01 +00:00
										 |  |  | static int flags; | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-14 08:51:46 +00:00
										 |  |  | #if defined(_WIN32) && !defined(__MINGW32CE__)
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  | #include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  | static const uint8_t color[] = { 12, 12, 12, 14, 7, 7, 7 }; | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  | static int16_t background, attr_orig; | 
					
						
							|  |  |  | static HANDLE con; | 
					
						
							| 
									
										
										
										
											2010-06-09 18:30:50 +00:00
										 |  |  | #define set_color(x)  SetConsoleTextAttribute(con, background | color[x])
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  | #define reset_color() SetConsoleTextAttribute(con, attr_orig)
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  | static const uint8_t color[] = { 0x41, 0x41, 0x11, 0x03, 9, 9, 9 }; | 
					
						
							|  |  |  | #define set_color(x)  fprintf(stderr, "\033[%d;3%dm", color[x] >> 4, color[x]&15)
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  | #define reset_color() fprintf(stderr, "\033[0m")
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  | static int use_color = -1; | 
					
						
							| 
									
										
										
										
											2010-04-22 18:58:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #undef fprintf
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  | static void colored_fputs(int level, const char *str) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (use_color < 0) { | 
					
						
							| 
									
										
										
										
											2010-06-14 08:51:46 +00:00
										 |  |  | #if defined(_WIN32) && !defined(__MINGW32CE__)
 | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  |         CONSOLE_SCREEN_BUFFER_INFO con_info; | 
					
						
							|  |  |  |         con = GetStdHandle(STD_ERROR_HANDLE); | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |         use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR") && | 
					
						
							|  |  |  |                     !getenv("AV_LOG_FORCE_NOCOLOR"); | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  |         if (use_color) { | 
					
						
							|  |  |  |             GetConsoleScreenBufferInfo(con, &con_info); | 
					
						
							|  |  |  |             attr_orig  = con_info.wAttributes; | 
					
						
							|  |  |  |             background = attr_orig & 0xF0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #elif HAVE_ISATTY
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |         use_color = !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR") && | 
					
						
							|  |  |  |                     (getenv("TERM") && isatty(2) || | 
					
						
							|  |  |  |                      getenv("AV_LOG_FORCE_COLOR")); | 
					
						
							| 
									
										
										
										
											2010-04-23 21:27:26 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |         use_color = getenv("AV_LOG_FORCE_COLOR") && !getenv("NO_COLOR") && | 
					
						
							|  |  |  |                    !getenv("AV_LOG_FORCE_NOCOLOR"); | 
					
						
							| 
									
										
										
										
											2010-04-23 21:27:26 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     if (use_color) { | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  |         set_color(level); | 
					
						
							| 
									
										
										
										
											2010-04-22 18:58:39 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     fputs(str, stderr); | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     if (use_color) { | 
					
						
							| 
									
										
										
										
											2010-06-09 18:13:01 +00:00
										 |  |  |         reset_color(); | 
					
						
							| 
									
										
										
										
											2010-04-22 18:58:39 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  | const char *av_default_item_name(void *ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return (*(AVClass **) ptr)->class_name; | 
					
						
							| 
									
										
										
										
											2010-05-19 22:45:04 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-25 00:20:07 +01:00
										 |  |  | static void sanitize(uint8_t *line){ | 
					
						
							|  |  |  |     while(*line){ | 
					
						
							|  |  |  |         if(*line < 0x08 || (*line > 0x0D && *line < 0x20)) | 
					
						
							|  |  |  |             *line='?'; | 
					
						
							|  |  |  |         line++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-13 17:10:34 +00:00
										 |  |  | void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl) | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     static int print_prefix = 1; | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |     static int count; | 
					
						
							| 
									
										
										
										
											2011-03-25 02:24:32 +01:00
										 |  |  |     static char prev[1024]; | 
					
						
							|  |  |  |     char line[1024]; | 
					
						
							| 
									
										
										
										
											2010-09-24 16:18:10 +00:00
										 |  |  |     static int is_atty; | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     AVClass* avc = ptr ? *(AVClass **) ptr : NULL; | 
					
						
							|  |  |  |     if (level > av_log_level) | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     line[0] = 0; | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | #undef fprintf
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     if (print_prefix && avc) { | 
					
						
							| 
									
										
										
										
											2011-04-20 17:18:27 +02:00
										 |  |  |         if (avc->parent_log_context_offset) { | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |             AVClass** parent = *(AVClass ***) (((uint8_t *) ptr) + | 
					
						
							|  |  |  |                                    avc->parent_log_context_offset); | 
					
						
							|  |  |  |             if (parent && *parent) { | 
					
						
							|  |  |  |                 snprintf(line, sizeof(line), "[%s @ %p] ", | 
					
						
							|  |  |  |                          (*parent)->item_name(parent), parent); | 
					
						
							| 
									
										
										
										
											2010-05-19 22:51:38 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |         snprintf(line + strlen(line), sizeof(line) - strlen(line), "[%s @ %p] ", | 
					
						
							|  |  |  |                  avc->item_name(ptr), ptr); | 
					
						
							| 
									
										
										
										
											2010-05-19 22:51:38 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |     vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl); | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     print_prefix = strlen(line) && line[strlen(line) - 1] == '\n'; | 
					
						
							| 
									
										
										
										
											2010-09-14 00:17:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if HAVE_ISATTY
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     if (!is_atty) | 
					
						
							|  |  |  |         is_atty = isatty(2) ? 1 : -1; | 
					
						
							| 
									
										
										
										
											2010-09-14 00:17:58 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-05 00:11:57 +01:00
										 |  |  |     if (print_prefix && (flags & AV_LOG_SKIP_REPEATED) && !strcmp(line, prev)){ | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |         count++; | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |         if (is_atty == 1) | 
					
						
							| 
									
										
										
										
											2010-09-24 16:18:40 +00:00
										 |  |  |             fprintf(stderr, "    Last message repeated %d times\r", count); | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     if (count > 0) { | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |         fprintf(stderr, "    Last message repeated %d times\n", count); | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |         count = 0; | 
					
						
							| 
									
										
										
										
											2009-02-22 17:53:14 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     strcpy(prev, line); | 
					
						
							| 
									
										
										
										
											2011-03-25 00:20:07 +01:00
										 |  |  |     sanitize(line); | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     colored_fputs(av_clip(level >> 3, 0, 6), line); | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  | static void (*av_log_callback)(void*, int, const char*, va_list) = | 
					
						
							|  |  |  |     av_log_default_callback; | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void av_log(void* avcl, int level, const char *fmt, ...) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     AVClass* avc = avcl ? *(AVClass **) avcl : NULL; | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |     va_list vl; | 
					
						
							|  |  |  |     va_start(vl, fmt); | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     if (avc && avc->version >= (50 << 16 | 15 << 8 | 2) && | 
					
						
							|  |  |  |         avc->log_level_offset_offset && level >= AV_LOG_FATAL) | 
					
						
							|  |  |  |         level += *(int *) (((uint8_t *) avcl) + avc->log_level_offset_offset); | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  |     av_vlog(avcl, level, fmt, vl); | 
					
						
							|  |  |  |     va_end(vl); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void av_vlog(void* avcl, int level, const char *fmt, va_list vl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     av_log_callback(avcl, level, fmt, vl); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int av_log_get_level(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return av_log_level; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void av_log_set_level(int level) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     av_log_level = level; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-24 15:37:01 +00:00
										 |  |  | void av_log_set_flags(int arg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-03 20:25:57 +02:00
										 |  |  |     flags = arg; | 
					
						
							| 
									
										
										
										
											2010-09-24 15:37:01 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-18 11:00:55 +00:00
										 |  |  | void av_log_set_callback(void (*callback)(void*, int, const char*, va_list)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     av_log_callback = callback; | 
					
						
							|  |  |  | } |