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.

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