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.

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