]> git.sesse.net Git - vlc/blob - include/vlc_messages.h
* ALL: new module API. Makes a few things a lot simpler, and we gain
[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 VideoLAN
7  * $Id: vlc_messages.h,v 1.5 2002/07/31 20:56:50 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 #include <stdarg.h>
28
29 /*****************************************************************************
30  * msg_item_t
31  *****************************************************************************
32  * Store a single message.
33  *****************************************************************************/
34 typedef struct
35 {
36     int     i_type;                               /* message type, see below */
37     int     i_object_id;
38     char *  psz_module;
39     char *  psz_msg;                                   /* the message itself */
40
41 #if 0
42     mtime_t date;                                     /* date of the message */
43     char *  psz_file;               /* file in which the function was called */
44     char *  psz_function;     /* function from which the function was called */
45     int     i_line;                 /* line at which the function was called */
46 #endif
47 } msg_item_t;
48
49 /* Message types */
50 #define VLC_MSG_INFO  0                                 /* standard messages */
51 #define VLC_MSG_ERR   1                                    /* error messages */
52 #define VLC_MSG_WARN  2                                  /* warning messages */
53 #define VLC_MSG_DBG   3                                    /* debug messages */
54
55 /*****************************************************************************
56  * msg_bank_t
57  *****************************************************************************
58  * Store all data requiered by messages interfaces.
59  *****************************************************************************/
60 struct msg_bank_t
61 {
62     /* Message queue lock */
63     vlc_mutex_t             lock;
64     vlc_bool_t              b_configured;
65     vlc_bool_t              b_overflow;
66
67     /* Message queue */
68     msg_item_t              msg[VLC_MSG_QSIZE];             /* message queue */
69     int i_start;
70     int i_stop;
71
72     /* Subscribers */
73     int i_sub;
74     msg_subscription_t **pp_sub;
75 };
76
77 /*****************************************************************************
78  * msg_subscription_t
79  *****************************************************************************
80  * Used by interface plugins which subscribe to the message bank.
81  *****************************************************************************/
82 struct msg_subscription_t
83 {
84     int   i_start;
85     int*  pi_stop;
86
87     msg_item_t*  p_msg;
88     vlc_mutex_t* p_lock;
89 };
90
91 /*****************************************************************************
92  * Prototypes
93  *****************************************************************************/
94 VLC_EXPORT( void, __msg_Generic, ( vlc_object_t *, int, const char *, const char *, ... ) );
95 VLC_EXPORT( void, __msg_Info,    ( void *, const char *, ... ) );
96 VLC_EXPORT( void, __msg_Err,     ( void *, const char *, ... ) );
97 VLC_EXPORT( void, __msg_Warn,    ( void *, const char *, ... ) );
98 VLC_EXPORT( void, __msg_Dbg,    ( void *, const char *, ... ) );
99
100 #ifdef HAVE_VARIADIC_MACROS
101
102 #   define msg_Info( p_this, psz_format, args... ) \
103       __msg_Generic( VLC_OBJECT(p_this), VLC_MSG_INFO, MODULE_STRING, \
104                      psz_format, ## args )
105
106 #   define msg_Err( p_this, psz_format, args... ) \
107       __msg_Generic( VLC_OBJECT(p_this), VLC_MSG_ERR, MODULE_STRING, \
108                      psz_format, ## args )
109
110 #   define msg_Warn( p_this, psz_format, args... ) \
111       __msg_Generic( VLC_OBJECT(p_this), VLC_MSG_WARN, MODULE_STRING, \
112                      psz_format, ## args )
113
114 #   define msg_Dbg( p_this, psz_format, args... ) \
115       __msg_Generic( VLC_OBJECT(p_this), VLC_MSG_DBG, MODULE_STRING, \
116                      psz_format, ## args )
117
118 #else /* HAVE_VARIADIC_MACROS */
119
120 #   define msg_Info __msg_Info
121 #   define msg_Err __msg_Err
122 #   define msg_Warn __msg_Warn
123 #   define msg_Dbg __msg_Dbg
124
125 #endif /* HAVE_VARIADIC_MACROS */
126
127 #define msg_Create(a) __msg_Create(VLC_OBJECT(a))
128 #define msg_Flush(a) __msg_Flush(VLC_OBJECT(a))
129 #define msg_Destroy(a) __msg_Destroy(VLC_OBJECT(a))
130 void __msg_Create  ( vlc_object_t * );
131 void __msg_Flush   ( vlc_object_t * );
132 void __msg_Destroy ( vlc_object_t * );
133
134 #define msg_Subscribe(a) __msg_Subscribe(VLC_OBJECT(a))
135 #define msg_Unsubscribe(a,b) __msg_Unsubscribe(VLC_OBJECT(a),b)
136 VLC_EXPORT( msg_subscription_t*, __msg_Subscribe, ( vlc_object_t * ) );
137 VLC_EXPORT( void, __msg_Unsubscribe, ( vlc_object_t *, msg_subscription_t * ) );
138