]> git.sesse.net Git - vlc/blob - src/misc/messages.c
fix warning
[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 vlc_config.h for output configuration.
5  *****************************************************************************
6  * Copyright (C) 1998-2005 the VideoLAN team
7  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30
31 #ifdef HAVE_CONFIG_H
32 # include "config.h"
33 #endif
34
35 #include <vlc/vlc.h>
36
37 #include <stdarg.h>                                       /* va_list for BSD */
38
39 #ifdef HAVE_FCNTL_H
40 #   include <fcntl.h>                  /* O_CREAT, O_TRUNC, O_WRONLY, O_SYNC */
41 #endif
42
43 #include <errno.h>                                                  /* errno */
44
45 #ifdef HAVE_UNISTD_H
46 #   include <unistd.h>                                   /* close(), write() */
47 #endif
48
49 #include <assert.h>
50
51 #include <vlc_charset.h>
52
53 /*****************************************************************************
54  * Local macros
55  *****************************************************************************/
56 #if defined(HAVE_VA_COPY)
57 #   define vlc_va_copy(dest,src) va_copy(dest,src)
58 #elif defined(HAVE___VA_COPY)
59 #   define vlc_va_copy(dest,src) __va_copy(dest,src)
60 #else
61 #   define vlc_va_copy(dest,src) (dest)=(src)
62 #endif
63
64 #define QUEUE(i) p_this->p_libvlc->msg_bank.queues[i]
65 #define LOCK_BANK vlc_mutex_lock( &p_this->p_libvlc->msg_bank.lock );
66 #define UNLOCK_BANK vlc_mutex_unlock( &p_this->p_libvlc->msg_bank.lock );
67
68 /*****************************************************************************
69  * Local prototypes
70  *****************************************************************************/
71 static void QueueMsg ( vlc_object_t *, int, int , const char *,
72                        const char *, va_list );
73 static void FlushMsg ( msg_queue_t * );
74 static void PrintMsg ( vlc_object_t *, msg_item_t * );
75
76 /**
77  * Initialize messages queues
78  * This function initializes all message queues
79  */
80 void __msg_Create( vlc_object_t *p_this )
81 {
82     int i;
83     vlc_mutex_init( p_this, &(p_this->p_libvlc->msg_bank.lock) );
84
85     for( i = 0; i < 2; i++ )
86     {
87          vlc_mutex_init( p_this, &QUEUE(i).lock );
88          QUEUE(i).b_overflow = VLC_FALSE;
89          QUEUE(i).i_id = i;
90          QUEUE(i).i_start = 0;
91          QUEUE(i).i_stop = 0;
92          QUEUE(i).i_sub = 0;
93          QUEUE(i).pp_sub = 0;
94     }
95
96 #ifdef UNDER_CE
97     QUEUE(MSG_QUEUE_NORMAL).logfile =
98         CreateFile( L"vlc-log.txt", GENERIC_WRITE,
99                     FILE_SHARE_READ|FILE_SHARE_WRITE, NULL,
100                     CREATE_ALWAYS, 0, NULL );
101     SetFilePointer( QUEUE(MSG_QUEUE_NORMAL).logfile, 0, NULL, FILE_END );
102 #endif
103 }
104
105 /**
106  * Flush all message queues
107  */
108 void __msg_Flush( vlc_object_t *p_this )
109 {
110     int i;
111     for( i = 0 ; i < NB_QUEUES ; i++ )
112     {
113         vlc_mutex_lock( &QUEUE(i).lock );
114         FlushMsg( &QUEUE(i) );
115         vlc_mutex_unlock( &QUEUE(i).lock );
116     }
117 }
118
119 /**
120  * Destroy the message queues
121  *
122  * This functions prints all messages remaining in the queues,
123  * then frees all the allocated ressources
124  * No other messages interface functions should be called after this one.
125  */
126 void __msg_Destroy( vlc_object_t *p_this )
127 {
128     int i;
129     for( i = NB_QUEUES -1 ; i >= 0;  i-- )
130     {
131         if( QUEUE(i).i_sub )
132             msg_Err( p_this, "stale interface subscribers" );
133
134         FlushMsg( &QUEUE(i) );
135
136 #ifdef UNDER_CE
137         if( i == MSG_QUEUE_NORMAL )
138             CloseHandle( QUEUE(MSG_QUEUE_NORMAL).logfile );
139 #endif
140         /* Destroy lock */
141         vlc_mutex_destroy( &QUEUE(i).lock );
142     }
143     vlc_mutex_destroy( &(p_this->p_libvlc->msg_bank.lock) );
144 }
145
146 /**
147  * Subscribe to a message queue.
148  */
149 msg_subscription_t *__msg_Subscribe( vlc_object_t *p_this, int i )
150 {
151     msg_subscription_t *p_sub = malloc( sizeof( msg_subscription_t ) );
152
153     assert( i < NB_QUEUES );
154
155     LOCK_BANK;
156     vlc_mutex_lock( &QUEUE(i).lock );
157
158     TAB_APPEND( QUEUE(i).i_sub, QUEUE(i).pp_sub, p_sub );
159
160     p_sub->i_start = QUEUE(i).i_start;
161     p_sub->pi_stop = &QUEUE(i).i_stop;
162     p_sub->p_msg   = QUEUE(i).msg;
163     p_sub->p_lock  = &QUEUE(i).lock;
164
165     vlc_mutex_unlock( &QUEUE(i).lock );
166     UNLOCK_BANK;
167
168     return p_sub;
169 }
170
171 /**
172  * Unsubscribe from a message queue.
173  */
174 void __msg_Unsubscribe( vlc_object_t *p_this, msg_subscription_t *p_sub )
175 {
176     int i,j;
177
178     LOCK_BANK;
179     for( i = 0 ; i< NB_QUEUES ; i++ )
180     {
181         vlc_mutex_lock( &QUEUE(i).lock );
182         for( j = 0 ; j< QUEUE(i).i_sub ; j++ )
183         {
184             if( QUEUE(i).pp_sub[j] == p_sub )
185             {
186                 REMOVE_ELEM( QUEUE(i).pp_sub, QUEUE(i).i_sub, j );
187                 if( p_sub ) free( p_sub );
188             }
189         }
190         vlc_mutex_unlock( & QUEUE(i).lock );
191     }
192     UNLOCK_BANK;
193 }
194
195 const char *msg_GetObjectTypeName(int i_object_type )
196 {
197     switch( i_object_type )
198     {
199         case VLC_OBJECT_GLOBAL: return "global";
200         case VLC_OBJECT_LIBVLC: return "libvlc";
201         case VLC_OBJECT_MODULE: return "module";
202         case VLC_OBJECT_INTF: return "interface";
203         case VLC_OBJECT_PLAYLIST: return "playlist";
204         case VLC_OBJECT_ITEM: return "item";
205         case VLC_OBJECT_INPUT: return "input";
206         case VLC_OBJECT_DECODER: return "decoder";
207         case VLC_OBJECT_PACKETIZER: return "packetizer";
208         case VLC_OBJECT_ENCODER: return "encoder";
209         case VLC_OBJECT_VOUT: return "video output";
210         case VLC_OBJECT_AOUT: return "audio output";
211         case VLC_OBJECT_SOUT: return "stream output";
212         case VLC_OBJECT_HTTPD: return "http server";
213         case VLC_OBJECT_HTTPD_HOST: return "http server";
214         case VLC_OBJECT_DIALOGS: return "dialogs provider";
215         case VLC_OBJECT_VLM: return "vlm";
216         case VLC_OBJECT_ANNOUNCE: return "announce handler";
217         case VLC_OBJECT_DEMUX: return "demuxer";
218         case VLC_OBJECT_ACCESS: return "access";
219         case VLC_OBJECT_META_ENGINE: return "meta engine";
220         default: return "private";
221     }
222 }
223
224 /*****************************************************************************
225  * __msg_*: print a message
226  *****************************************************************************
227  * These functions queue a message for later printing.
228  *****************************************************************************/
229 void __msg_Generic( vlc_object_t *p_this, int i_queue, int i_type,
230                     const char *psz_module,
231                     const char *psz_format, ... )
232 {
233     va_list args;
234
235     va_start( args, psz_format );
236     QueueMsg( p_this, i_queue, i_type, psz_module, psz_format, args );
237     va_end( args );
238 }
239
240 void __msg_GenericVa( vlc_object_t *p_this, int i_queue,
241                       int i_type, const char *psz_module,
242                       const char *psz_format, va_list args )
243 {
244     QueueMsg( p_this, i_queue, i_type, psz_module, psz_format, args );
245 }
246
247 /* Generic functions used when variadic macros are not available. */
248 #define DECLARE_MSG_FN( FN_NAME, FN_TYPE ) \
249     void FN_NAME( vlc_object_t *p_this, const char *psz_format, ... ) \
250     { \
251         va_list args; \
252         va_start( args, psz_format ); \
253         QueueMsg( p_this,MSG_QUEUE_NORMAL, FN_TYPE, "unknown", \
254                   psz_format, args ); \
255         va_end( args ); \
256     } \
257     struct _
258 /**
259  * Output an informational message.
260  * \note Do not use this for debug messages
261  * \see input_AddInfo
262  */
263 DECLARE_MSG_FN( __msg_Info, VLC_MSG_INFO );
264 /**
265  * Output an error message.
266  */
267 DECLARE_MSG_FN( __msg_Err,  VLC_MSG_ERR );
268 /**
269  * Output a waring message
270  */
271 DECLARE_MSG_FN( __msg_Warn, VLC_MSG_WARN );
272 /**
273  * Output a debug message
274  */
275 DECLARE_MSG_FN( __msg_Dbg,  VLC_MSG_DBG );
276
277 /**
278  * Add a message to a queue
279  *
280  * This function provides basic functionnalities to other msg_* functions.
281  * It adds a message to a queue (after having printed all stored messages if it
282  * is full). If the message can't be converted to string in memory, it issues
283  * a warning.
284  */
285 static void QueueMsg( vlc_object_t *p_this, int i_queue, int i_type,
286                       const char *psz_module,
287                       const char *psz_format, va_list _args )
288 {
289     int         i_header_size;             /* Size of the additionnal header */
290     vlc_object_t *p_obj;
291     char *       psz_str = NULL;                 /* formatted message string */
292     char *       psz_header = NULL;
293     va_list      args;
294     msg_item_t * p_item = NULL;                        /* pointer to message */
295     msg_item_t   item;                    /* message in case of a full queue */
296     msg_queue_t *p_queue;
297
298 #if !defined(HAVE_VASPRINTF) || defined(__APPLE__) || defined(SYS_BEOS)
299     int          i_size = strlen(psz_format) + INTF_MAX_MSG_SIZE;
300 #endif
301
302     if( p_this == NULL )
303     {
304 #ifndef NDEBUG
305         if( i_type == VLC_MSG_DBG )
306             return;
307 #endif
308         utf8_vfprintf( stderr, psz_format, _args );
309         return;
310     }
311
312     if( p_this->i_flags & OBJECT_FLAGS_QUIET ||
313         (p_this->i_flags & OBJECT_FLAGS_NODBG && i_type == VLC_MSG_DBG) )
314         return;
315
316 #ifndef __GLIBC__
317     /* Expand %m to strerror(errno) - only once */
318     char buf[strlen( psz_format ) + 2001], *ptr;
319     strcpy( buf, psz_format );
320     ptr = (char*)buf;
321     psz_format = (const char*) buf;
322
323     for( ;; )
324     {
325         ptr = strchr( ptr, '%' );
326         if( ptr == NULL )
327             break;
328
329         if( ptr[1] == 'm' )
330         {
331             char errbuf[2001];
332             size_t errlen;
333
334 #ifndef WIN32
335             strerror_r( errno, errbuf, 1001 );
336 #else
337             int sockerr = WSAGetLastError( );
338             if( sockerr )
339             {
340                 strncpy( errbuf, net_strerror( sockerr ), 1001 );
341                 WSASetLastError( sockerr );
342             }
343             if ((sockerr == 0)
344              || (strcmp ("Unknown network stack error", errbuf) == 0))
345                 strncpy( errbuf, strerror( errno ), 1001 );
346 #endif
347             errbuf[1000] = 0;
348
349             /* Escape '%' from the error string */
350             for( char *percent = strchr( errbuf, '%' );
351                  percent != NULL;
352                  percent = strchr( percent + 2, '%' ) )
353             {
354                 memmove( percent + 1, percent, strlen( percent ) + 1 );
355             }
356
357             errlen = strlen( errbuf );
358             memmove( ptr + errlen, ptr + 2, strlen( ptr + 2 ) + 1 );
359             memcpy( ptr, errbuf, errlen );
360             break; /* Only once, so we don't overflow */
361         }
362
363         /* Looks for conversion specifier... */
364         do
365             ptr++;
366         while( *ptr && ( strchr( "diouxXeEfFgGaAcspn%", *ptr ) == NULL ) );
367         if( *ptr )
368             ptr++; /* ...and skip it */
369     }
370 #endif
371
372     /* Convert message to string  */
373 #if defined(HAVE_VASPRINTF) && !defined(__APPLE__) && !defined( SYS_BEOS )
374     vlc_va_copy( args, _args );
375     if( vasprintf( &psz_str, psz_format, args ) == -1 )
376         psz_str = NULL;
377     va_end( args );
378 #else
379     psz_str = (char*) malloc( i_size );
380 #endif
381
382     if( psz_str == NULL )
383     {
384 #ifdef __GLIBC__
385         fprintf( stderr, "main warning: can't store message (%m): " );
386 #else
387         char psz_err[1001];
388 #ifndef WIN32
389         /* we're not using GLIBC, so we are sure that the error description
390          * will be stored in the buffer we provide to strerror_r() */
391         strerror_r( errno, psz_err, 1001 );
392 #else
393         strncpy( psz_err, strerror( errno ), 1001 );
394 #endif
395         psz_err[1000] = '\0';
396         fprintf( stderr, "main warning: can't store message (%s): ", psz_err );
397 #endif
398         vlc_va_copy( args, _args );
399         /* We should use utf8_vfprintf - but it calls malloc()... */
400         vfprintf( stderr, psz_format, args );
401         va_end( args );
402         fputs( "\n", stderr );
403         return;
404     }
405
406     i_header_size = 0;
407     p_obj = p_this;
408     while( p_obj != NULL )
409     {
410         char *psz_old = NULL;
411         if( p_obj->psz_header )
412         {
413             i_header_size += strlen( p_obj->psz_header ) + 4;
414             if( psz_header )
415             {
416                 psz_old = strdup( psz_header );
417                 psz_header = (char*)realloc( psz_header, i_header_size );
418                 snprintf( psz_header, i_header_size , "[%s] %s",
419                           p_obj->psz_header, psz_old );
420             }
421             else
422             {
423                 psz_header = (char *)malloc( i_header_size );
424                 snprintf( psz_header, i_header_size, "[%s]",
425                           p_obj->psz_header );
426             }
427         }
428         if( psz_old ) free( psz_old );
429         p_obj = p_obj->p_parent;
430     }
431
432 #if !defined(HAVE_VASPRINTF) || defined(__APPLE__) || defined(SYS_BEOS)
433     vlc_va_copy( args, _args );
434     vsnprintf( psz_str, i_size, psz_format, args );
435     va_end( args );
436     psz_str[ i_size - 1 ] = 0; /* Just in case */
437 #endif
438
439     assert( i_queue < NB_QUEUES );
440     LOCK_BANK;
441     p_queue = &QUEUE(i_queue) ;
442     vlc_mutex_lock( &p_queue->lock );
443
444     /* Check there is room in the queue for our message */
445     if( p_queue->b_overflow )
446     {
447         FlushMsg( p_queue );
448
449         if( ((p_queue->i_stop - p_queue->i_start + 1) % VLC_MSG_QSIZE) == 0 )
450         {
451             /* Still in overflow mode, print from a dummy item */
452             p_item = &item;
453         }
454         else
455         {
456             /* Pheeew, at last, there is room in the queue! */
457             p_queue->b_overflow = VLC_FALSE;
458         }
459     }
460     else if( ((p_queue->i_stop - p_queue->i_start + 2) % VLC_MSG_QSIZE) == 0 )
461     {
462         FlushMsg( p_queue );
463
464         if( ((p_queue->i_stop - p_queue->i_start + 2) % VLC_MSG_QSIZE) == 0 )
465         {
466             p_queue->b_overflow = VLC_TRUE;
467
468             if( p_queue->i_id == MSG_QUEUE_NORMAL )
469             {
470                /* Put the overflow message in the queue */
471                 p_item = p_queue->msg + p_queue->i_stop;
472                 p_queue->i_stop = (p_queue->i_stop + 1) % VLC_MSG_QSIZE;
473
474                 p_item->i_type =        VLC_MSG_WARN;
475                 p_item->i_object_id =   p_this->i_object_id;
476                 p_item->i_object_type = p_this->i_object_type;
477                 p_item->psz_module =    strdup( "message" );
478                 p_item->psz_msg =       strdup( "message queue overflowed" );
479                 p_item->psz_header =    NULL;
480
481                PrintMsg( p_this, p_item );
482                /* We print from a dummy item */
483                p_item = &item;
484             }
485         }
486     }
487
488     if( !p_queue->b_overflow )
489     {
490         /* Put the message in the queue */
491         p_item = p_queue->msg + p_queue->i_stop;
492         p_queue->i_stop = (p_queue->i_stop + 1) % VLC_MSG_QSIZE;
493     }
494
495     /* Fill message information fields */
496     p_item->i_type =        i_type;
497     p_item->i_object_id =   p_this->i_object_id;
498     p_item->i_object_type = p_this->i_object_type;
499     p_item->psz_module =    strdup( psz_module );
500     p_item->psz_msg =       psz_str;
501     p_item->psz_header =    psz_header;
502
503     if( p_queue->i_id == MSG_QUEUE_NORMAL )
504         PrintMsg( p_this, p_item );
505
506     if( p_queue->b_overflow )
507     {
508         if( p_item->psz_module )
509             free( p_item->psz_module );
510         if( p_item->psz_msg )
511             free( p_item->psz_msg );
512         if( p_item->psz_header )
513             free( p_item->psz_header );
514     }
515
516     vlc_mutex_unlock ( &p_queue->lock );
517     UNLOCK_BANK;
518 }
519
520 /* following functions are local */
521
522 /*****************************************************************************
523  * FlushMsg
524  *****************************************************************************
525  * Print all messages remaining in queue. MESSAGE QUEUE MUST BE LOCKED, since
526  * this function does not check the lock.
527  *****************************************************************************/
528 static void FlushMsg ( msg_queue_t *p_queue )
529 {
530     int i_index, i_start, i_stop;
531
532     /* Get the maximum message index that can be freed */
533     i_stop = p_queue->i_stop;
534
535     /* Check until which value we can free messages */
536     for( i_index = 0; i_index < p_queue->i_sub; i_index++ )
537     {
538         i_start = p_queue->pp_sub[ i_index ]->i_start;
539
540         /* If this subscriber is late, we don't free messages before
541          * his i_start value, otherwise he'll miss messages */
542         if(   ( i_start < i_stop
543                && (p_queue->i_stop <= i_start || i_stop <= p_queue->i_stop) )
544            || ( i_stop < i_start
545                && (i_stop <= p_queue->i_stop && p_queue->i_stop <= i_start) ) )
546         {
547             i_stop = i_start;
548         }
549     }
550
551     /* Free message data */
552     for( i_index = p_queue->i_start;
553          i_index != i_stop;
554          i_index = (i_index+1) % VLC_MSG_QSIZE )
555     {
556         if( p_queue->msg[i_index].psz_msg )
557             free( p_queue->msg[i_index].psz_msg );
558         if( p_queue->msg[i_index].psz_module )
559             free( p_queue->msg[i_index].psz_module );
560         if( p_queue->msg[i_index].psz_header )
561             free( p_queue->msg[i_index].psz_header );
562     }
563
564     /* Update the new start value */
565     p_queue->i_start = i_index;
566 }
567
568 /*****************************************************************************
569  * PrintMsg: output a standard message item to stderr
570  *****************************************************************************
571  * Print a message to stderr, with colour formatting if needed.
572  *****************************************************************************/
573 static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item )
574 {
575 #   define COL(x)  "\033[" #x ";1m"
576 #   define RED     COL(31)
577 #   define GREEN   COL(32)
578 #   define YELLOW  COL(33)
579 #   define WHITE   COL(0)
580 #   define GRAY    "\033[0m"
581
582 #ifdef UNDER_CE
583     int i_dummy;
584 #endif
585     static const char * ppsz_type[4] = { "", " error", " warning", " debug" };
586     static const char *ppsz_color[4] = { WHITE, RED, YELLOW, GRAY };
587     const char *psz_object;
588     int i_type = p_item->i_type;
589
590     switch( i_type )
591     {
592         case VLC_MSG_ERR:
593             if( p_this->p_libvlc->i_verbose < 0 ) return;
594             break;
595         case VLC_MSG_INFO:
596             if( p_this->p_libvlc->i_verbose < 0 ) return;
597             break;
598         case VLC_MSG_WARN:
599             if( p_this->p_libvlc->i_verbose < 1 ) return;
600             break;
601         case VLC_MSG_DBG:
602             if( p_this->p_libvlc->i_verbose < 2 ) return;
603             break;
604     }
605
606     psz_object = msg_GetObjectTypeName(p_item->i_object_type);
607
608 #ifdef UNDER_CE
609 #   define CE_WRITE(str) WriteFile( QUEUE(MSG_QUEUE_NORMAL).logfile, \
610                                     str, strlen(str), &i_dummy, NULL );
611     CE_WRITE( p_item->psz_module );
612     CE_WRITE( " " );
613     CE_WRITE( psz_object );
614     CE_WRITE( ppsz_type[i_type] );
615     CE_WRITE( ": " );
616     CE_WRITE( p_item->psz_msg );
617     CE_WRITE( "\r\n" );
618     FlushFileBuffers( QUEUE(MSG_QUEUE_NORMAL).logfile );
619
620 #else
621     /* Send the message to stderr */
622     if( p_this->p_libvlc->b_color )
623     {
624         if( p_item->psz_header )
625         {
626             utf8_fprintf( stderr, "[" GREEN "%.8i" GRAY "] %s %s %s%s: %s%s" GRAY
627                               "\n",
628                          p_item->i_object_id, p_item->psz_header,
629                          p_item->psz_module, psz_object,
630                          ppsz_type[i_type], ppsz_color[i_type],
631                          p_item->psz_msg );
632         }
633         else
634         {
635              utf8_fprintf( stderr, "[" GREEN "%.8i" GRAY "] %s %s%s: %s%s" GRAY "\n",
636                          p_item->i_object_id, p_item->psz_module, psz_object,
637                          ppsz_type[i_type], ppsz_color[i_type],
638                          p_item->psz_msg );
639         }
640     }
641     else
642     {
643         if( p_item->psz_header )
644         {
645             utf8_fprintf( stderr, "[%.8i] %s %s %s%s: %s\n", p_item->i_object_id,
646                          p_item->psz_header, p_item->psz_module,
647                          psz_object, ppsz_type[i_type], p_item->psz_msg );
648         }
649         else
650         {
651             utf8_fprintf( stderr, "[%.8i] %s %s%s: %s\n", p_item->i_object_id,
652                          p_item->psz_module, psz_object, ppsz_type[i_type],
653                          p_item->psz_msg );
654         }
655     }
656
657 #   if defined(WIN32)
658     fflush( stderr );
659 #   endif
660 #endif
661 }
662
663 static msg_context_t* GetContext(void)
664 {
665     msg_context_t *p_ctx = vlc_threadvar_get( &msg_context_global_key );
666     if( p_ctx == NULL )
667     {
668         MALLOC_NULL( p_ctx, msg_context_t );
669         p_ctx->psz_message = NULL;
670         vlc_threadvar_set( &msg_context_global_key, p_ctx );
671     }
672     return p_ctx;
673 }
674
675 void msg_StackSet( int i_code, const char *psz_message, ... )
676 {
677     va_list ap;
678     msg_context_t *p_ctx = GetContext();
679     assert( p_ctx );
680
681     va_start( ap, psz_message );
682     free( p_ctx->psz_message );
683
684     if( vasprintf( &p_ctx->psz_message, psz_message, ap ) == -1 )
685         p_ctx->psz_message = NULL;
686     va_end( ap );
687
688     p_ctx->i_code = i_code;
689 }
690
691 void msg_StackAdd( const char *psz_message, ... )
692 {
693     char *psz_tmp;
694     va_list ap;
695     msg_context_t *p_ctx = GetContext();
696     assert( p_ctx );
697
698     va_start( ap, psz_message );
699     if( vasprintf( &psz_tmp, psz_message, ap ) == -1 )
700         psz_tmp = NULL;
701     va_end( ap );
702
703     if( !p_ctx->psz_message )
704         p_ctx->psz_message = psz_tmp;
705     else
706     {
707         char *psz_old = malloc( strlen( p_ctx->psz_message ) + 1 );
708         memcpy( psz_old, p_ctx->psz_message, strlen( p_ctx->psz_message ) + 1 );
709         p_ctx->psz_message = realloc( p_ctx->psz_message,
710                                       strlen( p_ctx->psz_message ) +
711                                       /* ':', ' ', '0' */
712                                       strlen( psz_tmp ) + 3 );
713         sprintf( p_ctx->psz_message, "%s: %s", psz_tmp, psz_old );
714         free( psz_tmp ); free( psz_old );
715     }
716 }
717
718 const char* msg_StackMsg( void )
719 {
720     msg_context_t *p_ctx = GetContext();
721     assert( p_ctx );
722     return p_ctx->psz_message;
723 }