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.

216 lines
6.2KB

  1. /*
  2. * log functions
  3. * Copyright (c) 2003 Michel Bardiaux
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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 "avstring.h"
  35. #include "avutil.h"
  36. #include "common.h"
  37. #include "internal.h"
  38. #include "log.h"
  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[] = { 12, 12, 12, 14, 7, 10, 11 };
  44. static int16_t background, attr_orig;
  45. static HANDLE con;
  46. #define set_color(x) SetConsoleTextAttribute(con, background | color[x])
  47. #define reset_color() SetConsoleTextAttribute(con, attr_orig)
  48. #else
  49. static const uint8_t color[] = { 0x41, 0x41, 0x11, 0x03, 9, 0x02, 0x06 };
  50. #define set_color(x) fprintf(stderr, "\033[%d;3%dm", color[x] >> 4, color[x]&15)
  51. #define reset_color() fprintf(stderr, "\033[0m")
  52. #endif
  53. static int use_color = -1;
  54. static void colored_fputs(int level, const char *str)
  55. {
  56. if (use_color < 0) {
  57. #if HAVE_SETCONSOLETEXTATTRIBUTE
  58. CONSOLE_SCREEN_BUFFER_INFO con_info;
  59. con = GetStdHandle(STD_ERROR_HANDLE);
  60. use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR") &&
  61. !getenv("AV_LOG_FORCE_NOCOLOR");
  62. if (use_color) {
  63. GetConsoleScreenBufferInfo(con, &con_info);
  64. attr_orig = con_info.wAttributes;
  65. background = attr_orig & 0xF0;
  66. }
  67. #elif HAVE_ISATTY
  68. use_color = !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR") &&
  69. (getenv("TERM") && isatty(2) ||
  70. getenv("AV_LOG_FORCE_COLOR"));
  71. #else
  72. use_color = getenv("AV_LOG_FORCE_COLOR") && !getenv("NO_COLOR") &&
  73. !getenv("AV_LOG_FORCE_NOCOLOR");
  74. #endif
  75. }
  76. if (use_color) {
  77. set_color(level);
  78. }
  79. fputs(str, stderr);
  80. if (use_color) {
  81. reset_color();
  82. }
  83. }
  84. const char *av_default_item_name(void *ptr)
  85. {
  86. return (*(AVClass **) ptr)->class_name;
  87. }
  88. void av_log_default_callback(void *avcl, int level, const char *fmt, va_list vl)
  89. {
  90. static int print_prefix = 1;
  91. static int count;
  92. static char prev[1024];
  93. char line[1024];
  94. static int is_atty;
  95. AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
  96. if (level > av_log_level)
  97. return;
  98. line[0] = 0;
  99. if (print_prefix && avc) {
  100. if (avc->parent_log_context_offset) {
  101. AVClass** parent = *(AVClass ***) (((uint8_t *) avcl) +
  102. avc->parent_log_context_offset);
  103. if (parent && *parent) {
  104. snprintf(line, sizeof(line), "[%s @ %p] ",
  105. (*parent)->item_name(parent), parent);
  106. }
  107. }
  108. snprintf(line + strlen(line), sizeof(line) - strlen(line), "[%s @ %p] ",
  109. avc->item_name(avcl), avcl);
  110. }
  111. vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl);
  112. print_prefix = strlen(line) && line[strlen(line) - 1] == '\n';
  113. #if HAVE_ISATTY
  114. if (!is_atty)
  115. is_atty = isatty(2) ? 1 : -1;
  116. #endif
  117. if (print_prefix && (flags & AV_LOG_SKIP_REPEATED) &&
  118. !strncmp(line, prev, sizeof line)) {
  119. count++;
  120. if (is_atty == 1)
  121. fprintf(stderr, " Last message repeated %d times\r", count);
  122. return;
  123. }
  124. if (count > 0) {
  125. fprintf(stderr, " Last message repeated %d times\n", count);
  126. count = 0;
  127. }
  128. colored_fputs(av_clip(level >> 3, 0, 6), line);
  129. av_strlcpy(prev, line, sizeof line);
  130. }
  131. static void (*av_log_callback)(void*, int, const char*, va_list) =
  132. av_log_default_callback;
  133. void av_log(void* avcl, int level, const char *fmt, ...)
  134. {
  135. AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
  136. va_list vl;
  137. va_start(vl, fmt);
  138. if (avc && avc->version >= (50 << 16 | 15 << 8 | 2) &&
  139. avc->log_level_offset_offset && level >= AV_LOG_FATAL)
  140. level += *(int *) (((uint8_t *) avcl) + avc->log_level_offset_offset);
  141. av_vlog(avcl, level, fmt, vl);
  142. va_end(vl);
  143. }
  144. void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
  145. {
  146. av_log_callback(avcl, level, fmt, vl);
  147. }
  148. int av_log_get_level(void)
  149. {
  150. return av_log_level;
  151. }
  152. void av_log_set_level(int level)
  153. {
  154. av_log_level = level;
  155. }
  156. void av_log_set_flags(int arg)
  157. {
  158. flags = arg;
  159. }
  160. void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
  161. {
  162. av_log_callback = callback;
  163. }
  164. static void missing_feature_sample(int sample, void *avc, const char *msg,
  165. va_list argument_list)
  166. {
  167. av_vlog(avc, AV_LOG_WARNING, msg, argument_list);
  168. av_log(avc, AV_LOG_WARNING, " is not implemented. Update your Libav "
  169. "version to the newest one from Git. If the problem still "
  170. "occurs, it means that your file has a feature which has not "
  171. "been implemented.\n");
  172. if (sample)
  173. av_log(avc, AV_LOG_WARNING, "If you want to help, upload a sample "
  174. "of this file to ftp://upload.libav.org/incoming/ "
  175. "and contact the libav-devel mailing list.\n");
  176. }
  177. void avpriv_request_sample(void *avc, const char *msg, ...)
  178. {
  179. va_list argument_list;
  180. va_start(argument_list, msg);
  181. missing_feature_sample(1, avc, msg, argument_list);
  182. va_end(argument_list);
  183. }
  184. void avpriv_report_missing_feature(void *avc, const char *msg, ...)
  185. {
  186. va_list argument_list;
  187. va_start(argument_list, msg);
  188. missing_feature_sample(0, avc, msg, argument_list);
  189. va_end(argument_list);
  190. }