]> git.sesse.net Git - vlc/blob - src/control/core.c
Reference count libvlc. API break.
[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 void libvlc_exception_raise( libvlc_exception_t *p_exception,
67                                            const char *psz_format, ... )
68 {
69     va_list args;
70
71     /* does caller care about exceptions ? */
72     if( p_exception == NULL ) return;
73
74     /* remove previous exception if it wasn't cleared */
75     libvlc_exception_clear( p_exception );
76
77     va_start( args, psz_format );
78     if( vasprintf( &p_exception->psz_message, psz_format, args ) == -1)
79         p_exception->psz_message = (char *)nomemstr;
80     va_end( args );
81
82     p_exception->b_raised = 1;
83 }
84
85 libvlc_instance_t * libvlc_new( int argc, const char *const *argv,
86                                 libvlc_exception_t *p_e )
87 {
88     libvlc_instance_t *p_new;
89
90     libvlc_int_t *p_libvlc_int = libvlc_InternalCreate();
91     if( !p_libvlc_int ) RAISENULL( "VLC initialization failed" );
92
93     p_new = (libvlc_instance_t *)malloc( sizeof( libvlc_instance_t ) );
94     if( !p_new ) RAISENULL( "Out of memory" );
95
96     const char *my_argv[argc + 2];
97
98     my_argv[0] = "libvlc"; /* dummy arg0, skipped by getopt() et al */
99     for( int i = 0; i < argc; i++ )
100          my_argv[i + 1] = argv[i];
101     my_argv[argc + 1] = NULL; /* C calling conventions require a NULL */
102
103     /** \todo Look for interface settings. If we don't have any, add -I dummy */
104     /* Because we probably don't want a GUI by default */
105
106     if( libvlc_InternalInit( p_libvlc_int, argc + 1, my_argv ) )
107         RAISENULL( "VLC initialization failed" );
108
109     p_new->p_libvlc_int = p_libvlc_int;
110     p_new->p_vlm = NULL;
111     p_new->b_playlist_locked = 0;
112     p_new->ref_count = 1;
113     p_new->p_callback_list = NULL;
114     vlc_mutex_init(p_libvlc_int, &p_new->instance_lock);
115     vlc_mutex_init(p_libvlc_int, &p_new->event_callback_lock);
116  
117     libvlc_event_init(p_new, p_e);
118
119     return p_new;
120 }
121
122 void libvlc_retain( libvlc_instance_t *p_instance )
123 {
124     assert( p_instance != NULL );
125     assert( p_instance->ref_count < UINT_MAX );
126
127     vlc_mutex_lock( &p_instance->instance_lock );
128     p_instance->ref_count++;
129     vlc_mutex_unlock( &p_instance->instance_lock );
130 }
131
132 void libvlc_release( libvlc_instance_t *p_instance, libvlc_exception_t *p_e )
133 {
134     vlc_mutex_t *lock = &p_instance->instance_lock;
135     int refs;
136
137     assert( p_instance->ref_count > 0 );
138
139     vlc_mutex_lock( &p_instance->instance_lock );
140     refs = --p_instance->ref_count;
141     if( refs == 0 )
142         libvlc_event_fini( p_instance, p_e );
143     vlc_mutex_unlock( &p_instance->instance_lock );
144
145     if( refs == 0 )
146     {
147         vlc_mutex_destroy( &p_instance->instance_lock );
148         vlc_mutex_destroy( &p_instance->event_callback_lock );
149         libvlc_InternalCleanup( p_instance->p_libvlc_int );
150         libvlc_InternalDestroy( p_instance->p_libvlc_int, VLC_FALSE );
151         free( p_instance );
152     }
153 }
154
155 int libvlc_get_vlc_id( libvlc_instance_t *p_instance )
156 {
157     return p_instance->p_libvlc_int->i_object_id;
158 }