]> git.sesse.net Git - vlc/blob - src/control/core.c
Add some playlist api functions
[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�ent 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 #include <libvlc_internal.h>
25 #include <vlc/libvlc.h>
26
27 #include <vlc/intf.h>
28
29 /*************************************************************************
30  * Exceptions handling
31  *************************************************************************/
32 inline void libvlc_exception_init( libvlc_exception_t *p_exception )
33 {
34     p_exception->b_raised = 0;
35     p_exception->psz_message = NULL;
36 }
37
38 void libvlc_exception_clear( libvlc_exception_t *p_exception )
39 {
40     if( p_exception->psz_message )
41         free( p_exception->psz_message );
42     p_exception->psz_message = NULL;
43     p_exception->b_raised = 0;
44 }
45
46 inline int libvlc_exception_raised( libvlc_exception_t *p_exception )
47 {
48     return p_exception->b_raised;
49 }
50
51 inline char* libvlc_exception_get_message( libvlc_exception_t *p_exception )
52 {
53     if( p_exception->b_raised == 1 && p_exception->psz_message )
54     {
55         return p_exception->psz_message;
56     }
57     return NULL;
58 }
59
60 inline void libvlc_exception_raise( libvlc_exception_t *p_exception,
61                                     char *psz_message )
62 {
63     if( p_exception == NULL ) return;
64     p_exception->b_raised = 1;
65     if( psz_message )
66         p_exception->psz_message = strdup( psz_message );
67 }
68
69 libvlc_instance_t * libvlc_new( int argc, char **argv,
70                                 libvlc_exception_t *p_exception )
71 {
72     int i_vlc_id;
73     libvlc_instance_t *p_new;
74     vlc_t *p_vlc;
75
76     i_vlc_id = VLC_Create();
77     p_vlc = (vlc_t* ) vlc_current_object( i_vlc_id );
78
79     if( !p_vlc )
80     {
81         libvlc_exception_raise( p_exception, "VLC initialization failed" );
82         return NULL;
83     }
84     p_new = (libvlc_instance_t *)malloc( sizeof( libvlc_instance_t ) );
85
86     /** \todo Look for interface settings. If we don't have any, add -I dummy */
87     /* Because we probably don't want a GUI by default */
88
89     if( !p_new )
90     {
91         libvlc_exception_raise( p_exception, "Out of memory" );
92         return NULL;
93     }
94
95     VLC_Init( i_vlc_id, argc, argv );
96
97     p_new->p_vlc = p_vlc;
98     p_new->p_playlist = (playlist_t *)vlc_object_find( p_new->p_vlc,
99                                 VLC_OBJECT_PLAYLIST, FIND_CHILD );
100
101     if( !p_new->p_playlist )
102     {
103         libvlc_exception_raise( p_exception, "Playlist creation failed" );
104         return NULL;
105     }
106     p_new->i_vlc_id = i_vlc_id;
107
108     return p_new;
109 }
110
111 void libvlc_destroy( libvlc_instance_t *p_instance )
112 {
113     if( p_instance->p_playlist )
114         vlc_object_release( p_instance->p_playlist );
115     vlc_object_release( p_instance->p_vlc );
116     VLC_CleanUp( p_instance->i_vlc_id );
117     VLC_Destroy( p_instance->i_vlc_id );
118 }