log.c 5.36 KB
Newer Older
1 2 3 4
/*
 * log functions
 * Copyright (c) 2003 Michel Bardiaux
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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 20 21 22
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
23
 * @file
24
 * logging functions
25 26
 */

27
#include <unistd.h>
28
#include <stdlib.h>
29
#include "avutil.h"
30
#include "log.h"
31

32
static int av_log_level = AV_LOG_INFO;
33
static int flags;
34

35
#if defined(_WIN32) && !defined(__MINGW32CE__)
36
#include <windows.h>
37
static const uint8_t color[] = { 12, 12, 12, 14, 7, 7, 10 };
38 39
static int16_t background, attr_orig;
static HANDLE con;
40
#define set_color(x)  SetConsoleTextAttribute(con, background | color[x])
41 42
#define reset_color() SetConsoleTextAttribute(con, attr_orig)
#else
43
static const uint8_t color[] = { 0x41, 0x41, 0x11, 0x03, 9, 9, 2 };
44
#define set_color(x)  fprintf(stderr, "\033[%d;3%dm", color[x] >> 4, color[x]&15)
45 46
#define reset_color() fprintf(stderr, "\033[0m")
#endif
47
static int use_color = -1;
48 49

#undef fprintf
50 51 52
static void colored_fputs(int level, const char *str)
{
    if (use_color < 0) {
53
#if defined(_WIN32) && !defined(__MINGW32CE__)
54 55
        CONSOLE_SCREEN_BUFFER_INFO con_info;
        con = GetStdHandle(STD_ERROR_HANDLE);
56 57
        use_color = (con != INVALID_HANDLE_VALUE) && !getenv("NO_COLOR") &&
                    !getenv("AV_LOG_FORCE_NOCOLOR");
58 59 60 61 62 63
        if (use_color) {
            GetConsoleScreenBufferInfo(con, &con_info);
            attr_orig  = con_info.wAttributes;
            background = attr_orig & 0xF0;
        }
#elif HAVE_ISATTY
64 65 66
        use_color = !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR") &&
                    (getenv("TERM") && isatty(2) ||
                     getenv("AV_LOG_FORCE_COLOR"));
67
#else
68 69
        use_color = getenv("AV_LOG_FORCE_COLOR") && !getenv("NO_COLOR") &&
                   !getenv("AV_LOG_FORCE_NOCOLOR");
70 71 72
#endif
    }

73
    if (use_color) {
74
        set_color(level);
75 76
    }
    fputs(str, stderr);
77
    if (use_color) {
78
        reset_color();
79 80 81
    }
}

82 83 84
const char *av_default_item_name(void *ptr)
{
    return (*(AVClass **) ptr)->class_name;
85 86
}

87 88 89 90 91 92 93 94
static void sanitize(uint8_t *line){
    while(*line){
        if(*line < 0x08 || (*line > 0x0D && *line < 0x20))
            *line='?';
        line++;
    }
}

95 96
void av_log_format_line(void *ptr, int level, const char *fmt, va_list vl,
                        char *line, int line_size, int *print_prefix)
97
{
98 99
    AVClass* avc = ptr ? *(AVClass **) ptr : NULL;
    line[0] = 0;
100
    if (*print_prefix && avc) {
101
        if (avc->parent_log_context_offset) {
102 103 104
            AVClass** parent = *(AVClass ***) (((uint8_t *) ptr) +
                                   avc->parent_log_context_offset);
            if (parent && *parent) {
105
                snprintf(line, line_size, "[%s @ %p] ",
106
                         (*parent)->item_name(parent), parent);
107 108
            }
        }
109
        snprintf(line + strlen(line), line_size - strlen(line), "[%s @ %p] ",
110
                 avc->item_name(ptr), ptr);
111
    }
112

113 114 115 116 117 118 119 120 121 122 123 124
    vsnprintf(line + strlen(line), line_size - strlen(line), fmt, vl);

    *print_prefix = strlen(line) && line[strlen(line) - 1] == '\n';
}

void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
{
    static int print_prefix = 1;
    static int count;
    static char prev[1024];
    char line[1024];
    static int is_atty;
125

126 127 128
    if (level > av_log_level)
        return;
    av_log_format_line(ptr, level, fmt, vl, line, sizeof(line), &print_prefix);
129 130

#if HAVE_ISATTY
131 132
    if (!is_atty)
        is_atty = isatty(2) ? 1 : -1;
133 134
#endif

135
#undef fprintf
136
    if (print_prefix && (flags & AV_LOG_SKIP_REPEATED) && !strcmp(line, prev)){
137
        count++;
138
        if (is_atty == 1)
Michael Niedermayer's avatar
Michael Niedermayer committed
139
            fprintf(stderr, "    Last message repeated %d times\r", count);
140 141
        return;
    }
142
    if (count > 0) {
143
        fprintf(stderr, "    Last message repeated %d times\n", count);
144
        count = 0;
145 146
    }
    strcpy(prev, line);
147
    sanitize(line);
148
    colored_fputs(av_clip(level >> 3, 0, 6), line);
149 150
}

151 152
static void (*av_log_callback)(void*, int, const char*, va_list) =
    av_log_default_callback;
153 154 155

void av_log(void* avcl, int level, const char *fmt, ...)
{
156
    AVClass* avc = avcl ? *(AVClass **) avcl : NULL;
157 158
    va_list vl;
    va_start(vl, fmt);
159 160 161
    if (avc && avc->version >= (50 << 16 | 15 << 8 | 2) &&
        avc->log_level_offset_offset && level >= AV_LOG_FATAL)
        level += *(int *) (((uint8_t *) avcl) + avc->log_level_offset_offset);
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
    av_vlog(avcl, level, fmt, vl);
    va_end(vl);
}

void av_vlog(void* avcl, int level, const char *fmt, va_list vl)
{
    av_log_callback(avcl, level, fmt, vl);
}

int av_log_get_level(void)
{
    return av_log_level;
}

void av_log_set_level(int level)
{
    av_log_level = level;
}

181 182
void av_log_set_flags(int arg)
{
183
    flags = arg;
184 185
}

186 187 188 189
void av_log_set_callback(void (*callback)(void*, int, const char*, va_list))
{
    av_log_callback = callback;
}