]> git.sesse.net Git - vlc/blob - modules/demux/playlist/playlist.c
Disable native for the moment
[vlc] / modules / demux / playlist / playlist.c
1 /*****************************************************************************
2  * playlist.c :  Playlist import module
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <vlc/vlc.h>
28 #include <vlc/input.h>
29 #include <vlc_playlist.h>
30
31 #include "playlist.h"
32
33 /*****************************************************************************
34  * Module descriptor
35  *****************************************************************************/
36 vlc_module_begin();
37     add_shortcut( "playlist" );
38     set_category( CAT_INPUT );
39     set_subcategory( SUBCAT_INPUT_DEMUX );
40
41     set_description( _("Old playlist open") );
42     add_shortcut( "old-open" );
43     set_capability( "demux2" , 10 );
44     set_callbacks( Import_Old , NULL );
45 #if 0
46     add_submodule();
47         set_description( _("Native playlist import") );
48         add_shortcut( "playlist" );
49         add_shortcut( "native-open" );
50         set_capability( "demux2" , 10 );
51         set_callbacks( Import_Native , Close_Native );
52 #endif
53     add_submodule();
54         set_description( _("M3U playlist import") );
55         add_shortcut( "m3u-open" );
56         set_capability( "demux2" , 10 );
57         set_callbacks( Import_M3U , Close_M3U );
58     add_submodule();
59         set_description( _("PLS playlist import") );
60         add_shortcut( "pls-open" );
61         set_capability( "demux2" , 10 );
62         set_callbacks( Import_PLS , Close_PLS );
63 vlc_module_end();
64
65
66 /**
67  * Find directory part of the path to the playlist file, in case of
68  * relative paths inside
69  */
70 char *FindPrefix( demux_t *p_demux )
71 {
72     char *psz_name;
73     char *psz_path = strdup( p_demux->psz_path );
74
75 #ifndef WIN32
76     psz_name = strrchr( psz_path, '/' );
77 #else
78     psz_name = strrchr( psz_path, '\\' );
79     if( !psz_name ) psz_name = strrchr( psz_path, '/' );
80 #endif
81     if( psz_name ) psz_name[1] = '\0';
82     else *psz_path = '\0';
83
84     return psz_path;
85 }
86
87 /**
88  * Add the directory part of the playlist file to the start of the
89  * mrl, if the mrl is a relative file path
90  */
91 char *ProcessMRL( char *psz_mrl, char *psz_prefix )
92 {
93     /* Check for a protocol name.
94      * for URL, we should look for "://"
95      * for MRL (Media Resource Locator) ([[<access>][/<demux>]:][<source>]),
96      * we should look for ":", so we end up looking simply for ":"
97      * PB: on some file systems, ':' are valid characters though */
98
99     /* Simple cases first */
100     if( !psz_mrl || !*psz_mrl ) return NULL;
101     if( !psz_prefix || !*psz_prefix ) return strdup( psz_mrl );
102
103     /* Check if the line specifies an absolute path */
104     if( *psz_mrl == '/' || *psz_mrl == '\\' ) return strdup( psz_mrl );
105
106     /* Check if the line specifies an mrl/url
107      * (and on win32, contains a drive letter) */
108     if( strchr( psz_mrl, ':' ) ) return strdup( psz_mrl );
109
110     /* This a relative path, prepend the prefix */
111     asprintf( &psz_mrl, "%s%s", psz_prefix, psz_mrl );
112     return psz_mrl;
113 }
114
115 vlc_bool_t FindItem( demux_t *p_demux, playlist_t *p_playlist,
116                      playlist_item_t **pp_item )
117 {
118      vlc_bool_t b_play;
119      if( &p_playlist->status.p_item->input ==
120          ((input_thread_t *)p_demux->p_parent)->input.p_item )
121      {
122          msg_Dbg( p_playlist, "starting playlist playback" );
123          *pp_item = p_playlist->status.p_item;
124          b_play = VLC_TRUE;
125      }
126      else
127      {
128          input_item_t *p_current = ( (input_thread_t*)p_demux->p_parent)->
129                                                         input.p_item;
130          *pp_item = playlist_ItemGetByInput( p_playlist, p_current );
131          if( !*pp_item )
132          {
133              msg_Dbg( p_playlist, "unable to find item in playlist");
134          }
135          msg_Dbg( p_playlist, "not starting playlist playback");
136          b_play = VLC_FALSE;
137      }
138      return b_play;
139 }