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.

315 lines
9.8KB

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