]> git.sesse.net Git - vlc/blob - modules/demux/playlist/dvb.c
Change shoutcast service discovery module and write a new demux to be compatible...
[vlc] / modules / demux / playlist / dvb.c
1 /*****************************************************************************
2  * dvb.c : DVB channel list import (szap/tzap/czap compatible channel lists)
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@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 /*****************************************************************************
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 #include "charset.h"
33
34 #include "playlist.h"
35
36 #ifndef LONG_MAX
37 #   define LONG_MAX 2147483647L
38 #   define LONG_MIN (-LONG_MAX-1)
39 #endif
40
41 /*****************************************************************************
42  * Local prototypes
43  *****************************************************************************/
44 static int Demux( demux_t *p_demux);
45 static int Control( demux_t *p_demux, int i_query, va_list args );
46
47 static int ParseLine( char *, char **, char ***, int *);
48
49 /*****************************************************************************
50  * Import_DVB: main import function
51  *****************************************************************************/
52 int E_(Import_DVB)( vlc_object_t *p_this )
53 {
54     demux_t *p_demux = (demux_t *)p_this;
55     uint8_t *p_peek;
56     int     i_peek;
57     char    *psz_ext;
58     vlc_bool_t b_valid = VLC_FALSE;
59
60     psz_ext = strrchr ( p_demux->psz_path, '.' );
61
62     if( !( psz_ext && !strncasecmp( psz_ext, ".conf", 5 ) ) &&
63         !p_demux->b_force ) return VLC_EGENERIC;
64
65     /* Check if this really is a channels file */
66     if( (i_peek = stream_Peek( p_demux->s, &p_peek, 1024 )) > 0 )
67     {
68         char psz_line[1024+1];
69         int i;
70
71         for( i = 0; i < i_peek; i++ )
72         {
73             if( p_peek[i] == '\n' ) break;
74             psz_line[i] = p_peek[i];
75         }
76         psz_line[i] = 0;
77
78         if( ParseLine( psz_line, 0, 0, 0 ) ) b_valid = VLC_TRUE;
79     }
80
81     if( !b_valid ) return VLC_EGENERIC;
82
83     msg_Dbg( p_demux, "found valid DVB conf playlist file");
84
85     p_demux->pf_control = Control;
86     p_demux->pf_demux = Demux;
87
88     return VLC_SUCCESS;
89 }
90
91 /*****************************************************************************
92  * Deactivate: frees unused data
93  *****************************************************************************/
94 void E_(Close_DVB)( vlc_object_t *p_this )
95 {
96 }
97
98 /*****************************************************************************
99  * Demux: The important stuff
100  *****************************************************************************/
101 static int Demux( demux_t *p_demux )
102 {
103     playlist_t *p_playlist;
104     char       *psz_line;
105     playlist_item_t *p_current;
106     vlc_bool_t b_play;
107
108     p_playlist = (playlist_t *) vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST,
109                                                  FIND_ANYWHERE );
110     if( !p_playlist )
111     {
112         msg_Err( p_demux, "can't find playlist" );
113         return -1;
114     }
115
116     b_play = E_(FindItem)( p_demux, p_playlist, &p_current );
117
118     playlist_ItemToNode( p_playlist, p_current );
119     p_current->input.i_type = ITEM_TYPE_PLAYLIST;
120
121     while( (psz_line = stream_ReadLine( p_demux->s )) )
122     {
123         playlist_item_t *p_item;
124         char **ppsz_options = NULL;
125         int  i, i_options = 0;
126         char *psz_name = NULL;
127
128         if( !ParseLine( psz_line, &psz_name, &ppsz_options, &i_options ) )
129         {
130             free( psz_line );
131             continue;
132         }
133
134         EnsureUTF8( psz_name );
135
136         p_item = playlist_ItemNew( p_playlist, "dvb:", psz_name );
137         for( i = 0; i< i_options; i++ )
138         {
139             EnsureUTF8( ppsz_options[i] );
140             playlist_ItemAddOption( p_item, ppsz_options[i] );
141         }
142         playlist_NodeAddItem( p_playlist, p_item,
143                               p_current->pp_parents[0]->i_view,
144                               p_current, PLAYLIST_APPEND, PLAYLIST_END );
145
146         /* We need to declare the parents of the node as the
147          *                  * same of the parent's ones */
148         playlist_CopyParents( p_current, p_item );
149         vlc_input_item_CopyOptions( &p_current->input, &p_item->input );
150
151         while( i_options-- ) free( ppsz_options[i_options] );
152         if( ppsz_options ) free( ppsz_options );
153
154         free( psz_line );
155     }
156
157     /* Go back and play the playlist */
158     if( b_play && p_playlist->status.p_item &&
159         p_playlist->status.p_item->i_children > 0 )
160     {
161         playlist_Control( p_playlist, PLAYLIST_VIEWPLAY,
162                           p_playlist->status.i_view,
163                           p_playlist->status.p_item,
164                           p_playlist->status.p_item->pp_children[0] );
165     }
166
167     vlc_object_release( p_playlist );
168     return VLC_SUCCESS;
169 }
170
171 static struct
172 {
173     char *psz_name;
174     char *psz_option;
175
176 } dvb_options[] =
177 {
178     { "INVERSION_OFF", "dvb-inversion=0" },
179     { "INVERSION_ON", "dvb-inversion=1" },
180     { "INVERSION_AUTO", "dvb-inversion=2" },
181
182     { "BANDWIDTH_AUTO", "dvb-bandwidth=0" },
183     { "BANDWIDTH_6_MHZ", "dvb-bandwidth=6" },
184     { "BANDWIDTH_7_MHZ", "dvb-bandwidth=7" },
185     { "BANDWIDTH_8_MHZ", "dvb-bandwidth=8" },
186
187     { "FEC_NONE", "dvb-fec=0" },
188     { "FEC_1_2", "dvb-fec=1" },
189     { "FEC_2_3", "dvb-fec=2" },
190     { "FEC_3_4", "dvb-fec=3" },
191     { "FEC_4_5", "dvb-fec=4" },
192     { "FEC_5_6", "dvb-fec=5" },
193     { "FEC_6_7", "dvb-fec=6" },
194     { "FEC_7_8", "dvb-fec=7" },
195     { "FEC_8_9", "dvb-fec=8" },
196     { "FEC_AUTO", "dvb-fec=9" },
197
198     { "GUARD_INTERVAL_AUTO", "dvb-guard=0" },
199     { "GUARD_INTERVAL_1_4", "dvb-guard=4" },
200     { "GUARD_INTERVAL_1_8", "dvb-guard=8" },
201     { "GUARD_INTERVAL_1_16", "dvb-guard=16" },
202     { "GUARD_INTERVAL_1_32", "dvb-guard=32" },
203
204     { "HIERARCHY_NONE", "dvb-hierarchy=-1" },
205     { "HIERARCHY_1", "dvb-hierarchy=1" },
206     { "HIERARCHY_2", "dvb-hierarchy=2" },
207     { "HIERARCHY_4", "dvb-hierarchy=4" },
208
209     { "QPSK", "dvb-modulation=-1" },
210     { "QAM_AUTO", "dvb-modulation=0" },
211     { "QAM_16", "dvb-modulation=16" },
212     { "QAM_32", "dvb-modulation=32" },
213     { "QAM_64", "dvb-modulation=64" },
214     { "QAM_128", "dvb-modulation=128" },
215     { "QAM_256", "dvb-modulation=256" },
216
217     { "TRANSMISSION_MODE_AUTO", "dvb-transmission=0" },
218     { "TRANSMISSION_MODE_2K", "dvb-transmission=2" },
219     { "TRANSMISSION_MODE_8K", "dvb-transmission=8" },
220     { 0, 0 }
221
222 };
223
224 static int ParseLine( char *psz_line, char **ppsz_name,
225                       char ***pppsz_options, int *pi_options )
226 {
227     char *psz_name = 0, *psz_parse = psz_line;
228     int i_count = 0, i_program = 0, i_frequency = 0;
229     vlc_bool_t b_valid = VLC_FALSE;
230
231     if( pppsz_options ) *pppsz_options = 0;
232     if( pi_options ) *pi_options = 0;
233     if( ppsz_name ) *ppsz_name = 0;
234
235     /* Skip leading tabs and spaces */
236     while( *psz_parse == ' ' || *psz_parse == '\t' ||
237            *psz_parse == '\n' || *psz_parse == '\r' ) psz_parse++;
238
239     /* Ignore comments */
240     if( *psz_parse == '#' ) return VLC_FALSE;
241
242     while( psz_parse )
243     {
244         char *psz_option = 0;
245         char *psz_end = strchr( psz_parse, ':' );
246         if( psz_end ) { *psz_end = 0; psz_end++; }
247
248         if( i_count == 0 )
249         {
250             /* Channel name */
251             psz_name = psz_parse;
252         }
253         else if( i_count == 1 )
254         {
255             /* Frequency */
256             char *psz_end;
257             long i_value;
258
259             i_value = strtol( psz_parse, &psz_end, 10 );
260             if( psz_end == psz_parse ||
261                 i_value == LONG_MAX || i_value == LONG_MIN ) break;
262
263             i_frequency = i_value;
264         }
265         else
266         {
267             int i;
268
269             /* Check option name with our list */
270             for( i = 0; dvb_options[i].psz_name; i++ )
271             {
272                 if( !strcmp( psz_parse, dvb_options[i].psz_name ) )
273                 {
274                     psz_option = dvb_options[i].psz_option;
275
276                     /* If we recognize one of the strings, then we are sure
277                      * the data is really valid (ie. a channels file). */
278                     b_valid = VLC_TRUE;
279                     break;
280                 }
281             }
282
283             if( !psz_option )
284             {
285                 /* Option not recognized, test if it is a number */
286                 char *psz_end;
287                 long i_value;
288
289                 i_value = strtol( psz_parse, &psz_end, 10 );
290                 if( psz_end != psz_parse &&
291                     i_value != LONG_MAX && i_value != LONG_MIN )
292                 {
293                     i_program = i_value;
294                 }
295             }
296         }
297
298         if( psz_option && pppsz_options && pi_options )
299         {
300             psz_option = strdup( psz_option );
301             INSERT_ELEM( *pppsz_options, (*pi_options), (*pi_options),
302                          psz_option );
303         }
304
305         psz_parse = psz_end;
306         i_count++;
307     }
308
309     if( !b_valid && pppsz_options && pi_options )
310     {
311         /* This isn't a valid channels file, cleanup everything */
312         while( (*pi_options)-- ) free( (*pppsz_options)[*pi_options] );
313         if( *pppsz_options ) free( *pppsz_options );
314         *pppsz_options = 0; *pi_options = 0;
315     }
316
317     if( i_program && pppsz_options && pi_options )
318     {
319         char *psz_option;
320
321         asprintf( &psz_option, "program=%i", i_program );
322         INSERT_ELEM( *pppsz_options, (*pi_options), (*pi_options),
323                      psz_option );
324     }
325     if( i_frequency && pppsz_options && pi_options )
326     {
327         char *psz_option;
328
329         asprintf( &psz_option, "dvb-frequency=%i", i_frequency );
330         INSERT_ELEM( *pppsz_options, (*pi_options), (*pi_options),
331                      psz_option );
332     }
333     if( ppsz_name && psz_name ) *ppsz_name = strdup( psz_name );
334
335     return b_valid;
336 }
337
338 static int Control( demux_t *p_demux, int i_query, va_list args )
339 {
340     return VLC_EGENERIC;
341 }