2010-01-30 23:24:23 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_MP_MSG_H
|
|
|
|
#define MPLAYER_MP_MSG_H
|
2002-02-23 15:12:55 +00:00
|
|
|
|
2009-07-25 04:24:39 +00:00
|
|
|
#include <stdarg.h>
|
2013-07-31 19:40:30 +00:00
|
|
|
#include <stdbool.h>
|
2013-12-18 16:12:21 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-08-29 10:09:04 +00:00
|
|
|
#include "osdep/compiler.h"
|
2013-07-31 19:40:30 +00:00
|
|
|
|
|
|
|
struct mp_log;
|
2009-07-25 04:24:39 +00:00
|
|
|
|
2013-12-18 18:04:30 +00:00
|
|
|
// A mp_log instance that never outputs anything.
|
|
|
|
extern struct mp_log *const mp_null_log;
|
2001-08-17 00:39:49 +00:00
|
|
|
|
2013-12-18 15:55:10 +00:00
|
|
|
// Verbosity levels.
|
2013-12-21 20:41:18 +00:00
|
|
|
enum {
|
|
|
|
MSGL_FATAL, // will exit/abort (note: msg.c doesn't exit or abort)
|
|
|
|
MSGL_ERR, // continues
|
|
|
|
MSGL_WARN, // only warning
|
|
|
|
MSGL_INFO, // -quiet
|
|
|
|
MSGL_STATUS, // exclusively for the playback status line
|
|
|
|
MSGL_V, // -v
|
|
|
|
MSGL_DEBUG, // -v -v
|
|
|
|
MSGL_TRACE, // -v -v -v
|
2014-04-17 19:47:00 +00:00
|
|
|
MSGL_STATS, // dumping fine grained stats (--dump-stats)
|
2014-01-16 20:34:47 +00:00
|
|
|
|
2014-04-24 16:44:46 +00:00
|
|
|
MSGL_MAX = MSGL_STATS,
|
2013-12-21 20:41:18 +00:00
|
|
|
};
|
2001-08-16 22:13:20 +00:00
|
|
|
|
2013-12-18 15:55:10 +00:00
|
|
|
struct mp_log *mp_log_new(void *talloc_ctx, struct mp_log *parent,
|
|
|
|
const char *name);
|
2004-08-24 19:36:17 +00:00
|
|
|
|
2013-12-21 20:49:13 +00:00
|
|
|
void mp_msg(struct mp_log *log, int lev, const char *format, ...)
|
2013-12-18 15:55:10 +00:00
|
|
|
PRINTF_ATTRIBUTE(3, 4);
|
2013-12-21 20:49:13 +00:00
|
|
|
void mp_msg_va(struct mp_log *log, int lev, const char *format, va_list va);
|
2001-08-16 22:13:20 +00:00
|
|
|
|
2013-12-21 20:49:13 +00:00
|
|
|
bool mp_msg_test(struct mp_log *log, int lev);
|
2013-12-21 20:40:45 +00:00
|
|
|
|
2013-12-21 20:41:18 +00:00
|
|
|
// Convenience macros.
|
2013-12-21 20:49:13 +00:00
|
|
|
#define mp_fatal(log, ...) mp_msg(log, MSGL_FATAL, __VA_ARGS__)
|
|
|
|
#define mp_err(log, ...) mp_msg(log, MSGL_ERR, __VA_ARGS__)
|
|
|
|
#define mp_warn(log, ...) mp_msg(log, MSGL_WARN, __VA_ARGS__)
|
|
|
|
#define mp_info(log, ...) mp_msg(log, MSGL_INFO, __VA_ARGS__)
|
|
|
|
#define mp_verbose(log, ...) mp_msg(log, MSGL_V, __VA_ARGS__)
|
|
|
|
#define mp_dbg(log, ...) mp_msg(log, MSGL_DEBUG, __VA_ARGS__)
|
|
|
|
#define mp_trace(log, ...) mp_msg(log, MSGL_TRACE, __VA_ARGS__)
|
2013-12-21 20:41:18 +00:00
|
|
|
|
2013-12-18 15:55:10 +00:00
|
|
|
// Convenience macros, typically called with a pointer to a context struct
|
2014-01-16 20:26:24 +00:00
|
|
|
// as first argument, which has a "struct mp_log *log;" member.
|
2013-12-18 15:55:10 +00:00
|
|
|
|
2013-12-21 20:49:13 +00:00
|
|
|
#define MP_MSG(obj, lev, ...) mp_msg((obj)->log, lev, __VA_ARGS__)
|
2013-12-18 15:55:10 +00:00
|
|
|
|
|
|
|
#define MP_FATAL(obj, ...) MP_MSG(obj, MSGL_FATAL, __VA_ARGS__)
|
|
|
|
#define MP_ERR(obj, ...) MP_MSG(obj, MSGL_ERR, __VA_ARGS__)
|
|
|
|
#define MP_WARN(obj, ...) MP_MSG(obj, MSGL_WARN, __VA_ARGS__)
|
|
|
|
#define MP_INFO(obj, ...) MP_MSG(obj, MSGL_INFO, __VA_ARGS__)
|
|
|
|
#define MP_VERBOSE(obj, ...) MP_MSG(obj, MSGL_V, __VA_ARGS__)
|
2013-12-21 20:41:18 +00:00
|
|
|
#define MP_DBG(obj, ...) MP_MSG(obj, MSGL_DEBUG, __VA_ARGS__)
|
|
|
|
#define MP_TRACE(obj, ...) MP_MSG(obj, MSGL_TRACE, __VA_ARGS__)
|
2013-12-18 15:55:10 +00:00
|
|
|
|
2014-04-17 19:47:00 +00:00
|
|
|
// This is a bit special. See TOOLS/stats-conv.py what rules text passed
|
|
|
|
// to these functions should follow. Also see --dump-stats.
|
|
|
|
#define mp_stats(obj, ...) mp_msg(obj, MSGL_STATS, __VA_ARGS__)
|
|
|
|
#define MP_STATS(obj, ...) MP_MSG(obj, MSGL_STATS, __VA_ARGS__)
|
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_MP_MSG_H */
|