]> git.sesse.net Git - vlc/blob - include/vlc/libvlc.h
Add a proper API to set the user agent
[vlc] / include / vlc / libvlc.h
1 /*****************************************************************************
2  * libvlc.h:  libvlc external API
3  *****************************************************************************
4  * Copyright (C) 1998-2009 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Clément Stenac <zorglub@videolan.org>
8  *          Jean-Paul Saman <jpsaman@videolan.org>
9  *          Pierre d'Herbemont <pdherbemont@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /**
27  * \file
28  * This file defines libvlc external API
29  */
30
31 /**
32  * \defgroup libvlc LibVLC
33  * LibVLC is the external programming interface of the VLC media player.
34  * It is used to embed VLC into other applications or frameworks.
35  * @{
36  */
37
38 #ifndef VLC_LIBVLC_H
39 #define VLC_LIBVLC_H 1
40
41 #if defined (WIN32) && defined (DLL_EXPORT)
42 # define VLC_PUBLIC_API __declspec(dllexport)
43 #else
44 # define VLC_PUBLIC_API
45 #endif
46
47 #ifdef __LIBVLC__
48 /* Avoid unuseful warnings from libvlc with our deprecated APIs */
49 #   define VLC_DEPRECATED_API VLC_PUBLIC_API
50 #elif defined(__GNUC__) && \
51       (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
52 # define VLC_DEPRECATED_API VLC_PUBLIC_API __attribute__((deprecated))
53 #else
54 # define VLC_DEPRECATED_API VLC_PUBLIC_API
55 #endif
56
57 # ifdef __cplusplus
58 extern "C" {
59 # endif
60
61 #include <stdarg.h>
62 #include <vlc/libvlc_structures.h>
63
64 /** \defgroup libvlc_core LibVLC core
65  * \ingroup libvlc
66  * Before it can do anything useful, LibVLC must be initialized.
67  * You can create one (or more) instance(s) of LibVLC in a given process,
68  * with libvlc_new() and destroy them with libvlc_release().
69  *
70  * \version Unless otherwise stated, these functions are available
71  * from LibVLC versions numbered 1.1.0 or more.
72  * Earlier versions (0.9.x and 1.0.x) are <b>not</b> compatible.
73  * @{
74  */
75
76 /** \defgroup libvlc_error LibVLC error handling
77  * @{
78  */
79
80 /**
81  * A human-readable error message for the last LibVLC error in the calling
82  * thread. The resulting string is valid until another error occurs (at least
83  * until the next LibVLC call).
84  *
85  * @warning
86  * This will be NULL if there was no error.
87  */
88 VLC_PUBLIC_API const char *libvlc_errmsg (void);
89
90 /**
91  * Clears the LibVLC error status for the current thread. This is optional.
92  * By default, the error status is automatically overriden when a new error
93  * occurs, and destroyed when the thread exits.
94  */
95 VLC_PUBLIC_API void libvlc_clearerr (void);
96
97 /**
98  * Sets the LibVLC error status and message for the current thread.
99  * Any previous error is overriden.
100  * \return a nul terminated string in any case
101  */
102 const char *libvlc_vprinterr (const char *fmt, va_list ap);
103
104 /**
105  * Sets the LibVLC error status and message for the current thread.
106  * Any previous error is overriden.
107  * \return a nul terminated string in any case
108  */
109 const char *libvlc_printerr (const char *fmt, ...);
110
111 /**@} */
112
113 /**
114  * Create and initialize a libvlc instance.
115  *
116  * \param argc the number of arguments
117  * \param argv command-line-type arguments
118  * \return the libvlc instance or NULL in case of error
119  */
120 VLC_PUBLIC_API libvlc_instance_t *
121 libvlc_new( int argc , const char *const *argv );
122
123 /**
124  * Decrement the reference count of a libvlc instance, and destroy it
125  * if it reaches zero.
126  *
127  * \param p_instance the instance to destroy
128  */
129 VLC_PUBLIC_API void libvlc_release( libvlc_instance_t *p_instance );
130
131 /**
132  * Increments the reference count of a libvlc instance.
133  * The initial reference count is 1 after libvlc_new() returns.
134  *
135  * \param p_instance the instance to reference
136  */
137 VLC_PUBLIC_API void libvlc_retain( libvlc_instance_t *p_instance );
138
139 /**
140  * Try to start a user interface for the libvlc instance.
141  *
142  * \param p_instance the instance
143  * \param name interface name, or NULL for default
144  * \return 0 on success, -1 on error.
145  */
146 VLC_PUBLIC_API
147 int libvlc_add_intf( libvlc_instance_t *p_instance, const char *name );
148
149 /**
150  * Registers a callback for the LibVLC exit event. This is mostly useful if
151  * you have started at least one interface with libvlc_add_intf().
152  * Typically, this function will wake up your application main loop (from
153  * another thread).
154  *
155  * \param p_instance LibVLC instance
156  * \param cb callback to invoke when LibVLC wants to exit
157  * \param opaque data pointer for the callback
158  * \warning This function and libvlc_wait() cannot be used at the same time.
159  * Use either or none of them but not both.
160  */
161 VLC_PUBLIC_API
162 void libvlc_set_exit_handler( libvlc_instance_t *p_instance,
163                               void (*cb) (void *), void *opaque );
164
165 /**
166  * Waits until an interface causes the instance to exit.
167  * You should start at least one interface first, using libvlc_add_intf().
168  *
169  * \param p_instance the instance
170  */
171 VLC_PUBLIC_API
172 void libvlc_wait( libvlc_instance_t *p_instance );
173
174 /**
175  * Sets the application name. LibVLC passes this as the user agent string
176  * when a protocol requires it.
177  *
178  * \param p_instance LibVLC instance
179  * \param name human-readable application name, e.g. "FooBar player 1.2.3"
180  * \param http HTTP User Agent, e.g. "FooBar/1.2.3 Python/2.6.0"
181  * \version LibVLC 1.1.1 or later
182  */
183 VLC_PUBLIC_API
184 void libvlc_set_user_agent( libvlc_instance_t *p_instance,
185                             const char *name, const char *http );
186
187 /**
188  * Retrieve libvlc version.
189  *
190  * Example: "1.1.0-git The Luggage"
191  *
192  * \return a string containing the libvlc version
193  */
194 VLC_PUBLIC_API const char * libvlc_get_version(void);
195
196 /**
197  * Retrieve libvlc compiler version.
198  *
199  * Example: "gcc version 4.2.3 (Ubuntu 4.2.3-2ubuntu6)"
200  *
201  * \return a string containing the libvlc compiler version
202  */
203 VLC_PUBLIC_API const char * libvlc_get_compiler(void);
204
205 /**
206  * Retrieve libvlc changeset.
207  *
208  * Example: "aa9bce0bc4"
209  *
210  * \return a string containing the libvlc changeset
211  */
212 VLC_PUBLIC_API const char * libvlc_get_changeset(void);
213
214
215 /** \defgroup libvlc_event LibVLC asynchronous events
216  * LibVLC emits asynchronous events.
217  *
218  * Several LibVLC objects (such @ref libvlc_instance_t as
219  * @ref libvlc_media_player_t) generate events asynchronously. Each of them
220  * provides @ref libvlc_event_manager_t event manager. You can subscribe to
221  * events with libvlc_event_attach() and unsubscribe with
222  * libvlc_event_detach().
223  * @{
224  */
225
226 /**
227  * Event manager that belongs to a libvlc object, and from whom events can
228  * be received.
229  */
230 typedef struct libvlc_event_manager_t libvlc_event_manager_t;
231
232 struct libvlc_event_t;
233
234 /**
235  * Type of a LibVLC event.
236  */
237 typedef int libvlc_event_type_t;
238
239 /**
240  * Callback function notification
241  * \param p_event the event triggering the callback
242  */
243 typedef void ( *libvlc_callback_t )( const struct libvlc_event_t *, void * );
244     
245 /**
246  * Register for an event notification.
247  *
248  * \param p_event_manager the event manager to which you want to attach to.
249  *        Generally it is obtained by vlc_my_object_event_manager() where
250  *        my_object is the object you want to listen to.
251  * \param i_event_type the desired event to which we want to listen
252  * \param f_callback the function to call when i_event_type occurs
253  * \param user_data user provided data to carry with the event
254  * \return 0 on success, ENOMEM on error
255  */
256 VLC_PUBLIC_API int libvlc_event_attach( libvlc_event_manager_t *p_event_manager,
257                                         libvlc_event_type_t i_event_type,
258                                         libvlc_callback_t f_callback,
259                                         void *user_data );
260
261 /**
262  * Unregister an event notification.
263  *
264  * \param p_event_manager the event manager
265  * \param i_event_type the desired event to which we want to unregister
266  * \param f_callback the function to call when i_event_type occurs
267  * \param p_user_data user provided data to carry with the event
268  */
269 VLC_PUBLIC_API void libvlc_event_detach( libvlc_event_manager_t *p_event_manager,
270                                          libvlc_event_type_t i_event_type,
271                                          libvlc_callback_t f_callback,
272                                          void *p_user_data );
273
274 /**
275  * Get an event's type name.
276  *
277  * \param event_type the desired event
278  */
279 VLC_PUBLIC_API const char * libvlc_event_type_name( libvlc_event_type_t event_type );
280
281 /** @} */
282
283 /** \defgroup libvlc_log LibVLC logging
284  * libvlc_log_* functions provide access to the LibVLC messages log.
285  * This is used for debugging or by advanced users.
286  * @{
287  */
288
289 /**
290  * Return the VLC messaging verbosity level.
291  *
292  * \param p_instance libvlc instance
293  * \return verbosity level for messages
294  */
295 VLC_PUBLIC_API unsigned libvlc_get_log_verbosity( const libvlc_instance_t *p_instance );
296
297 /**
298  * Set the VLC messaging verbosity level.
299  *
300  * \param p_instance libvlc log instance
301  * \param level log level
302  */
303 VLC_PUBLIC_API void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, unsigned level );
304
305 /**
306  * Open a VLC message log instance.
307  *
308  * \param p_instance libvlc instance
309  * \return log message instance or NULL on error
310  */
311 VLC_PUBLIC_API libvlc_log_t *libvlc_log_open( libvlc_instance_t *p_instance );
312
313 /**
314  * Close a VLC message log instance.
315  *
316  * \param p_log libvlc log instance or NULL
317  */
318 VLC_PUBLIC_API void libvlc_log_close( libvlc_log_t *p_log );
319
320 /**
321  * Returns the number of messages in a log instance.
322  *
323  * \param p_log libvlc log instance or NULL
324  * \return number of log messages, 0 if p_log is NULL
325  */
326 VLC_PUBLIC_API unsigned libvlc_log_count( const libvlc_log_t *p_log );
327
328 /**
329  * Clear a log instance.
330  *
331  * All messages in the log are removed. The log should be cleared on a
332  * regular basis to avoid clogging.
333  *
334  * \param p_log libvlc log instance or NULL
335  */
336 VLC_PUBLIC_API void libvlc_log_clear( libvlc_log_t *p_log );
337
338 /**
339  * Allocate and returns a new iterator to messages in log.
340  *
341  * \param p_log libvlc log instance
342  * \return log iterator object or NULL on error
343  */
344 VLC_PUBLIC_API libvlc_log_iterator_t *libvlc_log_get_iterator( const libvlc_log_t *p_log );
345
346 /**
347  * Release a previoulsy allocated iterator.
348  *
349  * \param p_iter libvlc log iterator or NULL
350  */
351 VLC_PUBLIC_API void libvlc_log_iterator_free( libvlc_log_iterator_t *p_iter );
352
353 /**
354  * Return whether log iterator has more messages.
355  *
356  * \param p_iter libvlc log iterator or NULL
357  * \return true if iterator has more message objects, else false
358  */
359 VLC_PUBLIC_API int libvlc_log_iterator_has_next( const libvlc_log_iterator_t *p_iter );
360
361 /**
362  * Return the next log message.
363  *
364  * The message contents must not be freed
365  *
366  * \param p_iter libvlc log iterator or NULL
367  * \param p_buffer log buffer
368  * \return log message object or NULL if none left
369  */
370 VLC_PUBLIC_API libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterator_t *p_iter,
371                                                                libvlc_log_message_t *p_buffer );
372
373 /** @} */
374 /** @} */
375 /** @} */
376
377 # ifdef __cplusplus
378 }
379 # endif
380
381 #endif /* <vlc/libvlc.h> */