]> git.sesse.net Git - vlc/blob - include/vlc_messages.h
Merge branch 'master' of git@git.videolan.org:vlc
[vlc] / include / vlc_messages.h
1 /*****************************************************************************
2  * messages.h: messages interface
3  * This library provides basic functions for threads to interact with user
4  * interface, such as message output.
5  *****************************************************************************
6  * Copyright (C) 1999, 2000, 2001, 2002 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 #if !defined( __LIBVLC__ )
28   #error You are not libvlc or one of its plugins. You cannot include this file
29 #endif
30
31 #ifndef _VLC_MESSAGES_H_
32 #define _VLC_MESSAGES_H_
33
34 #include <stdarg.h>
35
36 /**
37  * \defgroup messages Messages
38  * This library provides basic functions for threads to interact with user
39  * interface, such as message output.
40  *
41  * @{
42  */
43
44 /** Internal message stack context */
45 typedef struct
46 {
47     int i_code;
48     char * psz_message;
49 } msg_context_t;
50
51 void msg_StackSet ( int, const char*, ... );
52 void msg_StackAdd ( const char*, ... );
53 const char* msg_StackMsg ( void );
54
55 /**
56  * Store a single message sent to user.
57  */
58 typedef struct
59 {
60     int     i_type;                             /**< message type, see below */
61     int     i_object_id;
62     const char *psz_object_type;
63     char *  psz_module;
64     char *  psz_msg;                            /**< the message itself */
65     char *  psz_header;                         /**< Additional header */
66
67     mtime_t date;                               /**< Message date */
68 } msg_item_t;
69
70 /* Message types */
71 /** standard messages */
72 #define VLC_MSG_INFO  0
73 /** error messages */
74 #define VLC_MSG_ERR   1
75 /** warning messages */
76 #define VLC_MSG_WARN  2
77 /** debug messages */
78 #define VLC_MSG_DBG   3
79
80 #define MSG_QUEUE_NORMAL 0
81 #define MSG_QUEUE_HTTPD_ACCESS 1
82 #define NB_QUEUES 2
83
84 struct msg_queue_t
85 {
86     int                     i_id;
87
88     /** Message queue lock */
89     vlc_mutex_t             lock;
90     bool              b_overflow;
91
92     /* Message queue */
93     msg_item_t              msg[VLC_MSG_QSIZE];           /**< message queue */
94     int i_start;
95     int i_stop;
96
97     /* Subscribers */
98     int i_sub;
99     msg_subscription_t **pp_sub;
100
101     /* Logfile for WinCE */
102 #ifdef UNDER_CE
103     FILE *logfile;
104 #endif
105 };
106
107 /**
108  * Store all data requiered by messages interfaces.
109  */
110 struct msg_bank_t
111 {
112     vlc_mutex_t             lock;
113     msg_queue_t             queues[NB_QUEUES];
114 };
115
116 /**
117  * Used by interface plugins which subscribe to the message bank.
118  */
119 struct msg_subscription_t
120 {
121     int   i_start;
122     int*  pi_stop;
123
124     msg_item_t*  p_msg;
125     vlc_mutex_t* p_lock;
126 };
127
128 /*****************************************************************************
129  * Prototypes
130  *****************************************************************************/
131 VLC_EXPORT( void, __msg_Generic, ( vlc_object_t *, int, int, const char *, const char *, ... ) ATTRIBUTE_FORMAT( 5, 6 ) );
132 VLC_EXPORT( void, __msg_GenericVa, ( vlc_object_t *, int, int, const char *, const char *, va_list args ) );
133 #define msg_GenericVa(a, b, c, d, e,f) __msg_GenericVa(VLC_OBJECT(a), b, c, d, e,f)
134 VLC_EXPORT( void, __msg_Info,    ( vlc_object_t *, const char *, ... ) ATTRIBUTE_FORMAT( 2, 3 ) );
135 VLC_EXPORT( void, __msg_Err,     ( vlc_object_t *, const char *, ... ) ATTRIBUTE_FORMAT( 2, 3 ) );
136 VLC_EXPORT( void, __msg_Warn,    ( vlc_object_t *, const char *, ... ) ATTRIBUTE_FORMAT( 2, 3 ) );
137 VLC_EXPORT( void, __msg_Dbg,    ( vlc_object_t *, const char *, ... ) ATTRIBUTE_FORMAT( 2, 3 ) );
138
139 #define msg_Info( p_this, ... ) \
140       __msg_Generic( VLC_OBJECT(p_this), MSG_QUEUE_NORMAL, VLC_MSG_INFO, \
141                      MODULE_STRING, __VA_ARGS__ )
142 #define msg_Err( p_this, ... ) \
143       __msg_Generic( VLC_OBJECT(p_this), MSG_QUEUE_NORMAL, VLC_MSG_ERR, \
144                      MODULE_STRING, __VA_ARGS__ )
145 #define msg_Warn( p_this, ... ) \
146       __msg_Generic( VLC_OBJECT(p_this), MSG_QUEUE_NORMAL, VLC_MSG_WARN, \
147                      MODULE_STRING, __VA_ARGS__ )
148 #define msg_Dbg( p_this, ... ) \
149       __msg_Generic( VLC_OBJECT(p_this), MSG_QUEUE_NORMAL, VLC_MSG_DBG, \
150                      MODULE_STRING, __VA_ARGS__ )
151
152 #define msg_Create(a) __msg_Create(VLC_OBJECT(a))
153 #define msg_Flush(a) __msg_Flush(VLC_OBJECT(a))
154 #define msg_Destroy(a) __msg_Destroy(VLC_OBJECT(a))
155 void __msg_Create  ( vlc_object_t * );
156 void __msg_Flush   ( vlc_object_t * );
157 void __msg_Destroy ( vlc_object_t * );
158
159 #define msg_Subscribe(a,b) __msg_Subscribe(VLC_OBJECT(a),b)
160 #define msg_Unsubscribe(a,b) __msg_Unsubscribe(VLC_OBJECT(a),b)
161 VLC_EXPORT( msg_subscription_t*, __msg_Subscribe, ( vlc_object_t *, int ) );
162 VLC_EXPORT( void, __msg_Unsubscribe, ( vlc_object_t *, msg_subscription_t * ) );
163
164 /**
165  * @}
166  */
167
168 /**
169  * \defgroup statistics Statistics
170  *
171  * @{
172  */
173
174 /****************************
175  * Generic stats stuff
176  ****************************/
177 enum
178 {
179     STATS_LAST,
180     STATS_COUNTER,
181     STATS_MAX,
182     STATS_MIN,
183     STATS_DERIVATIVE,
184     STATS_TIMER
185 };
186
187 struct counter_sample_t
188 {
189     vlc_value_t value;
190     mtime_t     date;
191 };
192
193 struct counter_t
194 {
195     unsigned int        i_id;
196     char              * psz_name;
197     int                 i_type;
198     int                 i_compute_type;
199     int                 i_samples;
200     counter_sample_t ** pp_samples;
201
202     mtime_t             update_interval;
203     mtime_t             last_update;
204 };
205
206 enum
207 {
208     STATS_INPUT_BITRATE,
209     STATS_READ_BYTES,
210     STATS_READ_PACKETS,
211     STATS_DEMUX_READ,
212     STATS_DEMUX_BITRATE,
213     STATS_PLAYED_ABUFFERS,
214     STATS_LOST_ABUFFERS,
215     STATS_DECODED_AUDIO,
216     STATS_DECODED_VIDEO,
217     STATS_DECODED_SUB,
218     STATS_CLIENT_CONNECTIONS,
219     STATS_ACTIVE_CONNECTIONS,
220     STATS_SOUT_SENT_PACKETS,
221     STATS_SOUT_SENT_BYTES,
222     STATS_SOUT_SEND_BITRATE,
223     STATS_DISPLAYED_PICTURES,
224     STATS_LOST_PICTURES,
225
226     STATS_TIMER_PLAYLIST_BUILD,
227     STATS_TIMER_ML_LOAD,
228     STATS_TIMER_ML_DUMP,
229     STATS_TIMER_INTERACTION,
230     STATS_TIMER_PREPARSE,
231
232     STATS_TIMER_SKINS_PLAYTREE_IMAGE,
233 };
234
235 #define stats_Update(a,b,c) __stats_Update( VLC_OBJECT(a), b, c )
236 VLC_EXPORT( int, __stats_Update, (vlc_object_t*, counter_t *, vlc_value_t, vlc_value_t *) );
237 #define stats_CounterCreate(a,b,c) __stats_CounterCreate( VLC_OBJECT(a), b, c )
238 VLC_EXPORT( counter_t *, __stats_CounterCreate, (vlc_object_t*, int, int) );
239 #define stats_Get(a,b,c) __stats_Get( VLC_OBJECT(a), b, c)
240 VLC_EXPORT( int, __stats_Get, (vlc_object_t*, counter_t *, vlc_value_t*) );
241
242 VLC_EXPORT (void, stats_CounterClean, (counter_t * ) );
243
244 #define stats_GetInteger(a,b,c) __stats_GetInteger( VLC_OBJECT(a), b, c )
245 static inline int __stats_GetInteger( vlc_object_t *p_obj, counter_t *p_counter,
246                                       int *value )
247 {
248     int i_ret;
249     vlc_value_t val; val.i_int = 0;
250     if( !p_counter ) return VLC_EGENERIC;
251     i_ret = __stats_Get( p_obj, p_counter, &val );
252     *value = val.i_int;
253     return i_ret;
254 }
255
256 #define stats_GetFloat(a,b,c) __stats_GetFloat( VLC_OBJECT(a), b, c )
257 static inline int __stats_GetFloat( vlc_object_t *p_obj, counter_t *p_counter,
258                                     float *value )
259 {
260     int i_ret;
261     vlc_value_t val; val.f_float = 0.0;
262     if( !p_counter ) return VLC_EGENERIC;
263     i_ret = __stats_Get( p_obj, p_counter, &val );
264     *value = val.f_float;
265     return i_ret;
266 }
267 #define stats_UpdateInteger(a,b,c,d) __stats_UpdateInteger( VLC_OBJECT(a),b,c,d )
268 static inline int __stats_UpdateInteger( vlc_object_t *p_obj,counter_t *p_co,
269                                          int i, int *pi_new )
270 {
271     int i_ret;
272     vlc_value_t val;
273     vlc_value_t new_val; new_val.i_int = 0;
274     if( !p_co ) return VLC_EGENERIC;
275     val.i_int = i;
276     i_ret = __stats_Update( p_obj, p_co, val, &new_val );
277     if( pi_new )
278         *pi_new = new_val.i_int;
279     return i_ret;
280 }
281 #define stats_UpdateFloat(a,b,c,d) __stats_UpdateFloat( VLC_OBJECT(a),b,c,d )
282 static inline int __stats_UpdateFloat( vlc_object_t *p_obj, counter_t *p_co,
283                                        float f, float *pf_new )
284 {
285     vlc_value_t val;
286     int i_ret;
287     vlc_value_t new_val;new_val.f_float = 0.0;
288     if( !p_co ) return VLC_EGENERIC;
289     val.f_float = f;
290     i_ret =  __stats_Update( p_obj, p_co, val, &new_val );
291     if( pf_new )
292         *pf_new = new_val.f_float;
293     return i_ret;
294 }
295
296 /******************
297  * Input stats
298  ******************/
299 struct input_stats_t
300 {
301     vlc_mutex_t         lock;
302
303     /* Input */
304     int i_read_packets;
305     int i_read_bytes;
306     float f_input_bitrate;
307     float f_average_input_bitrate;
308
309     /* Demux */
310     int i_demux_read_packets;
311     int i_demux_read_bytes;
312     float f_demux_bitrate;
313     float f_average_demux_bitrate;
314
315     /* Decoders */
316     int i_decoded_audio;
317     int i_decoded_video;
318
319     /* Vout */
320     int i_displayed_pictures;
321     int i_lost_pictures;
322
323     /* Sout */
324     int i_sent_packets;
325     int i_sent_bytes;
326     float f_send_bitrate;
327
328     /* Aout */
329     int i_played_abuffers;
330     int i_lost_abuffers;
331 };
332
333 VLC_EXPORT( void, stats_ComputeInputStats, (input_thread_t*, input_stats_t*) );
334 VLC_EXPORT( void, stats_ReinitInputStats, (input_stats_t *) );
335 VLC_EXPORT( void, stats_DumpInputStats, (input_stats_t *) );
336
337 /********************
338  * Global stats
339  *******************/
340 struct global_stats_t
341 {
342     vlc_mutex_t lock;
343
344     float f_input_bitrate;
345     float f_demux_bitrate;
346     float f_output_bitrate;
347
348     int i_http_clients;
349 };
350
351 #define stats_ComputeGlobalStats(a,b) __stats_ComputeGlobalStats( VLC_OBJECT(a),b)
352 VLC_EXPORT( void, __stats_ComputeGlobalStats, (vlc_object_t*,global_stats_t*));
353
354
355 /*********
356  * Timing
357  ********/
358 #ifndef NDEBUG
359 #define stats_TimerStart(a,b,c) __stats_TimerStart( VLC_OBJECT(a), b,c )
360 #define stats_TimerStop(a,b) __stats_TimerStop( VLC_OBJECT(a), b )
361 #define stats_TimerDump(a,b) __stats_TimerDump( VLC_OBJECT(a), b )
362 #define stats_TimersDumpAll(a) __stats_TimersDumpAll( VLC_OBJECT(a) )
363 #else
364 #define stats_TimerStart(a,b,c) {}
365 #define stats_TimerStop(a,b) {}
366 #define stats_TimerDump(a,b) {}
367 #define stats_TimersDumpAll(a) {}
368 #endif
369 VLC_EXPORT( void,__stats_TimerStart, (vlc_object_t*, const char *, unsigned int ) );
370 VLC_EXPORT( void,__stats_TimerStop, (vlc_object_t*, unsigned int) );
371 VLC_EXPORT( void,__stats_TimerDump, (vlc_object_t*, unsigned int) );
372 VLC_EXPORT( void,__stats_TimersDumpAll, (vlc_object_t*) );
373 #define stats_TimersClean(a) __stats_TimersClean( VLC_OBJECT(a) )
374 VLC_EXPORT( void, __stats_TimersClean, (vlc_object_t * ) );
375
376 #endif