]> git.sesse.net Git - vlc/blob - src/control/log.c
20a89832b33cf5915c33ffc27f41565031ef91db
[vlc] / src / control / log.c
1 /*****************************************************************************
2  * log.c: libvlc new API log functions
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  *
6  * $Id$
7  *
8  * Authors: Damien Fouilleul <damienf@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include "libvlc_internal.h"
26 #include <vlc/libvlc.h>
27 #include <assert.h>
28
29 /* This API is terminally broken.
30  * First, it does not implement any kind of notification.
31  * Second, the iterating scheme is hermetic to any kind of thread-safety
32  * owing to its constant pointer constraints.
33  *  -- Courmisch
34  *
35  * "If you break your leg, don't run to me for sympathy"
36  *   -- some character, Beneath a Steel Sky
37  */
38
39 struct msg_cb_data_t
40 {
41     vlc_spinlock_t lock;
42     msg_item_t *items[VLC_MSG_QSIZE];
43     unsigned    count;
44     int         verbosity;
45 };
46
47 static void handler( msg_cb_data_t *d, msg_item_t *p_item, unsigned i_drop )
48 {
49     if (p_item->i_type > d->verbosity)
50         return;
51
52     vlc_spin_lock (&d->lock);
53     if (d->count < VLC_MSG_QSIZE)
54     {
55         d->items[d->count++] = p_item;
56         msg_Hold (p_item);
57     }
58     vlc_spin_unlock (&d->lock);
59     (void)i_drop;
60 }
61
62 struct libvlc_log_t
63 {
64     libvlc_instance_t  *p_instance;
65     msg_subscription_t *p_messages;
66     msg_cb_data_t       data;
67 };
68
69 struct libvlc_log_iterator_t
70 {
71     msg_cb_data_t *p_data;
72     unsigned i_pos;
73     unsigned i_end;
74 };
75
76 unsigned libvlc_get_log_verbosity( const libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
77 {
78     assert( p_instance );
79     (void)p_e;
80     return p_instance->verbosity;
81 }
82
83 void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, unsigned level, libvlc_exception_t *p_e )
84 {
85     assert( p_instance );
86     (void)p_e;
87     p_instance->verbosity = level;
88 }
89
90 libvlc_log_t *libvlc_log_open( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
91 {
92     struct libvlc_log_t *p_log =
93         (struct libvlc_log_t *)malloc(sizeof(struct libvlc_log_t));
94
95     if( !p_log ) RAISENULL( "Out of memory" );
96
97     p_log->p_instance = p_instance;
98     vlc_spin_init( &p_log->data.lock );
99     p_log->data.count = 0;
100     p_log->data.verbosity = p_instance->verbosity;
101     p_log->p_messages = msg_Subscribe(p_instance->p_libvlc_int, handler, &p_log->data);
102
103     if( !p_log->p_messages )
104     {
105         free( p_log );
106         RAISENULL( "Out of memory" );
107     }
108
109     libvlc_retain( p_instance );
110     return p_log;
111 }
112
113 void libvlc_log_close( libvlc_log_t *p_log, libvlc_exception_t *p_e )
114 {
115     if( !p_log )
116         return;
117
118     assert( p_log->p_messages );
119     msg_Unsubscribe(p_log->p_messages);
120     libvlc_release( p_log->p_instance );
121     libvlc_log_clear( p_log, p_e );
122     vlc_spin_destroy( &p_log->data.lock );
123     free(p_log);
124 }
125
126 unsigned libvlc_log_count( const libvlc_log_t *p_log, libvlc_exception_t *p_e )
127 {
128     if( !p_log )
129         return 0;
130
131     msg_cb_data_t *data = &((libvlc_log_t *)p_log)->data;
132     unsigned ret;
133
134     /* We cannot lock due to constant pointer constraints. Break them.
135      * Even then, this si not really thread safe anyway. */
136     vlc_spin_lock (&data->lock);
137     ret = data->count;
138     vlc_spin_unlock (&data->lock);
139     return ret;
140 }
141
142 void libvlc_log_clear( libvlc_log_t *p_log, libvlc_exception_t *p_e )
143 {
144     if( !p_log )
145         return;
146
147     vlc_spin_lock (&p_log->data.lock);
148     msg_item_t *tab[p_log->data.count];
149     memcpy (tab, p_log->data.items, sizeof (tab));
150     p_log->data.count = 0;
151     vlc_spin_unlock (&p_log->data.lock);
152
153     for (unsigned i = 0; i < sizeof (tab) / sizeof (tab[0]); i++)
154          msg_Release (tab[i]);
155 }
156
157 libvlc_log_iterator_t *libvlc_log_get_iterator( const libvlc_log_t *p_log, libvlc_exception_t *p_e )
158 {
159     if( p_log )
160     {
161         struct libvlc_log_iterator_t *p_iter =
162             (struct libvlc_log_iterator_t *)malloc(sizeof(struct libvlc_log_iterator_t));
163         /* FIXME: break constant pointer constraints */
164         msg_cb_data_t *data = &((libvlc_log_t *)p_log)->data;
165
166         if( !p_iter ) RAISENULL( "Out of memory" );
167
168         vlc_spin_lock (&data->lock);
169         p_iter->p_data  = data;
170         p_iter->i_pos   = 0;
171         p_iter->i_end   = data->count;
172         vlc_spin_unlock (&data->lock);
173
174         return p_iter;
175     }
176     RAISENULL("Invalid log object!");
177 }
178
179 void libvlc_log_iterator_free( libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e )
180 {
181     free( p_iter );
182 }
183
184 int libvlc_log_iterator_has_next( const libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e )
185 {
186     if( !p_iter )
187         return 0;
188     return p_iter->i_pos != p_iter->i_end;
189 }
190
191 libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterator_t *p_iter,
192                                                 libvlc_log_message_t *buffer,
193                                                 libvlc_exception_t *p_e )
194 {
195     unsigned i_pos;
196
197     if( !p_iter )
198         return NULL;
199     assert( buffer );
200
201     i_pos = p_iter->i_pos;
202     if( i_pos != p_iter->i_end )
203     {
204         msg_item_t *msg;
205         vlc_spin_lock (&p_iter->p_data->lock);
206         msg = p_iter->p_data->items[i_pos];
207         buffer->i_severity  = msg->i_type;
208         buffer->psz_type    = msg->psz_object_type;
209         buffer->psz_name    = msg->psz_module;
210         buffer->psz_header  = msg->psz_header;
211         buffer->psz_message = msg->psz_msg;
212         vlc_spin_unlock (&p_iter->p_data->lock);
213         p_iter->i_pos++;
214
215         return buffer;
216     }
217     RAISENULL("No more messages");
218 }