1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
/*****************************************************************************
* log.c: libvlc new API log functions
*****************************************************************************
* Copyright (C) 2005 VLC authors and VideoLAN
*
* $Id$
*
* Authors: Damien Fouilleul <damienf@videolan.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* 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 License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <assert.h>
#include <vlc/vlc.h>
#include "libvlc_internal.h"
#include <vlc_common.h>
#include <vlc_interface.h>
/*** Logging core dispatcher ***/
void libvlc_log_get_context(const libvlc_log_t *ctx,
const char **restrict module,
const char **restrict file,
unsigned *restrict line)
{
if (module != NULL)
*module = ctx->psz_module;
if (file != NULL)
*file = ctx->file;
if (line != NULL)
*line = ctx->line;
}
void libvlc_log_get_object(const libvlc_log_t *ctx,
const char **restrict name,
const char **restrict header,
uintptr_t *restrict id)
{
if (name != NULL)
*name = (ctx->psz_object_type != NULL)
? ctx->psz_object_type : "generic";
if (header != NULL)
*header = ctx->psz_header;
if (id != NULL)
*id = ctx->i_object_id;
}
static void libvlc_logf (void *data, int level, const vlc_log_t *item,
const char *fmt, va_list ap)
{
libvlc_instance_t *inst = data;
switch (level)
{
case VLC_MSG_INFO: level = LIBVLC_NOTICE; break;
case VLC_MSG_ERR: level = LIBVLC_ERROR; break;
case VLC_MSG_WARN: level = LIBVLC_WARNING; break;
case VLC_MSG_DBG: level = LIBVLC_DEBUG; break;
}
inst->log.cb (inst->log.data, level, item, fmt, ap);
}
void libvlc_log_unset (libvlc_instance_t *inst)
{
vlc_LogSet (inst->p_libvlc_int, NULL, NULL);
}
void libvlc_log_set (libvlc_instance_t *inst, libvlc_log_cb cb, void *data)
{
libvlc_log_unset (inst); /* <- Barrier before modifying the callback */
inst->log.cb = cb;
inst->log.data = data;
vlc_LogSet (inst->p_libvlc_int, libvlc_logf, inst);
}
/*** Helpers for logging to files ***/
static void libvlc_log_file (void *data, int level, const libvlc_log_t *log,
const char *fmt, va_list ap)
{
FILE *stream = data;
flockfile (stream);
vfprintf (stream, fmt, ap);
fputc ('\n', stream);
funlockfile (stream);
(void) level; (void) log;
}
void libvlc_log_set_file (libvlc_instance_t *inst, FILE *stream)
{
libvlc_log_set (inst, libvlc_log_file, stream);
}
/*** Stubs for the old interface ***/
unsigned libvlc_get_log_verbosity( const libvlc_instance_t *p_instance )
{
(void) p_instance;
return -1;
}
void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, unsigned level )
{
(void) p_instance;
(void) level;
}
libvlc_log_t *libvlc_log_open( libvlc_instance_t *p_instance )
{
(void) p_instance;
return malloc(sizeof(libvlc_log_t));
}
void libvlc_log_close( libvlc_log_t *p_log )
{
free(p_log);
}
unsigned libvlc_log_count( const libvlc_log_t *p_log )
{
(void) p_log;
return 0;
}
void libvlc_log_clear( libvlc_log_t *p_log )
{
(void) p_log;
}
libvlc_log_iterator_t *libvlc_log_get_iterator( const libvlc_log_t *p_log )
{
return (p_log != NULL) ? malloc(1) : NULL;
}
void libvlc_log_iterator_free( libvlc_log_iterator_t *p_iter )
{
free( p_iter );
}
int libvlc_log_iterator_has_next( const libvlc_log_iterator_t *p_iter )
{
(void) p_iter;
return 0;
}
libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterator_t *p_iter,
libvlc_log_message_t *buffer )
{
(void) p_iter; (void) buffer;
return NULL;
}
|