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.

318 lines
9.9KB

  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. char lastc = strlen(part[2]) ? part[2][strlen(part[2]) - 1] : 0;
  175. *print_prefix = lastc == '\n' || lastc == '\r';
  176. }
  177. }
  178. void av_log_format_line(void *ptr, int level, const char *fmt, va_list vl,
  179. char *line, int line_size, int *print_prefix)
  180. {
  181. char part[3][LINE_SZ];
  182. format_line(ptr, level, fmt, vl, part, sizeof(part[0]), print_prefix, NULL);
  183. snprintf(line, line_size, "%s%s%s", part[0], part[1], part[2]);
  184. }
  185. void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
  186. {
  187. static int print_prefix = 1;
  188. static int count;
  189. static char prev[LINE_SZ];
  190. char part[3][LINE_SZ];
  191. char line[LINE_SZ];
  192. static int is_atty;
  193. int type[2];
  194. if (level > av_log_level)
  195. return;
  196. format_line(ptr, level, fmt, vl, part, sizeof(part[0]), &print_prefix, type);
  197. snprintf(line, sizeof(line), "%s%s%s", part[0], part[1], part[2]);
  198. #if HAVE_ISATTY
  199. if (!is_atty)
  200. is_atty = isatty(2) ? 1 : -1;
  201. #endif
  202. if (print_prefix && (flags & AV_LOG_SKIP_REPEATED) && !strcmp(line, prev) && *line){
  203. count++;
  204. if (is_atty == 1)
  205. fprintf(stderr, " Last message repeated %d times\r", count);
  206. return;
  207. }
  208. if (count > 0) {
  209. fprintf(stderr, " Last message repeated %d times\n", count);
  210. count = 0;
  211. }
  212. strcpy(prev, line);
  213. sanitize(part[0]);
  214. colored_fputs(type[0], part[0]);
  215. sanitize(part[1]);
  216. colored_fputs(type[1], part[1]);
  217. sanitize(part[2]);
  218. colored_fputs(av_clip(level >> 3, 0, 6), part[2]);
  219. }
  220. static void (*av_log_callback)(void*, int, const char*, va_list) =
  221. av_log_default_callback;
  222. void av_log(void* avcl, int level, const char *fmt, ...)
  223. {
  224. AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
  225. va_list vl;
  226. va_start(vl, fmt);
  227. if (avc && avc->version >= (50 << 16 | 15 << 8 | 2) &&
  228. avc->log_level_offset_offset && level >= AV_LOG_FATAL)
  229. level += *(int *) (((uint8_t *) avcl) + avc->log_level_offset_offset);
  230. av_vlog(avcl, level, fmt, vl);
  231. va_end(vl);
  232. }
  233. void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
  234. {
  235. if(av_log_callback)
  236. av_log_callback(avcl, level, fmt, vl);
  237. }
  238. int av_log_get_level(void)
  239. {
  240. return av_log_level;
  241. }
  242. void av_log_set_level(int level)
  243. {
  244. av_log_level = level;
  245. }
  246. void av_log_set_flags(int arg)
  247. {
  248. flags = arg;
  249. }
  250. void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
  251. {
  252. av_log_callback = callback;
  253. }
  254. static void missing_feature_sample(int sample, void *avc, const char *msg,
  255. va_list argument_list)
  256. {
  257. av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
  258. av_log(avc, AV_LOG_WARNING, " is not implemented. Update your FFmpeg "
  259. "version to the newest one from Git. If the problem still "
  260. "occurs, it means that your file has a feature which has not "
  261. "been implemented.\n");
  262. if (sample)
  263. av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
  264. "of this file to ftp://upload.ffmpeg.org/MPlayer/incoming/ "
  265. "and contact the ffmpeg-devel mailing list.\n");
  266. }
  267. void avpriv_request_sample(void *avc, const char *msg, ...)
  268. {
  269. va_list argument_list;
  270. va_start(argument_list, msg);
  271. missing_feature_sample(1, avc, msg, argument_list);
  272. va_end(argument_list);
  273. }
  274. void avpriv_report_missing_feature(void *avc, const char *msg, ...)
  275. {
  276. va_list argument_list;
  277. va_start(argument_list, msg);
  278. missing_feature_sample(0, avc, msg, argument_list);
  279. va_end(argument_list);
  280. }