]> git.sesse.net Git - vlc/blob - src/control/core.c
- Redo [22749]. Fix Mozilla plugin, fix OSX framework, fix the bindings.
[vlc] / src / control / core.c
1 /*****************************************************************************
2  * core.c: Core libvlc new API functions : initialization, exceptions handling
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 #include "libvlc_internal.h"
24 #include <vlc/libvlc.h>
25
26 #include <vlc_interface.h>
27
28 #include <stdarg.h>
29 #include <limits.h>
30 #include <assert.h>
31
32 static const char nomemstr[] = "Insufficient memory";
33
34 /*************************************************************************
35  * Exceptions handling
36  *************************************************************************/
37 void libvlc_exception_init( libvlc_exception_t *p_exception )
38 {
39     p_exception->b_raised = 0;
40     p_exception->psz_message = NULL;
41 }
42
43 void libvlc_exception_clear( libvlc_exception_t *p_exception )
44 {
45     if( p_exception->psz_message != nomemstr )
46         free( p_exception->psz_message );
47     p_exception->psz_message = NULL;
48     p_exception->b_raised = 0;
49 }
50
51 int libvlc_exception_raised( const libvlc_exception_t *p_exception )
52 {
53     return (NULL != p_exception) && p_exception->b_raised;
54 }
55
56 const char *
57 libvlc_exception_get_message( const libvlc_exception_t *p_exception )
58 {
59     if( p_exception->b_raised == 1 && p_exception->psz_message )
60     {
61         return p_exception->psz_message;
62     }
63     return NULL;
64 }
65
66 static void libvlc_exception_not_handled( const char *psz )
67 {
68     fprintf( stderr, "*** LibVLC Exception not handled: %s\nSet a breakpoint in '%s' to debug.\n",
69              psz, __func__ );
70 }
71
72 void libvlc_exception_raise( libvlc_exception_t *p_exception,
73                                            const char *psz_format, ... )
74 {
75     va_list args;
76     char * psz;
77
78     /* Unformat-ize the message */
79     va_start( args, psz_format );
80     if( vasprintf( &psz, psz_format, args ) == -1)
81         psz = (char *)nomemstr;
82     va_end( args );
83
84     /* Does caller care about exceptions ? */
85     if( p_exception == NULL ) {
86         /* Print something, so lazy third-parties can easily
87          * notice that something may have gone unoticedly wrong */
88         libvlc_exception_not_handled( psz );
89         return;
90     }
91
92     /* Make sure that there is no unoticed previous exception */
93     if( p_exception->b_raised )
94     {
95         libvlc_exception_not_handled( p_exception->psz_message );
96         libvlc_exception_clear( p_exception );
97     }
98     p_exception->psz_message = psz;
99     p_exception->b_raised = 1;
100 }
101
102 libvlc_instance_t * libvlc_new( int argc, const char *const *argv,
103                                 libvlc_exception_t *p_e )
104 {
105     libvlc_instance_t *p_new;
106
107     libvlc_int_t *p_libvlc_int = libvlc_InternalCreate();
108     if( !p_libvlc_int ) RAISENULL( "VLC initialization failed" );
109
110     p_new = (libvlc_instance_t *)malloc( sizeof( libvlc_instance_t ) );
111     if( !p_new ) RAISENULL( "Out of memory" );
112
113     const char *my_argv[argc + 2];
114
115     my_argv[0] = "libvlc"; /* dummy arg0, skipped by getopt() et al */
116     for( int i = 0; i < argc; i++ )
117          my_argv[i + 1] = argv[i];
118     my_argv[argc + 1] = NULL; /* C calling conventions require a NULL */
119
120     /** \todo Look for interface settings. If we don't have any, add -I dummy */
121     /* Because we probably don't want a GUI by default */
122
123     if( libvlc_InternalInit( p_libvlc_int, argc + 1, my_argv ) )
124         RAISENULL( "VLC initialization failed" );
125
126     p_new->p_libvlc_int = p_libvlc_int;
127     p_new->p_vlm = NULL;
128     p_new->b_playlist_locked = 0;
129     p_new->ref_count = 1;
130     p_new->p_callback_list = NULL;
131     vlc_mutex_init(p_libvlc_int, &p_new->instance_lock);
132     vlc_mutex_init(p_libvlc_int, &p_new->event_callback_lock);
133  
134     libvlc_event_init(p_new, p_e);
135
136     return p_new;
137 }
138
139 void libvlc_retain( libvlc_instance_t *p_instance )
140 {
141     assert( p_instance != NULL );
142     assert( p_instance->ref_count < UINT_MAX );
143
144     vlc_mutex_lock( &p_instance->instance_lock );
145     p_instance->ref_count++;
146     vlc_mutex_unlock( &p_instance->instance_lock );
147 }
148
149 void libvlc_release( libvlc_instance_t *p_instance )
150 {
151     vlc_mutex_t *lock = &p_instance->instance_lock;
152     int refs;
153
154     assert( p_instance->ref_count > 0 );
155
156     vlc_mutex_lock( lock );
157     refs = --p_instance->ref_count;
158     if( refs == 0 )
159         libvlc_event_fini( p_instance );
160     vlc_mutex_unlock( lock );
161
162     if( refs == 0 )
163     {
164         vlc_mutex_destroy( lock );
165         vlc_mutex_destroy( &p_instance->event_callback_lock );
166         libvlc_InternalCleanup( p_instance->p_libvlc_int );
167         libvlc_InternalDestroy( p_instance->p_libvlc_int, VLC_FALSE );
168         free( p_instance );
169     }
170 }
171
172 int libvlc_get_vlc_id( libvlc_instance_t *p_instance )
173 {
174     return p_instance->p_libvlc_int->i_object_id;
175 }