1 /*****************************************************************************
2 * media_library.c: libvlc tags tree functions
3 * Create a tree of the 'tags' of a media_list's medias.
4 *****************************************************************************
5 * Copyright (C) 2007 VLC authors and VideoLAN
8 * Authors: Pierre d'Herbemont <pdherbemont # videolan.org>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
31 #include <vlc_common.h>
33 #include "libvlc_internal.h"
35 struct libvlc_media_library_t
37 libvlc_event_manager_t event_manager
;
38 libvlc_instance_t
* p_libvlc_instance
;
40 libvlc_media_list_t
* p_mlist
;
49 * Public libvlc functions
52 /**************************************************************************
54 **************************************************************************/
55 libvlc_media_library_t
*
56 libvlc_media_library_new( libvlc_instance_t
* p_inst
)
58 libvlc_media_library_t
* p_mlib
;
60 p_mlib
= malloc(sizeof(libvlc_media_library_t
));
64 libvlc_printerr( "Not enough memory" );
68 p_mlib
->p_libvlc_instance
= p_inst
;
69 p_mlib
->i_refcount
= 1;
70 p_mlib
->p_mlist
= NULL
;
72 libvlc_event_manager_init( &p_mlib
->event_manager
, p_mlib
);
73 libvlc_retain( p_inst
);
77 /**************************************************************************
79 **************************************************************************/
80 void libvlc_media_library_release( libvlc_media_library_t
* p_mlib
)
84 if( p_mlib
->i_refcount
> 0 )
87 libvlc_event_manager_destroy( &p_mlib
->event_manager
);
88 libvlc_release( p_mlib
->p_libvlc_instance
);
92 /**************************************************************************
94 **************************************************************************/
95 void libvlc_media_library_retain( libvlc_media_library_t
* p_mlib
)
100 /**************************************************************************
103 * It doesn't yet load the playlists
104 **************************************************************************/
105 int libvlc_media_library_load( libvlc_media_library_t
* p_mlib
)
107 char *psz_datadir
= config_GetUserDir( VLC_DATA_DIR
);
110 if( psz_datadir
== NULL
111 || asprintf( &psz_uri
, "file/directory://%s" DIR_SEP
"ml.xsp",
112 psz_datadir
) == -1 )
116 if( psz_uri
== NULL
)
118 libvlc_printerr( "Not enough memory" );
122 if( p_mlib
->p_mlist
)
123 libvlc_media_list_release( p_mlib
->p_mlist
);
125 p_mlib
->p_mlist
= libvlc_media_list_new( p_mlib
->p_libvlc_instance
);
127 int ret
= libvlc_media_list_add_file_content( p_mlib
->p_mlist
, psz_uri
);
132 /**************************************************************************
133 * media_list (Public)
134 **************************************************************************/
135 libvlc_media_list_t
*
136 libvlc_media_library_media_list( libvlc_media_library_t
* p_mlib
)
138 if( p_mlib
->p_mlist
)
139 libvlc_media_list_retain( p_mlib
->p_mlist
);
140 return p_mlib
->p_mlist
;