]> git.sesse.net Git - vlc/blob - modules/demux/playlist/old.c
0e776c55d5a0d0f4ad48aa1c489bd3f44ad8532f
[vlc] / modules / demux / playlist / old.c
1 /*****************************************************************************
2  * old.c : Old playlist format import
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 <stdlib.h>                                      /* malloc(), free() */
28
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31 #include <vlc/intf.h>
32
33 #include <errno.h>                                                 /* ENOMEM */
34
35 #define PLAYLIST_FILE_HEADER "# vlc playlist file version 0.5"
36
37 /*****************************************************************************
38  * Local prototypes
39  *****************************************************************************/
40 int Import_Old ( vlc_object_t * );
41 static int Demux( demux_t *p_demux);
42 static int Control( demux_t *p_demux, int i_query, va_list args );
43
44 /*****************************************************************************
45  * Import_Old : main import function
46  *****************************************************************************/
47 int Import_Old( vlc_object_t *p_this )
48 {
49     demux_t *p_demux = (demux_t *)p_this;
50     uint8_t *p_peek;
51
52     if( stream_Peek( p_demux->s, &p_peek, 31 ) < 31 )
53     {
54         msg_Err( p_demux, "cannot peek" );
55         return VLC_EGENERIC;
56     }
57
58     if( strncmp( p_peek, PLAYLIST_FILE_HEADER , 31 ) )
59     {
60         msg_Warn(p_demux, "old import module discarded: invalid file");
61         return VLC_EGENERIC;
62     }
63     msg_Dbg( p_demux, "found valid old playlist file");
64
65     p_demux->pf_control = Control;
66     p_demux->pf_demux = Demux;
67
68     return VLC_SUCCESS;
69 }
70
71 static int Demux( demux_t *p_demux)
72 {
73     char *psz_line;
74     /* Attach playlist and start reading data */
75     playlist_t *p_playlist;
76
77     p_playlist = (playlist_t*)vlc_object_find( p_demux,
78                          VLC_OBJECT_PLAYLIST, FIND_PARENT );
79     if( !p_playlist )
80     {
81         msg_Err( p_demux, "cannot attach playlist" );
82         return VLC_EGENERIC;
83     }
84
85     p_playlist->pp_items[p_playlist->i_index]->b_autodeletion = VLC_TRUE;
86     while( ( psz_line = stream_ReadLine( p_demux->s) ) != NULL )
87     {
88         if( ( psz_line[0] == '#' ) || (psz_line[0] == '\r') ||
89             ( psz_line[0] == '\n') || (psz_line[0] == (char)0) )
90         {
91             continue;
92         }
93         /* Remove end of line */
94         if( psz_line[strlen(psz_line) -1 ] == '\n' ||
95             psz_line[strlen(psz_line) -1 ] == '\r' )
96         {
97             psz_line[ strlen(psz_line) -1 ] = (char)0;
98             if( psz_line[strlen(psz_line) - 1 ] == '\r' )
99                 psz_line[strlen(psz_line) - 1 ] = (char)0;
100         }
101         playlist_Add( p_playlist, psz_line, psz_line, PLAYLIST_APPEND,
102                       PLAYLIST_END );
103
104         free( psz_line );
105     }
106
107     p_demux->b_die = VLC_TRUE;
108     vlc_object_release( p_playlist );
109     return VLC_SUCCESS;
110 }
111
112 static int Control( demux_t *p_demux, int i_query, va_list args )
113 {
114     return VLC_EGENERIC;
115 }