audiotracy: always request the timestamp during the syncing phase
[vlc.git] / include / vlc_events.h
blob61c6ee9b31301704131f4b82f33bf3df131a474f
1 /*****************************************************************************
2 * vlc_events.h: events definitions
3 * Interface used to send events.
4 *****************************************************************************
5 * Copyright (C) 2007 VLC authors and VideoLAN
7 * Authors: Pierre d'Herbemont
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef VLC_EVENTS_H
25 # define VLC_EVENTS_H
27 #include <vlc_arrays.h>
28 #include <vlc_meta.h>
30 /**
31 * \file
32 * This file is the interface definition for events
33 * (implementation in src/misc/events.c)
36 /*****************************************************************************
37 * Documentation
38 *****************************************************************************/
40 **** Background
42 * This implements a way to send and receive event for an object (which can be
43 * a simple C struct or less).
45 * This is in direct concurrency with the Variable based Callback
46 * (see src/misc/variables.c).
48 * It has the following advantages over Variable based Callback:
49 * - No need to implement the whole vlc_object_t in the object,
50 * thus it reduce it size. This is especially true for input_item_t which
51 * doesn't have vlc_object_t. This is the first reason of existence of
52 * this implementation.
53 * - Libvlc can easily be based upon that.
54 * - Existing event are clearly declared (in include/vlc_events.h)
57 **** Example usage
59 * (vlc_cool_object_t doesn't need to have the vlc_object_t.)
61 * struct vlc_cool_object_t
62 * {
63 * ...
64 * vlc_event_manager_t p_event_manager;
65 * ...
66 * }
68 * vlc_my_cool_object_new()
69 * {
70 * ...
71 * vlc_event_manager_init( &p_self->p_event_manager, p_self, p_a_libvlc_object );
72 * ...
73 * }
75 * vlc_my_cool_object_release()
76 * {
77 * ...
78 * vlc_event_manager_fini( &p_self->p_event_manager );
79 * ...
80 * }
82 * vlc_my_cool_object_do_something()
83 * {
84 * ...
85 * vlc_event_t event;
86 * event.type = vlc_MyCoolObjectDidSomething;
87 * event.u.my_cool_object_did_something.what_it_did = kSomething;
88 * vlc_event_send( &p_self->p_event_manager, &event );
89 * }
90 * */
92 /*****************************************************************************
93 * Event Type
94 *****************************************************************************/
96 /* List of event */
97 typedef enum vlc_event_type_t {
98 /* Input item events */
99 vlc_InputItemMetaChanged,
100 vlc_InputItemDurationChanged,
101 vlc_InputItemPreparsedChanged,
102 vlc_InputItemNameChanged,
103 vlc_InputItemInfoChanged,
104 vlc_InputItemErrorWhenReadingChanged,
105 vlc_InputItemAttachmentsFound,
106 } vlc_event_type_t;
108 typedef struct vlc_event_listeners_group_t
110 DECL_ARRAY(struct vlc_event_listener_t *) listeners;
111 } vlc_event_listeners_group_t;
113 /* Event manager type */
114 typedef struct vlc_event_manager_t
116 void * p_obj;
117 vlc_mutex_t lock;
118 vlc_event_listeners_group_t events[vlc_InputItemAttachmentsFound + 1];
119 } vlc_event_manager_t;
121 /* Event definition */
122 typedef struct vlc_event_t
124 vlc_event_type_t type;
125 void * p_obj; /* Sender object, automatically filled by vlc_event_send() */
126 union vlc_event_type_specific
128 /* Input item events */
129 struct vlc_input_item_meta_changed
131 vlc_meta_type_t meta_type;
132 } input_item_meta_changed;
133 struct vlc_input_item_subitem_added
135 input_item_t * p_new_child;
136 } input_item_subitem_added;
137 struct vlc_input_item_subitem_tree_added
139 input_item_node_t * p_root;
140 } input_item_subitem_tree_added;
141 struct vlc_input_item_duration_changed
143 vlc_tick_t new_duration;
144 } input_item_duration_changed;
145 struct vlc_input_item_preparsed_changed
147 int new_status;
148 } input_item_preparsed_changed;
149 struct vlc_input_item_name_changed
151 const char * new_name;
152 } input_item_name_changed;
153 struct vlc_input_item_info_changed
155 void * unused;
156 } input_item_info_changed;
157 struct input_item_error_when_reading_changed
159 bool new_value;
160 } input_item_error_when_reading_changed;
161 struct input_item_preparse_ended
163 int new_status;
164 } input_item_preparse_ended;
165 struct input_item_attachments_found
167 input_attachment_t** attachments;
168 size_t count;
169 } input_item_attachments_found;
170 } u;
171 } vlc_event_t;
173 /* Event callback type */
174 typedef void ( *vlc_event_callback_t )( const vlc_event_t *, void * );
176 /*****************************************************************************
177 * Event manager
178 *****************************************************************************/
181 * p_obj points to the object that owns the event manager, and from
182 * which events are sent
184 void vlc_event_manager_init( vlc_event_manager_t * p_em, void * p_obj );
187 * Destroy
189 void vlc_event_manager_fini( vlc_event_manager_t * p_em );
192 * Send an event to the listener attached to this p_em.
194 void vlc_event_send( vlc_event_manager_t * p_em, vlc_event_t * );
197 * Add a callback for an event.
199 VLC_API int vlc_event_attach( vlc_event_manager_t * p_event_manager,
200 vlc_event_type_t event_type,
201 vlc_event_callback_t pf_callback,
202 void *p_user_data );
205 * Remove a callback for an event.
207 VLC_API void vlc_event_detach( vlc_event_manager_t *p_event_manager,
208 vlc_event_type_t event_type,
209 vlc_event_callback_t pf_callback,
210 void *p_user_data );
212 #endif /* VLC_EVENTS_H */