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.

182 lines
5.1KB

  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. #include <stdlib.h>
  30. #include "avstring.h"
  31. #include "avutil.h"
  32. #include "common.h"
  33. #include "log.h"
  34. static int av_log_level = AV_LOG_INFO;
  35. static int flags;
  36. #if defined(_WIN32) && !defined(__MINGW32CE__)
  37. #include <windows.h>
  38. #include <io.h>
  39. static const uint8_t color[] = { 12, 12, 12, 14, 7, 10, 11 };
  40. static int16_t background, attr_orig;
  41. static HANDLE con;
  42. #define set_color(x) SetConsoleTextAttribute(con, background | color[x])
  43. #define reset_color() SetConsoleTextAttribute(con, attr_orig)
  44. #else
  45. static const uint8_t color[] = { 0x41, 0x41, 0x11, 0x03, 9, 0x02, 0x06 };
  46. #define set_color(x) fprintf(stderr, "\033[%d;3%dm", color[x] >> 4, color[x]&15)
  47. #define reset_color() fprintf(stderr, "\033[0m")
  48. #endif
  49. static int use_color = -1;
  50. #undef fprintf
  51. static void colored_fputs(int level, const char *str)
  52. {
  53. if (use_color < 0) {
  54. #if defined(_WIN32) && !defined(__MINGW32CE__)
  55. CONSOLE_SCREEN_BUFFER_INFO con_info;
  56. con = GetStdHandle(STD_ERROR_HANDLE);
  57. use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR") &&
  58. !getenv("AV_LOG_FORCE_NOCOLOR");
  59. if (use_color) {
  60. GetConsoleScreenBufferInfo(con, &con_info);
  61. attr_orig = con_info.wAttributes;
  62. background = attr_orig & 0xF0;
  63. }
  64. #elif HAVE_ISATTY
  65. use_color = !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR") &&
  66. (getenv("TERM") && isatty(2) ||
  67. getenv("AV_LOG_FORCE_COLOR"));
  68. #else
  69. use_color = getenv("AV_LOG_FORCE_COLOR") && !getenv("NO_COLOR") &&
  70. !getenv("AV_LOG_FORCE_NOCOLOR");
  71. #endif
  72. }
  73. if (use_color) {
  74. set_color(level);
  75. }
  76. fputs(str, stderr);
  77. if (use_color) {
  78. reset_color();
  79. }
  80. }
  81. const char *av_default_item_name(void *ptr)
  82. {
  83. return (*(AVClass **) ptr)->class_name;
  84. }
  85. void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
  86. {
  87. static int print_prefix = 1;
  88. static int count;
  89. static char prev[1024];
  90. char line[1024];
  91. static int is_atty;
  92. AVClass* avc = ptr ? *(AVClass **) ptr : NULL;
  93. if (level > av_log_level)
  94. return;
  95. line[0] = 0;
  96. #undef fprintf
  97. if (print_prefix && avc) {
  98. if (avc->parent_log_context_offset) {
  99. AVClass** parent = *(AVClass ***) (((uint8_t *) ptr) +
  100. avc->parent_log_context_offset);
  101. if (parent && *parent) {
  102. snprintf(line, sizeof(line), "[%s @ %p] ",
  103. (*parent)->item_name(parent), parent);
  104. }
  105. }
  106. snprintf(line + strlen(line), sizeof(line) - strlen(line), "[%s @ %p] ",
  107. avc->item_name(ptr), ptr);
  108. }
  109. vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl);
  110. print_prefix = strlen(line) && line[strlen(line) - 1] == '\n';
  111. #if HAVE_ISATTY
  112. if (!is_atty)
  113. is_atty = isatty(2) ? 1 : -1;
  114. #endif
  115. if (print_prefix && (flags & AV_LOG_SKIP_REPEATED) &&
  116. !strncmp(line, prev, sizeof line)) {
  117. count++;
  118. if (is_atty == 1)
  119. fprintf(stderr, " Last message repeated %d times\r", count);
  120. return;
  121. }
  122. if (count > 0) {
  123. fprintf(stderr, " Last message repeated %d times\n", count);
  124. count = 0;
  125. }
  126. colored_fputs(av_clip(level >> 3, 0, 6), line);
  127. av_strlcpy(prev, line, sizeof line);
  128. }
  129. static void (*av_log_callback)(void*, int, const char*, va_list) =
  130. av_log_default_callback;
  131. void av_log(void* avcl, int level, const char *fmt, ...)
  132. {
  133. AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
  134. va_list vl;
  135. va_start(vl, fmt);
  136. if (avc && avc->version >= (50 << 16 | 15 << 8 | 2) &&
  137. avc->log_level_offset_offset && level >= AV_LOG_FATAL)
  138. level += *(int *) (((uint8_t *) avcl) + avc->log_level_offset_offset);
  139. av_vlog(avcl, level, fmt, vl);
  140. va_end(vl);
  141. }
  142. void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
  143. {
  144. av_log_callback(avcl, level, fmt, vl);
  145. }
  146. int av_log_get_level(void)
  147. {
  148. return av_log_level;
  149. }
  150. void av_log_set_level(int level)
  151. {
  152. av_log_level = level;
  153. }
  154. void av_log_set_flags(int arg)
  155. {
  156. flags = arg;
  157. }
  158. void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
  159. {
  160. av_log_callback = callback;
  161. }