2001-08-16 22:13:20 +00:00
|
|
|
|
2002-08-31 14:54:00 +00:00
|
|
|
//#define MSG_USE_COLORS
|
|
|
|
|
2001-08-16 22:13:20 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2001-09-20 10:27:24 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2002-12-27 16:17:57 +00:00
|
|
|
#if defined(FOR_MENCODER) || defined(CODECS2HTML)
|
2005-09-29 05:21:12 +00:00
|
|
|
#undef HAVE_NEW_GUI
|
2002-12-27 16:17:57 +00:00
|
|
|
#endif
|
|
|
|
|
2005-09-29 05:21:12 +00:00
|
|
|
#ifdef HAVE_NEW_GUI
|
2005-09-03 15:19:52 +00:00
|
|
|
#include "Gui/interface.h"
|
2001-09-20 10:27:24 +00:00
|
|
|
extern int use_gui;
|
|
|
|
#endif
|
2001-08-16 22:13:20 +00:00
|
|
|
#include "mp_msg.h"
|
|
|
|
|
2002-06-05 02:24:35 +00:00
|
|
|
/* maximum message length of mp_msg */
|
|
|
|
#define MSGSIZE_MAX 3072
|
|
|
|
|
2001-08-16 22:13:20 +00:00
|
|
|
static int mp_msg_levels[MSGT_MAX]; // verbose level of this module
|
|
|
|
|
2002-03-20 15:14:59 +00:00
|
|
|
void mp_msg_init(){
|
|
|
|
#ifdef USE_I18N
|
2003-07-13 14:43:28 +00:00
|
|
|
#ifdef MP_DEBUG
|
2002-03-20 15:14:59 +00:00
|
|
|
fprintf(stdout, "Using GNU internationalization\n");
|
|
|
|
fprintf(stdout, "Original domain: %s\n", textdomain(NULL));
|
|
|
|
fprintf(stdout, "Original dirname: %s\n", bindtextdomain(textdomain(NULL),NULL));
|
2003-07-13 14:43:28 +00:00
|
|
|
#endif
|
2002-03-20 15:14:59 +00:00
|
|
|
bindtextdomain("mplayer", PREFIX"/share/locale");
|
|
|
|
textdomain("mplayer");
|
2003-07-13 14:43:28 +00:00
|
|
|
#ifdef MP_DEBUG
|
2002-03-20 15:14:59 +00:00
|
|
|
fprintf(stdout, "Current domain: %s\n", textdomain(NULL));
|
2003-07-13 14:43:28 +00:00
|
|
|
fprintf(stdout, "Current dirname: %s\n\n", bindtextdomain(textdomain(NULL),NULL));
|
|
|
|
#endif
|
2002-03-20 15:14:59 +00:00
|
|
|
#endif
|
|
|
|
mp_msg_set_level(MSGL_STATUS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void mp_msg_set_level(int verbose){
|
2001-08-16 22:13:20 +00:00
|
|
|
int i;
|
|
|
|
for(i=0;i<MSGT_MAX;i++){
|
|
|
|
mp_msg_levels[i]=verbose;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-08-21 21:31:20 +00:00
|
|
|
int mp_msg_test(int mod, int lev)
|
|
|
|
{
|
|
|
|
return lev <= mp_msg_levels[mod];
|
|
|
|
}
|
|
|
|
|
2005-09-29 05:21:12 +00:00
|
|
|
void mp_msg(int mod, int lev, const char *format, ... ){
|
2002-03-15 21:08:14 +00:00
|
|
|
va_list va;
|
2002-06-05 02:24:35 +00:00
|
|
|
char tmp[MSGSIZE_MAX];
|
2002-03-15 21:08:14 +00:00
|
|
|
|
2005-09-29 05:21:12 +00:00
|
|
|
if (lev > mp_msg_levels[mod]) return; // do not display
|
2002-03-23 19:29:48 +00:00
|
|
|
va_start(va, format);
|
2002-06-05 02:24:35 +00:00
|
|
|
vsnprintf(tmp, MSGSIZE_MAX, mp_gettext(format), va);
|
2002-08-31 13:44:03 +00:00
|
|
|
va_end(va);
|
2003-09-12 15:46:16 +00:00
|
|
|
tmp[MSGSIZE_MAX-2] = '\n';
|
2002-06-05 02:24:35 +00:00
|
|
|
tmp[MSGSIZE_MAX-1] = 0;
|
2002-03-15 21:08:14 +00:00
|
|
|
|
2005-09-29 05:21:12 +00:00
|
|
|
#ifdef HAVE_NEW_GUI
|
2002-03-15 21:08:14 +00:00
|
|
|
if(use_gui)
|
2005-09-29 05:21:12 +00:00
|
|
|
guiMessageBox(lev, tmp);
|
2002-03-15 21:08:14 +00:00
|
|
|
#endif
|
|
|
|
|
2002-08-31 14:54:00 +00:00
|
|
|
#ifdef MSG_USE_COLORS
|
2003-07-13 14:43:28 +00:00
|
|
|
/* that's only a silly color test */
|
2005-09-03 19:27:48 +00:00
|
|
|
#ifdef MP_ANNOY_ME
|
2002-08-31 14:54:00 +00:00
|
|
|
{ int c;
|
|
|
|
static int flag=1;
|
|
|
|
if(flag)
|
2005-09-03 19:27:48 +00:00
|
|
|
for(c=0;c<24;c++)
|
2002-08-31 14:54:00 +00:00
|
|
|
printf("\033[%d;3%dm*** COLOR TEST %d ***\n",(c>7),c&7,c);
|
|
|
|
flag=0;
|
|
|
|
}
|
|
|
|
#endif
|
2005-09-03 19:27:48 +00:00
|
|
|
{ unsigned char v_colors[10]={9,1,3,15,7,2,2,8,8,8};
|
|
|
|
static const char *lev_text[]= {
|
|
|
|
"FATAL",
|
|
|
|
"ERROR",
|
|
|
|
"WARN",
|
|
|
|
"HINT",
|
|
|
|
"INFO",
|
|
|
|
"STATUS",
|
|
|
|
"V",
|
|
|
|
"DGB2",
|
|
|
|
"DGB3",
|
|
|
|
"DGB4"};
|
|
|
|
static const char *mod_text[]= {
|
|
|
|
"GLOBAL",
|
|
|
|
"CPLAYER",
|
|
|
|
"GPLAYER",
|
|
|
|
"VIDEOOUT",
|
|
|
|
"AUDIOOUT",
|
|
|
|
"DEMUXER",
|
|
|
|
"DS",
|
|
|
|
"DEMUX",
|
|
|
|
"HEADER",
|
|
|
|
"AVSYNC",
|
|
|
|
"AUTOQ",
|
|
|
|
"CFGPARSER",
|
|
|
|
"DECAUDIO",
|
|
|
|
"DECVIDEO",
|
|
|
|
"SEEK",
|
|
|
|
"WIN32",
|
|
|
|
"OPEN",
|
|
|
|
"DVD",
|
|
|
|
"PARSEES",
|
|
|
|
"LIRC",
|
|
|
|
"STREAM",
|
|
|
|
"CACHE",
|
|
|
|
"MENCODER",
|
|
|
|
"XACODEC",
|
|
|
|
"TV",
|
|
|
|
"OSDEP",
|
|
|
|
"SPUDEC",
|
|
|
|
"PLAYTREE",
|
|
|
|
"INPUT",
|
|
|
|
"VFILTER",
|
|
|
|
"OSD",
|
|
|
|
"NETWORK",
|
|
|
|
"CPUDETECT",
|
|
|
|
"CODECCFG",
|
|
|
|
"SWS",
|
|
|
|
"VOBSUB",
|
|
|
|
"SUBREADER",
|
|
|
|
"AFILTER",
|
|
|
|
"NETST",
|
|
|
|
"MUXER"};
|
|
|
|
|
2005-09-29 05:21:12 +00:00
|
|
|
int c=v_colors[lev];
|
|
|
|
int c2=(mod+1)%15+1;
|
2005-09-03 19:27:48 +00:00
|
|
|
static int header=1;
|
2005-09-29 05:21:12 +00:00
|
|
|
FILE *stream= (lev) <= MSGL_WARN ? stderr : stdout;
|
2005-09-03 19:27:48 +00:00
|
|
|
if(header){
|
2005-09-29 05:21:12 +00:00
|
|
|
fprintf(stream, "\033[%d;3%dm%9s\033[0;37m: ",c2>>3,c2&7, mod_text[mod]);
|
2005-09-03 19:27:48 +00:00
|
|
|
}
|
|
|
|
fprintf(stream, "\033[%d;3%dm",c>>3,c&7);
|
|
|
|
header= tmp[strlen(tmp)-1] == '\n'
|
|
|
|
/*||tmp[strlen(tmp)-1] == '\r'*/;
|
2002-08-31 14:54:00 +00:00
|
|
|
}
|
|
|
|
#endif
|
2005-09-29 05:21:12 +00:00
|
|
|
if (lev <= MSGL_WARN){
|
2002-08-31 13:44:03 +00:00
|
|
|
fprintf(stderr, "%s", tmp);fflush(stderr);
|
|
|
|
} else {
|
|
|
|
printf("%s", tmp);fflush(stdout);
|
|
|
|
}
|
2001-08-16 22:13:20 +00:00
|
|
|
}
|