1 /*****************************************************************************
2 * logger.c : file logging plugin for vlc
3 *****************************************************************************
4 * Copyright (C) 2002-2008 the VideoLAN team
7 * Authors: Samuel Hocevar <sam@zoy.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
26 *****************************************************************************/
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_interface.h>
35 #include <vlc_playlist.h>
45 #define LOG_DIR "Library/Logs/"
48 #define LOG_FILE_TEXT "vlc-log.txt"
49 #define LOG_FILE_HTML "vlc-log.html"
51 #define TEXT_HEADER "-- logger module started --\n"
52 #define TEXT_FOOTER "-- logger module stopped --\n"
55 "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\"\n" \
56 " \"http://www.w3.org/TR/html4/strict.dtd\">\n" \
59 " <title>vlc log</title>\n" \
60 " <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n" \
62 " <body style=\"background-color: #000000; color: #aaaaaa;\">\n" \
64 " <b>-- logger module started --</b>\n"
66 " <b>-- logger module stopped --</b>\n" \
77 intf_thread_t
*p_intf
;
82 /*****************************************************************************
83 * intf_sys_t: description and status of log interface
84 *****************************************************************************/
87 msg_subscription_t
*p_sub
;
91 /*****************************************************************************
93 *****************************************************************************/
94 static int Open ( vlc_object_t
* );
95 static void Close ( vlc_object_t
* );
97 static void Overflow (msg_cb_data_t
*p_sys
, msg_item_t
*p_item
, unsigned overruns
);
98 static void TextPrint ( const msg_item_t
*, FILE * );
99 static void HtmlPrint ( const msg_item_t
*, FILE * );
101 static void SyslogPrint ( const msg_item_t
*);
104 /*****************************************************************************
106 *****************************************************************************/
107 static const char *const mode_list
[] = { "text", "html"
112 static const char *const mode_list_text
[] = { N_("Text"), "HTML"
118 #define LOGMODE_TEXT N_("Log format")
119 #ifndef HAVE_SYSLOG_H
120 #define LOGMODE_LONGTEXT N_("Specify the log format. Available choices are " \
121 "\"text\" (default) and \"html\".")
124 #define LOGMODE_LONGTEXT N_("Specify the log format. Available choices are " \
125 "\"text\" (default), \"html\", and \"syslog\" (special mode to send to " \
126 "syslog instead of file.")
128 #define SYSLOG_FACILITY_TEXT N_("Syslog facility")
129 #define SYSLOG_FACILITY_LONGTEXT N_("Select the syslog facility where logs " \
130 "will be forwarded. Available choices are \"user\" (default), \"daemon\", " \
131 "and \"local0\" through \"local7\".")
133 /* First in list is the default facility used. */
134 #define DEFINE_SYSLOG_FACILITY \
135 DEF( "user", LOG_USER ), \
136 DEF( "daemon", LOG_DAEMON ), \
137 DEF( "local0", LOG_LOCAL0 ), \
138 DEF( "local1", LOG_LOCAL1 ), \
139 DEF( "local2", LOG_LOCAL2 ), \
140 DEF( "local3", LOG_LOCAL3 ), \
141 DEF( "local4", LOG_LOCAL4 ), \
142 DEF( "local5", LOG_LOCAL5 ), \
143 DEF( "local6", LOG_LOCAL6 ), \
144 DEF( "local7", LOG_LOCAL7 )
146 #define DEF( a, b ) a
147 static const char *const fac_name
[] = { DEFINE_SYSLOG_FACILITY
};
149 #define DEF( a, b ) b
150 static const int fac_number
[] = { DEFINE_SYSLOG_FACILITY
};
152 enum { fac_entries
= sizeof(fac_name
)/sizeof(fac_name
[0]) };
153 #undef DEFINE_SYSLOG_FACILITY
157 #define LOGVERBOSE_TEXT N_("Verbosity")
158 #define LOGVERBOSE_LONGTEXT N_("Select the verbosity to use for log or -1 to " \
159 "use the same verbosity given by --verbose.")
162 set_shortname( N_( "Logging" ) )
163 set_description( N_("File logging") )
165 set_category( CAT_ADVANCED
)
166 set_subcategory( SUBCAT_ADVANCED_MISC
)
168 add_file( "logfile", NULL
, NULL
,
169 N_("Log filename"), N_("Specify the log filename."), false )
170 add_string( "logmode", "text", NULL
, LOGMODE_TEXT
, LOGMODE_LONGTEXT
,
172 change_string_list( mode_list
, mode_list_text
, 0 )
174 add_string( "syslog-facility", fac_name
[0], NULL
, SYSLOG_FACILITY_TEXT
,
175 SYSLOG_FACILITY_LONGTEXT
, true )
176 change_string_list( fac_name
, fac_name
, 0 )
178 add_integer( "log-verbose", -1, NULL
, LOGVERBOSE_TEXT
, LOGVERBOSE_LONGTEXT
,
181 add_obsolete_string( "rrd-file" )
183 set_capability( "interface", 0 )
184 set_callbacks( Open
, Close
)
187 /*****************************************************************************
188 * Open: initialize and create stuff
189 *****************************************************************************/
190 static int Open( vlc_object_t
*p_this
)
192 intf_thread_t
*p_intf
= (intf_thread_t
*)p_this
;
197 msg_Info( p_intf
, "using logger." );
199 /* Allocate instance and initialize some members */
200 p_sys
= p_intf
->p_sys
= (intf_sys_t
*)malloc( sizeof( intf_sys_t
) );
204 p_sys
->msg
.p_intf
= p_intf
;
205 p_sys
->msg
.i_mode
= MODE_TEXT
;
206 psz_mode
= var_CreateGetString( p_intf
, "logmode" );
209 if( !strcmp( psz_mode
, "text" ) )
211 else if( !strcmp( psz_mode
, "html" ) )
213 p_sys
->msg
.i_mode
= MODE_HTML
;
216 else if( !strcmp( psz_mode
, "syslog" ) )
218 p_sys
->msg
.i_mode
= MODE_SYSLOG
;
223 msg_Warn( p_intf
, "invalid log mode `%s', using `text'", psz_mode
);
224 p_sys
->msg
.i_mode
= MODE_TEXT
;
230 msg_Warn( p_intf
, "no log mode specified, using `text'" );
233 if( p_sys
->msg
.i_mode
!= MODE_SYSLOG
)
235 char *psz_file
= var_InheritString( p_intf
, "logfile" );
239 char *home
= config_GetUserDir(VLC_DOCUMENTS_DIR
);
241 || asprintf( &psz_file
, "%s/"LOG_DIR
"/%s", home
,
242 (p_sys
->msg
.i_mode
== MODE_HTML
) ? LOG_FILE_HTML
243 : LOG_FILE_TEXT
) == -1 )
247 switch( p_sys
->msg
.i_mode
)
250 psz_file
= strdup( LOG_FILE_HTML
);
254 psz_file
= strdup( LOG_FILE_TEXT
);
258 msg_Warn( p_intf
, "no log filename provided, using `%s'",
262 /* Open the log file and remove any buffering for the stream */
263 msg_Dbg( p_intf
, "opening logfile `%s'", psz_file
);
264 p_sys
->msg
.p_file
= vlc_fopen( psz_file
, "at" );
265 if( p_sys
->msg
.p_file
== NULL
)
267 msg_Err( p_intf
, "error opening logfile `%s'", psz_file
);
272 setvbuf( p_sys
->msg
.p_file
, NULL
, _IONBF
, 0 );
276 switch( p_sys
->msg
.i_mode
)
279 fputs( HTML_HEADER
, p_sys
->msg
.p_file
);
283 fputs( TEXT_HEADER
, p_sys
->msg
.p_file
);
290 p_sys
->msg
.p_file
= NULL
;
293 char *psz_facility
= var_CreateGetString( p_intf
, "syslog-facility" );
297 for( size_t i
= 0; i
< fac_entries
; ++i
)
299 if( !strcmp( psz_facility
, fac_name
[i
] ) )
301 i_facility
= fac_number
[i
];
308 msg_Warn( p_intf
, "invalid syslog facility `%s', using `%s'",
309 psz_facility
, fac_name
[0] );
310 i_facility
= fac_number
[0];
312 free( psz_facility
);
316 msg_Warn( p_intf
, "no syslog facility specified, using `%s'",
318 i_facility
= fac_number
[0];
321 openlog( "vlc", LOG_PID
|LOG_NDELAY
, i_facility
);
325 p_sys
->p_sub
= msg_Subscribe( p_intf
->p_libvlc
, Overflow
, &p_sys
->msg
);
330 /*****************************************************************************
331 * Close: destroy interface stuff
332 *****************************************************************************/
333 static void Close( vlc_object_t
*p_this
)
335 intf_thread_t
*p_intf
= (intf_thread_t
*)p_this
;
336 intf_sys_t
*p_sys
= p_intf
->p_sys
;
338 /* Flush the queue and unsubscribe from the message queue */
340 msg_Unsubscribe( p_sys
->p_sub
);
342 switch( p_sys
->msg
.i_mode
)
345 fputs( HTML_FOOTER
, p_sys
->msg
.p_file
);
354 fputs( TEXT_FOOTER
, p_sys
->msg
.p_file
);
358 /* Close the log file */
359 if( p_sys
->msg
.p_file
)
360 fclose( p_sys
->msg
.p_file
);
362 /* Destroy structure */
369 static void Overflow (msg_cb_data_t
*p_sys
, msg_item_t
*p_item
, unsigned overruns
)
371 VLC_UNUSED(overruns
);
372 int verbosity
= var_CreateGetInteger( p_sys
->p_intf
, "log-verbose" );
374 verbosity
= var_CreateGetInteger( p_sys
->p_intf
, "verbose" );
376 if (verbosity
< p_item
->i_type
)
379 int canc
= vlc_savecancel();
381 switch( p_sys
->i_mode
)
384 HtmlPrint( p_item
, p_sys
->p_file
);
388 SyslogPrint( p_item
);
393 TextPrint( p_item
, p_sys
->p_file
);
397 vlc_restorecancel( canc
);
400 static const char ppsz_type
[4][11] = {
407 static void TextPrint( const msg_item_t
*p_msg
, FILE *p_file
)
409 fprintf( p_file
, "%s%s%s\n", p_msg
->psz_module
, ppsz_type
[p_msg
->i_type
],
414 static void SyslogPrint( const msg_item_t
*p_msg
)
416 static const int i_prio
[4] = { LOG_INFO
, LOG_ERR
, LOG_WARNING
, LOG_DEBUG
};
417 int i_priority
= i_prio
[p_msg
->i_type
];
419 if( p_msg
->psz_header
)
420 syslog( i_priority
, "%s %s%s%s", p_msg
->psz_header
, p_msg
->psz_module
,
421 ppsz_type
[p_msg
->i_type
], p_msg
->psz_msg
);
423 syslog( i_priority
, "%s%s%s", p_msg
->psz_module
,
424 ppsz_type
[p_msg
->i_type
], p_msg
->psz_msg
);
429 static void HtmlPrint( const msg_item_t
*p_msg
, FILE *p_file
)
431 static const char ppsz_color
[4][30] = {
432 "<span style=\"color: #ffffff\">",
433 "<span style=\"color: #ff6666\">",
434 "<span style=\"color: #ffff66\">",
435 "<span style=\"color: #aaaaaa\">",
438 fprintf( p_file
, "%s%s%s%s</span>\n", p_msg
->psz_module
,
439 ppsz_type
[p_msg
->i_type
], ppsz_color
[p_msg
->i_type
],