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.

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