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