You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

270 lines
8.0KB

  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. * @file
  23. * logging functions
  24. */
  25. #include "config.h"
  26. #if HAVE_ISATTY
  27. #include <unistd.h>
  28. #endif
  29. #include <stdlib.h>
  30. #include "avutil.h"
  31. #include "log.h"
  32. #define LINE_SZ 1024
  33. static int av_log_level = AV_LOG_INFO;
  34. static int flags;
  35. #if defined(_WIN32) && !defined(__MINGW32CE__)
  36. #include <windows.h>
  37. static const uint8_t color[16 + AV_CLASS_CATEGORY_NB] = {
  38. [AV_LOG_PANIC /8] = 12,
  39. [AV_LOG_FATAL /8] = 12,
  40. [AV_LOG_ERROR /8] = 12,
  41. [AV_LOG_WARNING/8] = 14,
  42. [AV_LOG_INFO /8] = 7,
  43. [AV_LOG_VERBOSE/8] = 10,
  44. [AV_LOG_DEBUG /8] = 10,
  45. [16+AV_CLASS_CATEGORY_NA ] = 7,
  46. [16+AV_CLASS_CATEGORY_INPUT ] = 13,
  47. [16+AV_CLASS_CATEGORY_OUTPUT ] = 5,
  48. [16+AV_CLASS_CATEGORY_MUXER ] = 13,
  49. [16+AV_CLASS_CATEGORY_DEMUXER ] = 5,
  50. [16+AV_CLASS_CATEGORY_ENCODER ] = 11,
  51. [16+AV_CLASS_CATEGORY_DECODER ] = 3,
  52. [16+AV_CLASS_CATEGORY_FILTER ] = 1,
  53. [16+AV_CLASS_CATEGORY_BITSTREAM_FILTER] = 9,
  54. };
  55. static int16_t background, attr_orig;
  56. static HANDLE con;
  57. #define set_color(x) SetConsoleTextAttribute(con, background | color[x])
  58. #define reset_color() SetConsoleTextAttribute(con, attr_orig)
  59. #else
  60. static const uint8_t color[16 + AV_CLASS_CATEGORY_NB] = {
  61. [AV_LOG_PANIC /8] = 0x41,
  62. [AV_LOG_FATAL /8] = 0x41,
  63. [AV_LOG_ERROR /8] = 0x11,
  64. [AV_LOG_WARNING/8] = 0x03,
  65. [AV_LOG_INFO /8] = 9,
  66. [AV_LOG_VERBOSE/8] = 0x02,
  67. [AV_LOG_DEBUG /8] = 0x02,
  68. [16+AV_CLASS_CATEGORY_NA ] = 9,
  69. [16+AV_CLASS_CATEGORY_INPUT ] = 0x15,
  70. [16+AV_CLASS_CATEGORY_OUTPUT ] = 0x05,
  71. [16+AV_CLASS_CATEGORY_MUXER ] = 0x15,
  72. [16+AV_CLASS_CATEGORY_DEMUXER ] = 0x05,
  73. [16+AV_CLASS_CATEGORY_ENCODER ] = 0x16,
  74. [16+AV_CLASS_CATEGORY_DECODER ] = 0x06,
  75. [16+AV_CLASS_CATEGORY_FILTER ] = 0x04,
  76. [16+AV_CLASS_CATEGORY_BITSTREAM_FILTER] = 0x14,
  77. };
  78. #define set_color(x) fprintf(stderr, "\033[%d;3%dm", color[x] >> 4, color[x]&15)
  79. #define reset_color() fprintf(stderr, "\033[0m")
  80. #endif
  81. static int use_color = -1;
  82. #undef fprintf
  83. static void colored_fputs(int level, const char *str)
  84. {
  85. if (use_color < 0) {
  86. #if defined(_WIN32) && !defined(__MINGW32CE__)
  87. CONSOLE_SCREEN_BUFFER_INFO con_info;
  88. con = GetStdHandle(STD_ERROR_HANDLE);
  89. use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR") &&
  90. !getenv("AV_LOG_FORCE_NOCOLOR");
  91. if (use_color) {
  92. GetConsoleScreenBufferInfo(con, &con_info);
  93. attr_orig = con_info.wAttributes;
  94. background = attr_orig & 0xF0;
  95. }
  96. #elif HAVE_ISATTY
  97. use_color = !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR") &&
  98. (getenv("TERM") && isatty(2) ||
  99. getenv("AV_LOG_FORCE_COLOR"));
  100. #else
  101. use_color = getenv("AV_LOG_FORCE_COLOR") && !getenv("NO_COLOR") &&
  102. !getenv("AV_LOG_FORCE_NOCOLOR");
  103. #endif
  104. }
  105. if (use_color) {
  106. set_color(level);
  107. }
  108. fputs(str, stderr);
  109. if (use_color) {
  110. reset_color();
  111. }
  112. }
  113. const char *av_default_item_name(void *ptr)
  114. {
  115. return (*(AVClass **) ptr)->class_name;
  116. }
  117. AVClassCategory av_default_get_category(void *ptr)
  118. {
  119. return (*(AVClass **) ptr)->category;
  120. }
  121. static void sanitize(uint8_t *line){
  122. while(*line){
  123. if(*line < 0x08 || (*line > 0x0D && *line < 0x20))
  124. *line='?';
  125. line++;
  126. }
  127. }
  128. static int get_category(void *ptr){
  129. AVClass *avc = *(AVClass **) ptr;
  130. if( !avc
  131. || (avc->version&0xFF)<100
  132. || avc->version < (51 << 16 | 59 << 8)
  133. || avc->category >= AV_CLASS_CATEGORY_NB) return AV_CLASS_CATEGORY_NA + 16;
  134. if(avc->get_category)
  135. return avc->get_category(ptr) + 16;
  136. return avc->category + 16;
  137. }
  138. static void format_line(void *ptr, int level, const char *fmt, va_list vl,
  139. char part[3][LINE_SZ], int part_size, int *print_prefix, int type[2])
  140. {
  141. AVClass* avc = ptr ? *(AVClass **) ptr : NULL;
  142. part[0][0] = part[1][0] = part[2][0] = 0;
  143. if(type) type[0] = type[1] = AV_CLASS_CATEGORY_NA + 16;
  144. if (*print_prefix && avc) {
  145. if (avc->parent_log_context_offset) {
  146. AVClass** parent = *(AVClass ***) (((uint8_t *) ptr) +
  147. avc->parent_log_context_offset);
  148. if (parent && *parent) {
  149. snprintf(part[0], part_size, "[%s @ %p] ",
  150. (*parent)->item_name(parent), parent);
  151. if(type) type[0] = get_category(((uint8_t *) ptr) + avc->parent_log_context_offset);
  152. }
  153. }
  154. snprintf(part[1], part_size, "[%s @ %p] ",
  155. avc->item_name(ptr), ptr);
  156. if(type) type[1] = get_category(ptr);
  157. }
  158. vsnprintf(part[2], part_size, fmt, vl);
  159. *print_prefix = strlen(part[2]) && part[2][strlen(part[2]) - 1] == '\n';
  160. }
  161. void av_log_format_line(void *ptr, int level, const char *fmt, va_list vl,
  162. char *line, int line_size, int *print_prefix)
  163. {
  164. char part[3][LINE_SZ];
  165. format_line(ptr, level, fmt, vl, part, sizeof(part[0]), print_prefix, NULL);
  166. snprintf(line, line_size, "%s%s%s", part[0], part[1], part[2]);
  167. }
  168. void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
  169. {
  170. static int print_prefix = 1;
  171. static int count;
  172. static char prev[LINE_SZ];
  173. char part[3][LINE_SZ];
  174. char line[LINE_SZ];
  175. static int is_atty;
  176. int type[2];
  177. if (level > av_log_level)
  178. return;
  179. format_line(ptr, level, fmt, vl, part, sizeof(part[0]), &print_prefix, type);
  180. snprintf(line, sizeof(line), "%s%s%s", part[0], part[1], part[2]);
  181. #if HAVE_ISATTY
  182. if (!is_atty)
  183. is_atty = isatty(2) ? 1 : -1;
  184. #endif
  185. #undef fprintf
  186. if (print_prefix && (flags & AV_LOG_SKIP_REPEATED) && !strcmp(line, prev)){
  187. count++;
  188. if (is_atty == 1)
  189. fprintf(stderr, " Last message repeated %d times\r", count);
  190. return;
  191. }
  192. if (count > 0) {
  193. fprintf(stderr, " Last message repeated %d times\n", count);
  194. count = 0;
  195. }
  196. strcpy(prev, line);
  197. sanitize(part[0]);
  198. colored_fputs(type[0], part[0]);
  199. sanitize(part[1]);
  200. colored_fputs(type[1], part[1]);
  201. sanitize(part[2]);
  202. colored_fputs(av_clip(level >> 3, 0, 6), part[2]);
  203. }
  204. static void (*av_log_callback)(void*, int, const char*, va_list) =
  205. av_log_default_callback;
  206. void av_log(void* avcl, int level, const char *fmt, ...)
  207. {
  208. AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
  209. va_list vl;
  210. va_start(vl, fmt);
  211. if (avc && avc->version >= (50 << 16 | 15 << 8 | 2) &&
  212. avc->log_level_offset_offset && level >= AV_LOG_FATAL)
  213. level += *(int *) (((uint8_t *) avcl) + avc->log_level_offset_offset);
  214. av_vlog(avcl, level, fmt, vl);
  215. va_end(vl);
  216. }
  217. void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
  218. {
  219. if(av_log_callback)
  220. av_log_callback(avcl, level, fmt, vl);
  221. }
  222. int av_log_get_level(void)
  223. {
  224. return av_log_level;
  225. }
  226. void av_log_set_level(int level)
  227. {
  228. av_log_level = level;
  229. }
  230. void av_log_set_flags(int arg)
  231. {
  232. flags = arg;
  233. }
  234. void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
  235. {
  236. av_log_callback = callback;
  237. }