]> git.sesse.net Git - vlc/blob - src/control/libvlc_internal.h
control/media_discoverer.c: Publish media_discoverer_is_running().
[vlc] / src / control / libvlc_internal.h
1 /*****************************************************************************
2  * libvlc_internal.h : Definition of opaque structures for libvlc exported API
3  * Also contains some internal utility functions
4  *****************************************************************************
5  * Copyright (C) 2005 the VideoLAN team
6  * $Id: control_structures.h 13752 2005-12-15 10:14:42Z oaubert $
7  *
8  * Authors: ClĂ©ment Stenac <zorglub@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 #ifndef _LIBVLC_INTERNAL_H
26 #define _LIBVLC_INTERNAL_H 1
27
28 #include <vlc/vlc.h>
29 #include <vlc/libvlc_structures.h>
30
31 #include <vlc_arrays.h>
32 #include <vlc_input.h>
33
34 # ifdef __cplusplus
35 extern "C" {
36 # endif
37
38 /***************************************************************************
39  * Internal creation and destruction functions
40  ***************************************************************************/
41 VLC_EXPORT (libvlc_int_t *, libvlc_InternalCreate, ( void ) );
42 VLC_EXPORT (int, libvlc_InternalInit, ( libvlc_int_t *, int, const char *ppsz_argv[] ) );
43 VLC_EXPORT (int, libvlc_InternalCleanup, ( libvlc_int_t * ) );
44 VLC_EXPORT (int, libvlc_InternalDestroy, ( libvlc_int_t *, vlc_bool_t ) );
45
46 VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_bool_t,
47                             vlc_bool_t, int, const char *const * ) );
48
49 VLC_EXPORT (void, libvlc_event_init, ( libvlc_instance_t *, libvlc_exception_t * ) );
50 VLC_EXPORT (void, libvlc_event_fini, ( libvlc_instance_t * ) );
51
52
53 /***************************************************************************
54  * Opaque structures for libvlc API
55  ***************************************************************************/
56
57 typedef int * libvlc_media_list_path_t; /* (Media List Player Internal) */
58
59 typedef enum libvlc_lock_state_t
60 {
61     libvlc_Locked,
62     libvlc_UnLocked
63 } libvlc_lock_state_t;
64
65 struct libvlc_instance_t
66 {
67     libvlc_int_t *p_libvlc_int;
68     vlm_t        *p_vlm;
69     int           b_playlist_locked;
70     unsigned      ref_count;
71     vlc_mutex_t   instance_lock;
72     vlc_mutex_t   event_callback_lock;
73     struct libvlc_callback_entry_list_t *p_callback_list;
74 };
75
76 struct libvlc_tags_storage_t
77 {
78     char ** ppsz_tags;
79     int i_count;
80 };
81
82 struct libvlc_media_descriptor_t
83 {
84     libvlc_event_manager_t * p_event_manager;
85     int                b_preparsed;
86     input_item_t      *p_input_item;
87     int                i_refcount;
88     libvlc_instance_t *p_libvlc_instance;
89     vlc_dictionary_t   tags; /* To be merged with core's meta soon */
90     libvlc_state_t     state;
91     struct libvlc_media_list_t *p_subitems; /* A media descriptor can have
92                                            * Sub item */
93     void *p_user_data; /* Allows for VLC.framework to hook into media descriptor without creating a new VLCMedia object. */
94 };
95
96 struct libvlc_tag_query_t
97 {
98     struct libvlc_instance_t  *p_libvlc_instance; /* Parent instance */
99     int                i_refcount;
100     libvlc_tag_t       tag;
101     char *             psz_tag_key;
102 };
103
104 struct libvlc_media_list_t
105 {
106     libvlc_event_manager_t *    p_event_manager;
107     libvlc_instance_t *         p_libvlc_instance;
108     int                         i_refcount;
109     vlc_mutex_t                 object_lock;
110     libvlc_media_descriptor_t * p_md; /* The media_descriptor from which the
111                                        * mlist comes, if any. */
112     vlc_array_t                items;
113  
114     /* Other way to see that media list */
115     /* Used in flat_media_list.c */
116     libvlc_media_list_t *       p_flat_mlist;
117 };
118
119 typedef void (*libvlc_media_list_view_release_func_t)( libvlc_media_list_view_t * p_mlv ) ;
120
121 typedef int (*libvlc_media_list_view_count_func_t)( libvlc_media_list_view_t * p_mlv,
122         libvlc_exception_t * ) ;
123
124 typedef libvlc_media_descriptor_t *
125         (*libvlc_media_list_view_item_at_index_func_t)(
126                 libvlc_media_list_view_t * p_mlv,
127                 int index,
128                 libvlc_exception_t * ) ;
129
130 typedef libvlc_media_list_view_t *
131         (*libvlc_media_list_view_children_at_index_func_t)(
132                 libvlc_media_list_view_t * p_mlv,
133                 int index,
134                 libvlc_exception_t * ) ;
135
136 /* A way to see a media list */
137 struct libvlc_media_list_view_t
138 {
139     libvlc_event_manager_t *    p_event_manager;
140     libvlc_instance_t *         p_libvlc_instance;
141     int                         i_refcount;
142     vlc_mutex_t                 object_lock;
143     
144     libvlc_media_list_t *       p_mlist;
145
146     struct libvlc_media_list_view_private_t * p_this_view_data;
147
148     /* Accessors */
149     libvlc_media_list_view_count_func_t              pf_count;
150     libvlc_media_list_view_item_at_index_func_t      pf_item_at_index;
151     libvlc_media_list_view_children_at_index_func_t  pf_children_at_index;
152
153     libvlc_media_list_view_release_func_t            pf_release;
154
155     /* Notification callback */
156     void (*pf_ml_item_added)(const libvlc_event_t *, libvlc_media_list_view_t *);
157     void (*pf_ml_item_removed)(const libvlc_event_t *, libvlc_media_list_view_t *);
158 };
159
160 struct libvlc_dynamic_media_list_t
161 {
162     libvlc_instance_t *     p_libvlc_instance;
163     int                     i_refcount;
164     libvlc_media_list_t *   p_media_provider;
165     libvlc_tag_query_t *    p_query;
166     char *                  psz_tag_key;
167     libvlc_tag_t            tag;
168     struct libvlc_media_list_t *  p_mlist;
169     struct libvlc_media_list_t *  p_provider;
170 };
171
172 struct libvlc_media_instance_t
173 {
174     int                i_refcount;
175     vlc_mutex_t        object_lock;
176     int i_input_id;  /* Input object id. We don't use a pointer to
177                         avoid any crash */
178     struct libvlc_instance_t *  p_libvlc_instance; /* Parent instance */
179     libvlc_media_descriptor_t * p_md; /* current media descriptor */
180     libvlc_event_manager_t *    p_event_manager;
181     libvlc_drawable_t           drawable;
182     
183     vlc_bool_t        b_own_its_input_thread;
184 };
185
186 struct libvlc_media_list_player_t
187 {
188     libvlc_event_manager_t *    p_event_manager;
189     libvlc_instance_t *         p_libvlc_instance;
190     int                         i_refcount;
191     vlc_mutex_t                 object_lock;
192     libvlc_media_list_path_t    current_playing_item_path;
193     libvlc_media_descriptor_t * p_current_playing_item;
194     libvlc_media_list_t *       p_mlist;
195     libvlc_media_instance_t *   p_mi;
196 };
197
198 struct libvlc_media_library_t
199 {
200     libvlc_event_manager_t * p_event_manager;
201     libvlc_instance_t *      p_libvlc_instance;
202     int                      i_refcount;
203     libvlc_media_list_t *    p_mlist;
204 };
205
206 struct libvlc_media_discoverer_t
207 {
208     libvlc_event_manager_t * p_event_manager;
209     libvlc_instance_t *      p_libvlc_instance;
210     services_discovery_t *   p_sd;
211     libvlc_media_list_t *    p_mlist;
212     vlc_bool_t               running;
213 };
214
215 /*
216  * Event Handling
217  */
218 /* Example usage
219  *
220  * struct libvlc_cool_object_t
221  * {
222  *        ...
223  *        libvlc_event_manager_t * p_event_manager;
224  *        ...
225  * }
226  *
227  * libvlc_my_cool_object_new()
228  * {
229  *        ...
230  *        p_self->p_event_manager = libvlc_event_manager_init( p_self,
231  *                                                   p_self->p_libvlc_instance, p_e);
232  *        libvlc_event_manager_register_event_type(p_self->p_event_manager,
233  *                libvlc_MyCoolObjectDidSomething, p_e)
234  *        ...
235  * }
236  *
237  * libvlc_my_cool_object_release()
238  * {
239  *         ...
240  *         libvlc_event_manager_release( p_self->p_event_manager );
241  *         ...
242  * }
243  *
244  * libvlc_my_cool_object_do_something()
245  * {
246  *        ...
247  *        libvlc_event_t event;
248  *        event.type = libvlc_MyCoolObjectDidSomething;
249  *        event.u.my_cool_object_did_something.what_it_did = kSomething;
250  *        libvlc_event_send( p_self->p_event_manager, &event );
251  * }
252  * */
253
254 typedef struct libvlc_event_listener_t
255 {
256     libvlc_event_type_t event_type;
257     void *              p_user_data;
258     libvlc_callback_t   pf_callback;
259 } libvlc_event_listener_t;
260
261 typedef struct libvlc_event_listeners_group_t
262 {
263     libvlc_event_type_t event_type;
264     DECL_ARRAY(libvlc_event_listener_t *) listeners;
265 } libvlc_event_listeners_group_t;
266
267 typedef struct libvlc_event_manager_t
268 {
269     void * p_obj;
270     struct libvlc_instance_t * p_libvlc_instance;
271     DECL_ARRAY(libvlc_event_listeners_group_t *) listeners_groups;
272     vlc_mutex_t object_lock;
273     vlc_mutex_t event_sending_lock;
274 } libvlc_event_sender_t;
275
276
277 /***************************************************************************
278  * Other internal functions
279  ***************************************************************************/
280 VLC_EXPORT (input_thread_t *, libvlc_get_input_thread,
281                         ( struct libvlc_media_instance_t *, libvlc_exception_t * ) );
282
283 /* Media instance */
284 VLC_EXPORT (libvlc_media_instance_t *, libvlc_media_instance_new_from_input_thread,
285                         ( struct libvlc_instance_t *, input_thread_t *, libvlc_exception_t * ) );
286
287 VLC_EXPORT (void, libvlc_media_instance_destroy,
288                         ( libvlc_media_instance_t * ) );
289
290 /* Media Descriptor */
291 VLC_EXPORT (libvlc_media_descriptor_t *, libvlc_media_descriptor_new_from_input_item,
292                         ( struct libvlc_instance_t *, input_item_t *, libvlc_exception_t * ) );
293
294 VLC_EXPORT (libvlc_media_descriptor_t *, libvlc_media_descriptor_duplicate,
295                         ( libvlc_media_descriptor_t * ) );
296
297 VLC_EXPORT (void, libvlc_media_descriptor_set_state,
298                         ( libvlc_media_descriptor_t *, libvlc_state_t, libvlc_exception_t * ) );
299
300 /* Media List View */
301 VLC_EXPORT ( libvlc_media_list_view_t *, libvlc_media_list_view_new,
302                           ( libvlc_media_list_t * p_mlist,
303                             libvlc_media_list_view_count_func_t pf_count,
304                             libvlc_media_list_view_item_at_index_func_t pf_item_at_index,
305                             libvlc_media_list_view_children_at_index_func_t pf_children_at_index,
306                             libvlc_media_list_view_release_func_t pf_release,
307                             void * this_view_data,
308                             libvlc_exception_t * p_e ) );
309
310 VLC_EXPORT ( void, libvlc_media_list_view_set_ml_notification_callback, (
311                 libvlc_media_list_view_t * p_mlv,
312                 void (*item_added)(const libvlc_event_t *, libvlc_media_list_view_t *),
313                 void (*item_removed)(const libvlc_event_t *, libvlc_media_list_view_t *) ));
314
315 VLC_EXPORT ( void, libvlc_media_list_view_will_delete_item, ( libvlc_media_list_view_t * p_mlv,
316                                                               libvlc_media_descriptor_t * p_item,
317                                                               int index ));
318 VLC_EXPORT ( void, libvlc_media_list_view_item_deleted, ( libvlc_media_list_view_t * p_mlv,
319                                                           libvlc_media_descriptor_t * p_item,
320                                                           int index ));
321 VLC_EXPORT ( void, libvlc_media_list_view_will_add_item, ( libvlc_media_list_view_t * p_mlv,
322                                                            libvlc_media_descriptor_t * p_item,
323                                                            int index ));
324 VLC_EXPORT ( void, libvlc_media_list_view_item_added, ( libvlc_media_list_view_t * p_mlv,
325                                                         libvlc_media_descriptor_t * p_item,
326                                                         int index ));
327
328 /* Events */
329 VLC_EXPORT (libvlc_event_manager_t *, libvlc_event_manager_new, ( void * p_obj, libvlc_instance_t * p_libvlc_inst, libvlc_exception_t *p_e ) );
330
331 VLC_EXPORT (void, libvlc_event_manager_release, ( libvlc_event_manager_t * p_em ) );
332
333 VLC_EXPORT (void, libvlc_event_manager_register_event_type, ( libvlc_event_manager_t * p_em, libvlc_event_type_t event_type, libvlc_exception_t * p_e ) );
334 VLC_EXPORT (void, libvlc_event_detach_lock_state, ( libvlc_event_manager_t *p_event_manager, libvlc_event_type_t event_type, libvlc_callback_t pf_callback,
335                                                     void *p_user_data, libvlc_lock_state_t lockstate, libvlc_exception_t *p_e ) );
336
337 VLC_EXPORT (void, libvlc_event_send, ( libvlc_event_manager_t * p_em, libvlc_event_t * p_event ) );
338
339
340 /* Exception shorcuts */
341
342 #define RAISENULL( psz,a... ) { libvlc_exception_raise( p_e, psz,##a ); \
343                                 return NULL; }
344 #define RAISEVOID( psz,a... ) { libvlc_exception_raise( p_e, psz,##a ); \
345                                 return; }
346 #define RAISEZERO( psz,a... ) { libvlc_exception_raise( p_e, psz,##a ); \
347                                 return 0; }
348
349 # ifdef __cplusplus
350 }
351 # endif
352
353 #endif