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.

280 lines
8.7KB

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