]> git.sesse.net Git - vlc/blob - src/misc/messages.c
* ALL: new module API. Makes a few things a lot simpler, and we gain
[vlc] / src / misc / messages.c
1 /*****************************************************************************
2  * messages.c: messages interface
3  * This library provides an interface to the message queue to be used by other
4  * modules, especially intf modules. See config.h for output configuration.
5  *****************************************************************************
6  * Copyright (C) 1998-2002 VideoLAN
7  * $Id: messages.c,v 1.6 2002/07/31 20:56:53 sam Exp $
8  *
9  * Authors: Vincent Seguin <seguin@via.ecp.fr>
10  *          Samuel Hocevar <sam@zoy.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  * 
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include <errno.h>                                                  /* errno */
31 #include <fcntl.h>                     /* O_CREAT, O_TRUNC, O_WRONLY, O_SYNC */
32 #include <stdio.h>                                               /* required */
33 #include <stdarg.h>                                       /* va_list for BSD */
34 #include <stdlib.h>                                              /* malloc() */
35 #include <string.h>                                            /* strerror() */
36
37 #include <vlc/vlc.h>
38
39 #ifdef HAVE_UNISTD_H
40 #include <unistd.h>                                      /* close(), write() */
41 #endif
42
43 #include "interface.h"
44
45 /*****************************************************************************
46  * Local prototypes
47  *****************************************************************************/
48 static void QueueMsg ( vlc_object_t *, int , const char *,
49                        const char *, va_list );
50 static void FlushMsg ( msg_bank_t * );
51 static void PrintMsg ( vlc_object_t *, msg_item_t * );
52
53 #if defined( WIN32 )
54 static char *ConvertPrintfFormatString ( const char *psz_format );
55 #endif
56
57 /*****************************************************************************
58  * msg_Create: initialize messages interface
59  *****************************************************************************
60  * This functions has to be called before any call to other msg_* functions.
61  * It set up the locks and the message queue if it is used.
62  *****************************************************************************/
63 void __msg_Create( vlc_object_t *p_this )
64 {
65     /* Message queue initialization */
66     vlc_mutex_init( p_this, &p_this->p_vlc->msg_bank.lock );
67
68     p_this->p_vlc->msg_bank.b_configured = VLC_FALSE;
69     p_this->p_vlc->msg_bank.b_overflow = VLC_FALSE;
70
71     p_this->p_vlc->msg_bank.i_start = 0;
72     p_this->p_vlc->msg_bank.i_stop = 0;
73
74     p_this->p_vlc->msg_bank.i_sub = 0;
75     p_this->p_vlc->msg_bank.pp_sub = NULL;
76 }
77
78 /*****************************************************************************
79  * msg_Flush: flush the message queue
80  *****************************************************************************/
81 void __msg_Flush( vlc_object_t *p_this )
82 {
83     int i_index;
84
85     vlc_mutex_lock( &p_this->p_vlc->msg_bank.lock );
86
87     p_this->p_vlc->msg_bank.b_configured = VLC_TRUE;
88
89     for( i_index = p_this->p_vlc->msg_bank.i_start;
90          i_index != p_this->p_vlc->msg_bank.i_stop;
91          i_index = (i_index+1) % VLC_MSG_QSIZE )
92     {
93         PrintMsg( p_this, &p_this->p_vlc->msg_bank.msg[i_index] );
94     }
95
96     FlushMsg( &p_this->p_vlc->msg_bank );
97
98     vlc_mutex_unlock( &p_this->p_vlc->msg_bank.lock );
99 }
100
101 /*****************************************************************************
102  * msg_Destroy: free resources allocated by msg_Create
103  *****************************************************************************
104  * This functions prints all messages remaining in queue, then free all the
105  * resources allocated by msg_Create.
106  * No other messages interface functions should be called after this one.
107  *****************************************************************************/
108 void __msg_Destroy( vlc_object_t *p_this )
109 {
110     if( p_this->p_vlc->msg_bank.i_sub )
111     {
112         msg_Err( p_this, "stale interface subscribers" );
113     }
114
115     /* Flush the queue */
116     if( !p_this->p_vlc->msg_bank.b_configured )
117     {
118         msg_Flush( p_this );
119     }
120     else
121     {
122         FlushMsg( &p_this->p_vlc->msg_bank );
123     }
124
125     /* Destroy lock */
126     vlc_mutex_destroy( &p_this->p_vlc->msg_bank.lock );
127 }
128
129 /*****************************************************************************
130  * msg_Subscribe: subscribe to the message queue.
131  *****************************************************************************/
132 msg_subscription_t *__msg_Subscribe( vlc_object_t *p_this )
133 {
134     msg_subscription_t *p_sub = malloc( sizeof( msg_subscription_t ) );
135
136     vlc_mutex_lock( &p_this->p_vlc->msg_bank.lock );
137
138     /* Add subscription to the list */
139     p_this->p_vlc->msg_bank.i_sub++;
140     p_this->p_vlc->msg_bank.pp_sub = realloc( p_this->p_vlc->msg_bank.pp_sub,
141         p_this->p_vlc->msg_bank.i_sub * sizeof( msg_subscription_t* ) );
142
143     p_this->p_vlc->msg_bank.pp_sub[ p_this->p_vlc->msg_bank.i_sub - 1 ] = p_sub;
144
145     p_sub->i_start = p_this->p_vlc->msg_bank.i_start;
146     p_sub->pi_stop = &p_this->p_vlc->msg_bank.i_stop;
147
148     p_sub->p_msg   = p_this->p_vlc->msg_bank.msg;
149     p_sub->p_lock  = &p_this->p_vlc->msg_bank.lock;
150
151     vlc_mutex_unlock( &p_this->p_vlc->msg_bank.lock );
152
153     return p_sub;
154 }
155
156 /*****************************************************************************
157  * msg_Unsubscribe: unsubscribe from the message queue.
158  *****************************************************************************/
159 void __msg_Unsubscribe( vlc_object_t *p_this, msg_subscription_t *p_sub )
160 {
161     int i_index;
162
163     vlc_mutex_lock( &p_this->p_vlc->msg_bank.lock );
164
165     /* Sanity check */
166     if( !p_this->p_vlc->msg_bank.i_sub )
167     {
168         msg_Err( p_this, "no subscriber in the list" );
169         return;
170     }
171
172     /* Look for the appropriate subscription */
173     for( i_index = 0; i_index < p_this->p_vlc->msg_bank.i_sub; i_index++ )
174     {
175         if( p_this->p_vlc->msg_bank.pp_sub[ i_index ] == p_sub )
176         {
177             break;
178         }
179     }
180
181     if( p_this->p_vlc->msg_bank.pp_sub[ i_index ] != p_sub )
182     {
183         msg_Err( p_this, "subscriber not found" );
184         vlc_mutex_unlock( &p_this->p_vlc->msg_bank.lock );
185         return;
186     }
187
188     /* Remove this subscription */
189     for( ; i_index < (p_this->p_vlc->msg_bank.i_sub - 1); i_index++ )
190     {
191         p_this->p_vlc->msg_bank.pp_sub[ i_index ] = p_this->p_vlc->msg_bank.pp_sub[ i_index+1 ];
192     }
193
194     p_this->p_vlc->msg_bank.i_sub--;
195     if( p_this->p_vlc->msg_bank.i_sub )
196     {
197         p_this->p_vlc->msg_bank.pp_sub = realloc( p_this->p_vlc->msg_bank.pp_sub,
198             p_this->p_vlc->msg_bank.i_sub * sizeof( msg_subscription_t* ) );
199     }
200     else
201     {
202         free( p_this->p_vlc->msg_bank.pp_sub );
203         p_this->p_vlc->msg_bank.pp_sub = NULL;
204     }
205
206
207     vlc_mutex_unlock( &p_this->p_vlc->msg_bank.lock );
208 }
209
210 /*****************************************************************************
211  * __msg_*: print a message
212  *****************************************************************************
213  * These functions queue a message for later printing.
214  *****************************************************************************/
215 void __msg_Generic( vlc_object_t *p_this, int i_type, const char *psz_module,
216                     const char *psz_format, ... )
217 {
218     va_list args;
219
220     va_start( args, psz_format );
221     QueueMsg( p_this, i_type, psz_module, psz_format, args );
222     va_end( args );
223 }
224
225 /* Generic functions used when variadic macros are not available. */
226 #define DECLARE_MSG_FN( FN_NAME, FN_TYPE ) \
227     void FN_NAME( void *p_this, const char *psz_format, ... ) \
228     { \
229         va_list args; \
230         va_start( args, psz_format ); \
231         QueueMsg( (vlc_object_t *)p_this, FN_TYPE, "unknown", \
232                   psz_format, args ); \
233         va_end( args ); \
234     }
235
236 DECLARE_MSG_FN( __msg_Info, VLC_MSG_INFO );
237 DECLARE_MSG_FN( __msg_Err,  VLC_MSG_ERR );
238 DECLARE_MSG_FN( __msg_Warn, VLC_MSG_WARN );
239 DECLARE_MSG_FN( __msg_Dbg,  VLC_MSG_DBG );
240
241 /*****************************************************************************
242  * QueueMsg: add a message to a queue
243  *****************************************************************************
244  * This function provides basic functionnalities to other msg_* functions.
245  * It adds a message to a queue (after having printed all stored messages if it
246  * is full). If the message can't be converted to string in memory, it issues
247  * a warning.
248  *****************************************************************************/
249 static void QueueMsg( vlc_object_t *p_this, int i_type, const char *psz_module,
250                       const char *psz_format, va_list args )
251 {
252     msg_bank_t *        p_bank = &p_this->p_vlc->msg_bank;   /* message bank */
253     char *              psz_str = NULL;          /* formatted message string */
254     msg_item_t *        p_item = NULL;                 /* pointer to message */
255     msg_item_t          item;             /* message in case of a full queue */
256 #ifdef WIN32
257     char *              psz_temp;
258 #endif
259
260     /*
261      * Convert message to string
262      */
263 #ifdef HAVE_VASPRINTF
264     vasprintf( &psz_str, psz_format, args );
265 #else
266     psz_str = (char*) malloc( strlen(psz_format) + INTF_MAX_MSG_SIZE );
267 #endif
268
269     if( psz_str == NULL )
270     {
271         fprintf( stderr, "main warning: can't store message (%s): ",
272                  strerror(errno) );
273         vfprintf( stderr, psz_format, args );
274         fprintf( stderr, "\n" );
275         return;
276     }
277
278 #ifndef HAVE_VASPRINTF
279 #   ifdef WIN32
280     psz_temp = ConvertPrintfFormatString( psz_format );
281     if( !psz_temp )
282     {
283         fprintf( stderr, "main warning: couldn't print message\n" );
284         return;
285     }
286     vsprintf( psz_str, psz_temp, args );
287     free( psz_temp );
288 #   else
289     vsprintf( psz_str, psz_format, args );
290 #   endif
291 #endif
292
293     /* Put message in queue */
294     vlc_mutex_lock( &p_bank->lock );
295
296     /* Check there is room in the queue for our message */
297     if( p_bank->b_overflow )
298     {
299         FlushMsg( &p_this->p_vlc->msg_bank );
300
301         if( ((p_bank->i_stop - p_bank->i_start + 1) % VLC_MSG_QSIZE) == 0 )
302         {
303             /* Still in overflow mode, print from a dummy item */
304             p_item = &item;
305         }
306         else
307         {
308             /* Pheeew, at last, there is room in the queue! */
309             p_bank->b_overflow = VLC_FALSE;
310         }
311     }
312     else if( ((p_bank->i_stop - p_bank->i_start + 2) % VLC_MSG_QSIZE) == 0 )
313     {
314         FlushMsg( &p_this->p_vlc->msg_bank );
315
316         if( ((p_bank->i_stop - p_bank->i_start + 2) % VLC_MSG_QSIZE) == 0 )
317         {
318             p_bank->b_overflow = VLC_TRUE;
319
320             /* Put the overflow message in the queue */
321             p_item = p_bank->msg + p_bank->i_stop;
322             p_bank->i_stop = (p_bank->i_stop + 1) % VLC_MSG_QSIZE;
323
324             p_item->i_type =      VLC_MSG_ERR;
325             p_item->i_object_id = p_this->i_object_id;
326             p_item->psz_module =  strdup( "message" );
327             p_item->psz_msg =     strdup( "message queue overflowed" );
328
329             PrintMsg( p_this, p_item );
330
331             /* We print from a dummy item */
332             p_item = &item;
333         }
334     }
335
336     if( !p_bank->b_overflow )
337     {
338         /* Put the message in the queue */
339         p_item = p_bank->msg + p_bank->i_stop;
340         p_bank->i_stop = (p_bank->i_stop + 1) % VLC_MSG_QSIZE;
341     }
342
343     /* Fill message information fields */
344     p_item->i_type =      i_type;
345     p_item->i_object_id = p_this->i_object_id;
346     p_item->psz_module =  strdup( psz_module );
347     p_item->psz_msg =     psz_str;
348
349     PrintMsg( p_this, p_item );
350
351     if( p_bank->b_overflow )
352     {
353         free( p_item->psz_module );
354         free( p_item->psz_msg );
355     }
356
357     vlc_mutex_unlock( &p_bank->lock );
358 }
359
360 /* following functions are local */
361
362 /*****************************************************************************
363  * FlushMsg
364  *****************************************************************************
365  * Print all messages remaining in queue. MESSAGE QUEUE MUST BE LOCKED, since
366  * this function does not check the lock.
367  *****************************************************************************/
368 static void FlushMsg ( msg_bank_t *p_bank )
369 {
370     int i_index, i_start, i_stop;
371
372     /* Only flush the queue if it has been properly configured */
373     if( !p_bank->b_configured )
374     {
375         return;
376     }
377
378     /* Get the maximum message index that can be freed */
379     i_stop = p_bank->i_stop;
380
381     /* Check until which value we can free messages */
382     for( i_index = 0; i_index < p_bank->i_sub; i_index++ )
383     {
384         i_start = p_bank->pp_sub[ i_index ]->i_start;
385
386         /* If this subscriber is late, we don't free messages before
387          * his i_start value, otherwise he'll miss messages */
388         if(   ( i_start < i_stop
389                && (p_bank->i_stop <= i_start || i_stop <= p_bank->i_stop) )
390            || ( i_stop < i_start
391                && (i_stop <= p_bank->i_stop && p_bank->i_stop <= i_start) ) )
392         {
393             i_stop = i_start;
394         }
395     }
396
397     /* Free message data */
398     for( i_index = p_bank->i_start;
399          i_index != i_stop;
400          i_index = (i_index+1) % VLC_MSG_QSIZE )
401     {
402         free( p_bank->msg[i_index].psz_msg );
403         free( p_bank->msg[i_index].psz_module );
404     }
405
406     /* Update the new start value */
407     p_bank->i_start = i_index;
408 }
409
410 /*****************************************************************************
411  * PrintMsg: output a message item to stderr
412  *****************************************************************************
413  * Print a message to stderr, with colour formatting if needed.
414  *****************************************************************************/
415 static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item )
416 {
417 #   define COL(x)  "\033[" #x ";1m"
418 #   define RED     COL(31)
419 #   define GREEN   COL(32)
420 #   define YELLOW  COL(33)
421 #   define WHITE   COL(37)
422 #   define GRAY    "\033[0m"
423
424     static const char * ppsz_type[4] = { "", " error", " warning", " debug" };
425     static const char *ppsz_color[4] = { WHITE, RED, YELLOW, GRAY };
426     int i_type = p_item->i_type;
427
428     if( p_this->p_vlc->b_quiet || !p_this->p_vlc->msg_bank.b_configured )
429     {
430         return;
431     }
432
433     if( !p_this->p_vlc->b_verbose &&
434          ( (i_type == VLC_MSG_WARN) || (i_type == VLC_MSG_DBG) ) )
435     {
436         return;
437     }
438
439     /* Send the message to stderr */
440     if( p_this->p_vlc->b_color )
441     {
442         fprintf( stderr, "[" GREEN "%.2x" GRAY ":" GREEN "%.6x" GRAY "] "
443                          "%s%s: %s%s" GRAY "\n", p_this->p_vlc->i_unique,
444                          p_item->i_object_id, p_item->psz_module,
445                          ppsz_type[i_type], ppsz_color[i_type],
446                          p_item->psz_msg );
447     }
448     else
449     {
450         fprintf( stderr, "[%.2x:%.6x] %s%s: %s\n",
451                          p_this->p_vlc->i_unique, p_item->i_object_id,
452                          p_item->psz_module, ppsz_type[i_type],
453                          p_item->psz_msg );
454     }
455 }
456
457 /*****************************************************************************
458  * ConvertPrintfFormatString: replace all occurrences of %ll with %I64 in the
459  *                            printf format string.
460  *****************************************************************************
461  * Win32 doesn't recognize the "%ll" format in a printf string, so we have
462  * to convert this string to something that win32 can handle.
463  * This is a REALLY UGLY HACK which won't even work in every situation,
464  * but hey I don't want to put an ifdef WIN32 each time I use printf with
465  * a "long long" type!!!
466  * By the way, if we don't do this we can sometimes end up with segfaults.
467  *****************************************************************************/
468 #if defined( WIN32 )
469 static char *ConvertPrintfFormatString( const char *psz_format )
470 {
471   int i, i_counter=0, i_pos=0;
472   char *psz_dest;
473
474   /* We first need to check how many occurences of %ll there are in the
475    * psz_format string. Once we'll know that we'll be able to malloc the
476    * destination string */
477
478   if( strlen( psz_format ) <= 3 )
479       return strdup( psz_format );
480
481   for( i=0; i <= (strlen(psz_format) - 3); i++ )
482   {
483       if( !strncmp( (char *)(psz_format + i), "%ll", 3 ) )
484       {
485           i_counter++;
486       }
487   }
488
489   /* malloc the destination string */
490   psz_dest = malloc( strlen(psz_format) + i_counter + 1 );
491   if( psz_dest == NULL )
492   {
493       fprintf( stderr, "main warning: ConvertPrintfFormatString failed\n" );
494       return NULL;
495   }
496
497   /* Now build the modified string */
498   i_counter = 0;
499   for( i=0; i <= (strlen(psz_format) - 3); i++ )
500   {
501       if( !strncmp( (char *)(psz_format + i), "%ll", 3 ) )
502       {
503           memcpy( psz_dest+i_pos+i_counter, psz_format+i_pos, i-i_pos+1);
504           *(psz_dest+i+i_counter+1)='I';
505           *(psz_dest+i+i_counter+2)='6';
506           *(psz_dest+i+i_counter+3)='4';
507           i_pos = i+3;
508           i_counter++;
509       }
510   }
511   strcpy( psz_dest+i_pos+i_counter, psz_format+i_pos );
512
513   return psz_dest;
514 }
515 #endif