]> git.sesse.net Git - vlc/blob - src/control/core.c
dfa0bb55a358594fc2f3979945f7a4299e6a69f7
[vlc] / src / control / core.c
1 /*****************************************************************************
2  * core.c: Core libvlc new API functions : initialization
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
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 General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include "libvlc_internal.h"
29 #include <vlc_modules.h>
30 #include <vlc/libvlc.h>
31
32 #include <vlc_interface.h>
33 #include <vlc_vlm.h>
34
35 #include <stdarg.h>
36 #include <limits.h>
37 #include <assert.h>
38
39 static const char nomemstr[] = "Insufficient memory";
40
41 libvlc_instance_t * libvlc_new( int argc, const char *const *argv )
42 {
43     libvlc_instance_t *p_new = malloc (sizeof (*p_new));
44     if (unlikely(p_new == NULL))
45         return NULL;
46
47     libvlc_init_threads ();
48
49     const char *my_argv[argc + 2];
50     my_argv[0] = "libvlc"; /* dummy arg0, skipped by getopt() et al */
51     for( int i = 0; i < argc; i++ )
52          my_argv[i + 1] = argv[i];
53     my_argv[argc + 1] = NULL; /* C calling conventions require a NULL */
54
55     libvlc_int_t *p_libvlc_int = libvlc_InternalCreate();
56     if (unlikely (p_libvlc_int == NULL))
57         goto error;
58
59     if (libvlc_InternalInit( p_libvlc_int, argc + 1, my_argv ))
60     {
61         libvlc_InternalDestroy( p_libvlc_int );
62         goto error;
63     }
64
65     p_new->p_libvlc_int = p_libvlc_int;
66     p_new->libvlc_vlm.p_vlm = NULL;
67     p_new->libvlc_vlm.p_event_manager = NULL;
68     p_new->libvlc_vlm.pf_release = NULL;
69     p_new->ref_count = 1;
70     p_new->verbosity = 1;
71     p_new->p_callback_list = NULL;
72     vlc_mutex_init(&p_new->instance_lock);
73     var_Create( p_libvlc_int, "http-user-agent",
74                 VLC_VAR_STRING|VLC_VAR_DOINHERIT );
75     return p_new;
76
77 error:
78     libvlc_deinit_threads ();
79     free (p_new);
80     return NULL;
81 }
82
83 void libvlc_retain( libvlc_instance_t *p_instance )
84 {
85     assert( p_instance != NULL );
86     assert( p_instance->ref_count < UINT_MAX );
87
88     vlc_mutex_lock( &p_instance->instance_lock );
89     p_instance->ref_count++;
90     vlc_mutex_unlock( &p_instance->instance_lock );
91 }
92
93 void libvlc_release( libvlc_instance_t *p_instance )
94 {
95     vlc_mutex_t *lock = &p_instance->instance_lock;
96     int refs;
97
98     vlc_mutex_lock( lock );
99     assert( p_instance->ref_count > 0 );
100     refs = --p_instance->ref_count;
101     vlc_mutex_unlock( lock );
102
103     if( refs == 0 )
104     {
105         vlc_mutex_destroy( lock );
106         if( p_instance->libvlc_vlm.pf_release )
107             p_instance->libvlc_vlm.pf_release( p_instance );
108         libvlc_InternalCleanup( p_instance->p_libvlc_int );
109         libvlc_InternalDestroy( p_instance->p_libvlc_int );
110         free( p_instance );
111         libvlc_deinit_threads ();
112     }
113 }
114
115 int libvlc_add_intf( libvlc_instance_t *p_i, const char *name )
116 {
117     return libvlc_InternalAddIntf( p_i->p_libvlc_int, name ) ? -1 : 0;
118 }
119
120 void libvlc_set_exit_handler( libvlc_instance_t *p_i, void (*cb) (void *),
121                               void *data )
122 {
123     libvlc_int_t *p_libvlc = p_i->p_libvlc_int;
124     libvlc_SetExitHandler( p_libvlc, cb, data );
125 }
126
127 void libvlc_wait( libvlc_instance_t *p_i )
128 {
129     libvlc_int_t *p_libvlc = p_i->p_libvlc_int;
130     libvlc_InternalWait( p_libvlc );
131 }
132
133 void libvlc_set_user_agent (libvlc_instance_t *p_i,
134                             const char *name, const char *http)
135 {
136     libvlc_int_t *p_libvlc = p_i->p_libvlc_int;
137     char *str;
138
139     var_SetString (p_libvlc, "user-agent", name);
140     if ((http != NULL)
141      && (asprintf (&str, "%s LibVLC/"PACKAGE_VERSION, http) != -1))
142     {
143         var_SetString (p_libvlc, "http-user-agent", str);
144         free (str);
145     }
146 }
147
148 const char * libvlc_get_version(void)
149 {
150     return VERSION_MESSAGE;
151 }
152
153 const char * libvlc_get_compiler(void)
154 {
155     return VLC_Compiler();
156 }
157
158 const char * libvlc_get_changeset(void)
159 {
160     extern const char psz_vlc_changeset[];
161     return psz_vlc_changeset;
162 }
163
164 void libvlc_free( void *ptr )
165 {
166     free( ptr );
167 }
168
169 libvlc_module_description_t *libvlc_module_description_list_get( libvlc_instance_t *p_instance, const char *capability )
170 {
171     VLC_UNUSED( p_instance );
172     libvlc_module_description_t *p_list = NULL,
173                           *p_actual = NULL,
174                           *p_previous = NULL;
175     module_t **module_list = module_list_get( NULL );
176
177     for (size_t i = 0; module_list[i]; i++)
178     {
179         module_t *p_module = module_list[i];
180
181         if ( !module_provides( p_module, capability ) )
182             continue;
183
184         p_actual = ( libvlc_module_description_t * ) malloc( sizeof( libvlc_module_description_t ) );
185         if ( p_actual == NULL )
186         {
187             libvlc_printerr( "Not enough memory" );
188             libvlc_module_description_list_release( p_list );
189             module_list_free( module_list );
190             return NULL;
191         }
192
193         if ( p_list == NULL )
194             p_list = p_actual;
195
196         const char* name = module_get_object( p_module );
197         const char* shortname = module_get_name( p_module, false );
198         const char* longname = module_get_name( p_module, true );
199         const char* help = module_get_help( p_module );
200         p_actual->psz_name = name ? strdup( name ) : NULL;
201         p_actual->psz_shortname = shortname ? strdup( shortname ) : NULL;
202         p_actual->psz_longname = longname ? strdup( longname ) : NULL;
203         p_actual->psz_help = help ? strdup( help ) : NULL;
204
205         p_actual->p_next = NULL;
206         if ( p_previous )
207             p_previous->p_next = p_actual;
208         p_previous = p_actual;
209     }
210
211     module_list_free( module_list );
212     return p_list;
213 }
214
215 void libvlc_module_description_list_release( libvlc_module_description_t *p_list )
216 {
217     libvlc_module_description_t *p_actual, *p_before;
218     p_actual = p_list;
219
220     while ( p_actual )
221     {
222         free( p_actual->psz_name );
223         free( p_actual->psz_shortname );
224         free( p_actual->psz_longname );
225         free( p_actual->psz_help );
226         p_before = p_actual;
227         p_actual = p_before->p_next;
228         free( p_before );
229     }
230 }
231
232 libvlc_module_description_t *libvlc_audio_filter_list_get( libvlc_instance_t *p_instance )
233 {
234     return libvlc_module_description_list_get( p_instance, "audio filter" );
235 }
236
237 libvlc_module_description_t *libvlc_video_filter_list_get( libvlc_instance_t *p_instance )
238 {
239     return libvlc_module_description_list_get( p_instance, "video filter2" );
240 }