]> git.sesse.net Git - vlc/blob - modules/access/directory.c
Switch the directory to the UTF-8 wrappers
[vlc] / modules / access / directory.c
1 /*****************************************************************************
2  * directory.c: expands a directory (directory: access plug-in)
3  *****************************************************************************
4  * Copyright (C) 2002-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Derk-Jan Hartman <hartman at videolan dot 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
28 #include <vlc/vlc.h>
29 #include <vlc/input.h>
30 #include <vlc_playlist.h>
31 #include <vlc_input.h>
32
33 #include <stdlib.h>
34 #include <string.h>
35 #ifdef HAVE_SYS_TYPES_H
36 #   include <sys/types.h>
37 #endif
38 #ifdef HAVE_SYS_STAT_H
39 #   include <sys/stat.h>
40 #endif
41 #ifdef HAVE_ERRNO_H
42 #   include <errno.h>
43 #endif
44 #ifdef HAVE_FCNTL_H
45 #   include <fcntl.h>
46 #endif
47
48 #ifdef HAVE_UNISTD_H
49 #   include <unistd.h>
50 #elif defined( WIN32 ) && !defined( UNDER_CE )
51 #   include <io.h>
52 #elif defined( UNDER_CE )
53 #   define strcoll strcmp
54 #endif
55
56 #ifdef HAVE_DIRENT_H
57 #   include <dirent.h>
58 #endif
59
60 #include "charset.h"
61
62 /*****************************************************************************
63  * Module descriptor
64  *****************************************************************************/
65 static int  Open ( vlc_object_t * );
66 static void Close( vlc_object_t * );
67
68 static int  DemuxOpen ( vlc_object_t * );
69
70 #define RECURSIVE_TEXT N_("Subdirectory behavior")
71 #define RECURSIVE_LONGTEXT N_( \
72         "Select whether subdirectories must be expanded.\n" \
73         "none: subdirectories do not appear in the playlist.\n" \
74         "collapse: subdirectories appear but are expanded on first play.\n" \
75         "expand: all subdirectories are expanded.\n" )
76
77 static const char *psz_recursive_list[] = { "none", "collapse", "expand" };
78 static const char *psz_recursive_list_text[] = { N_("none"), N_("collapse"),
79                                                  N_("expand") };
80
81 #define IGNORE_TEXT N_("Ignored extensions")
82 #define IGNORE_LONGTEXT N_( \
83         "Files with these extensions will not be added to playlist when " \
84         "opening a directory.\n" \
85         "This is useful if you add directories that contain playlist files " \
86         "for instance. Use a comma-separated list of extensions." )
87
88 vlc_module_begin();
89     set_category( CAT_INPUT );
90     set_shortname( _("Directory" ) );
91     set_subcategory( SUBCAT_INPUT_ACCESS );
92     set_description( _("Standard filesystem directory input") );
93     set_capability( "access2", 55 );
94     add_shortcut( "directory" );
95     add_shortcut( "dir" );
96     add_string( "recursive", "expand" , NULL, RECURSIVE_TEXT,
97                 RECURSIVE_LONGTEXT, VLC_FALSE );
98       change_string_list( psz_recursive_list, psz_recursive_list_text, 0 );
99     add_string( "ignore-filetypes", "m3u,db,nfo,jpg,gif,sfv,txt,sub,idx,srt,cue",
100                 NULL, IGNORE_TEXT, IGNORE_LONGTEXT, VLC_FALSE );
101     set_callbacks( Open, Close );
102
103     add_submodule();
104         set_description( "Directory EOF");
105         set_capability( "demux2", 0 );
106         add_shortcut( "directory" );
107         set_callbacks( DemuxOpen, NULL );
108 vlc_module_end();
109
110
111 /*****************************************************************************
112  * Local prototypes, constants, structures
113  *****************************************************************************/
114
115 #define MODE_EXPAND 0
116 #define MODE_COLLAPSE 1
117 #define MODE_NONE 2
118
119 static int Read( access_t *, uint8_t *, int );
120 static int ReadNull( access_t *, uint8_t *, int );
121 static int Control( access_t *, int, va_list );
122
123 static int Demux( demux_t *p_demux );
124 static int DemuxControl( demux_t *p_demux, int i_query, va_list args );
125
126
127 static int ReadDir( playlist_t *, const char *psz_name, int i_mode,
128                     playlist_item_t *, playlist_item_t * );
129
130 /*****************************************************************************
131  * Open: open the directory
132  *****************************************************************************/
133 static int Open( vlc_object_t *p_this )
134 {
135     access_t *p_access = (access_t*)p_this;
136
137     struct stat stat_info;
138
139 #ifdef S_ISDIR
140     if (utf8_stat (p_access->psz_path, &stat_info)
141      || !S_ISDIR (stat_info.st_mode))
142 #else
143     if( strcmp( p_access->psz_access, "dir") &&
144         strcmp( p_access->psz_access, "directory") )
145 #endif
146         return VLC_EGENERIC;
147
148     p_access->pf_read  = Read;
149     p_access->pf_block = NULL;
150     p_access->pf_seek  = NULL;
151     p_access->pf_control= Control;
152
153     /* Force a demux */
154     p_access->psz_demux = strdup( "directory" );
155
156     return VLC_SUCCESS;
157 }
158
159 /*****************************************************************************
160  * Close: close the target
161  *****************************************************************************/
162 static void Close( vlc_object_t * p_this )
163 {
164 }
165
166 /*****************************************************************************
167  * ReadNull: read the directory
168  *****************************************************************************/
169 static int ReadNull( access_t *p_access, uint8_t *p_buffer, int i_len)
170 {
171     /* Return fake data */
172     memset( p_buffer, 0, i_len );
173     return i_len;
174 }
175
176 /*****************************************************************************
177  * Read: read the directory
178  *****************************************************************************/
179 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len)
180 {
181     char *psz;
182     int  i_mode, i_activity;
183
184     char *psz_name = strdup (p_access->psz_path);
185     if (psz_name == NULL)
186         return VLC_ENOMEM;
187
188     /* Remove the ending '/' char */
189     if (psz_name[0])
190     {
191         char *ptr = psz_name + strlen (psz_name);
192         switch (*--ptr)
193         {
194             case '/':
195             case '\\':
196                 *ptr = '\0';
197         }
198     }
199
200     playlist_item_t *p_item, *p_root_category;
201     playlist_t *p_playlist = pl_Yield( p_access );
202
203     /* Handle mode */
204     psz = var_CreateGetString( p_access, "recursive" );
205     if( *psz == '\0' || !strncmp( psz, "none" , 4 )  )
206         i_mode = MODE_NONE;
207     else if( !strncmp( psz, "collapse", 8 )  )
208         i_mode = MODE_COLLAPSE;
209     else
210         i_mode = MODE_EXPAND;
211     free( psz );
212
213     msg_Dbg( p_access, "opening directory `%s'", p_access->psz_path );
214
215     if( p_playlist->status.p_item && p_playlist->status.p_item->p_input ==
216         ((input_thread_t *)p_access->p_parent)->input.p_item )
217         p_item = p_playlist->status.p_item;
218     else
219     {
220         input_item_t *p_current = ( (input_thread_t*)p_access->p_parent)->
221                                                         input.p_item;
222         p_item = playlist_LockItemGetByInput( p_playlist, p_current );
223         if( !p_item )
224         {
225             msg_Dbg( p_playlist, "unable to find item in playlist");
226             return VLC_ENOOBJ;
227         }
228     }
229     p_item->p_input->i_type = ITEM_TYPE_DIRECTORY;
230
231     p_root_category = playlist_LockItemToNode( p_playlist, p_item );
232
233     i_activity = var_GetInteger( p_playlist, "activity" );
234     var_SetInteger( p_playlist, "activity", i_activity +
235                     DIRECTORY_ACTIVITY );
236
237     ReadDir( p_playlist, psz_name, i_mode, p_item, p_root_category );
238
239     i_activity = var_GetInteger( p_playlist, "activity" );
240     var_SetInteger( p_playlist, "activity", i_activity -
241                     DIRECTORY_ACTIVITY );
242     if( psz_name ) free( psz_name );
243     vlc_object_release( p_playlist );
244
245     /* Return fake data forever */
246     p_access->pf_read = ReadNull;
247     return ReadNull( p_access, p_buffer, i_len );
248 }
249
250 /*****************************************************************************
251  * DemuxOpen:
252  *****************************************************************************/
253 static int Control( access_t *p_access, int i_query, va_list args )
254 {
255     vlc_bool_t   *pb_bool;
256     int          *pi_int;
257     int64_t      *pi_64;
258
259     switch( i_query )
260     {
261         /* */
262         case ACCESS_CAN_SEEK:
263         case ACCESS_CAN_FASTSEEK:
264         case ACCESS_CAN_PAUSE:
265         case ACCESS_CAN_CONTROL_PACE:
266             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
267             *pb_bool = VLC_FALSE;    /* FIXME */
268             break;
269
270         /* */
271         case ACCESS_GET_MTU:
272             pi_int = (int*)va_arg( args, int * );
273             *pi_int = 0;
274             break;
275
276         case ACCESS_GET_PTS_DELAY:
277             pi_64 = (int64_t*)va_arg( args, int64_t * );
278             *pi_64 = DEFAULT_PTS_DELAY * 1000;
279             break;
280
281         /* */
282         case ACCESS_SET_PAUSE_STATE:
283         case ACCESS_GET_TITLE_INFO:
284         case ACCESS_SET_TITLE:
285         case ACCESS_SET_SEEKPOINT:
286         case ACCESS_SET_PRIVATE_ID_STATE:
287             return VLC_EGENERIC;
288
289         default:
290             msg_Warn( p_access, "unimplemented query in control" );
291             return VLC_EGENERIC;
292     }
293     return VLC_SUCCESS;
294 }
295
296 /*****************************************************************************
297  * DemuxOpen:
298  *****************************************************************************/
299 static int DemuxOpen ( vlc_object_t *p_this )
300 {
301     demux_t *p_demux = (demux_t*)p_this;
302
303     if( strcmp( p_demux->psz_demux, "directory" ) )
304         return VLC_EGENERIC;
305
306     p_demux->pf_demux   = Demux;
307     p_demux->pf_control = DemuxControl;
308     return VLC_SUCCESS;
309 }
310
311 /*****************************************************************************
312  * Demux: EOF
313  *****************************************************************************/
314 static int Demux( demux_t *p_demux )
315 {
316     return 0;
317 }
318
319 /*****************************************************************************
320  * DemuxControl:
321  *****************************************************************************/
322 static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
323 {
324     return demux2_vaControlHelper( p_demux->s, 0, 0, 0, 1, i_query, args );
325 }
326
327
328 static int Sort (const char **a, const char **b)
329 {
330     return strcoll (*a, *b);
331 }
332
333 /*****************************************************************************
334  * ReadDir: read a directory and add its content to the list
335  *****************************************************************************/
336 static int ReadDir( playlist_t *p_playlist, const char *psz_name,
337                     int i_mode, playlist_item_t *p_parent,
338                     playlist_item_t *p_parent_category )
339 {
340     char **pp_dir_content = NULL;
341     int             i_dir_content, i, i_return = VLC_SUCCESS;
342     playlist_item_t *p_node;
343
344     char **ppsz_extensions = NULL;
345     int i_extensions = 0;
346     char *psz_ignore;
347
348     /* Get the first directory entry */
349     i_dir_content = utf8_scandir (psz_name, &pp_dir_content, NULL, Sort);
350     if( i_dir_content == -1 )
351     {
352         msg_Warn( p_playlist, "failed to read directory" );
353         return VLC_EGENERIC;
354     }
355     else if( i_dir_content <= 0 )
356     {
357         /* directory is empty */
358         if( pp_dir_content ) free( pp_dir_content );
359         return VLC_SUCCESS;
360     }
361
362     /* Build array with ignores */
363     psz_ignore = var_CreateGetString( p_playlist, "ignore-filetypes" );
364     if( psz_ignore && *psz_ignore )
365     {
366         char *psz_parser = psz_ignore;
367         int a;
368
369         for( a = 0; psz_parser[a] != '\0'; a++ )
370         {
371             if( psz_parser[a] == ',' ) i_extensions++;
372         }
373
374         ppsz_extensions = (char **)calloc (i_extensions, sizeof (char *));
375
376         for( a = 0; a < i_extensions; a++ )
377         {
378             char *tmp, *ptr;
379
380             while( psz_parser[0] != '\0' && psz_parser[0] == ' ' ) psz_parser++;
381             ptr = strchr( psz_parser, ',');
382             tmp = ( ptr == NULL )
383                  ? strdup( psz_parser )
384                  : strndup( psz_parser, ptr - psz_parser );
385
386             ppsz_extensions[a] = tmp;
387             psz_parser = ptr + 1;
388         }
389     }
390     if( psz_ignore ) free( psz_ignore );
391
392     /* While we still have entries in the directory */
393     for( i = 0; i < i_dir_content; i++ )
394     {
395         const char *entry = pp_dir_content[i];
396         int i_size_entry = strlen( psz_name ) +
397                            strlen( entry ) + 2;
398         char psz_uri[i_size_entry];
399
400         sprintf( psz_uri, "%s/%s", psz_name, entry);
401
402         /* if it starts with '.' then forget it */
403         if (entry[0] != '.')
404         {
405 #if defined( S_ISDIR )
406             struct stat stat_data;
407
408             if (!utf8_stat (psz_uri, &stat_data)
409              && S_ISDIR(stat_data.st_mode) && i_mode != MODE_COLLAPSE )
410 #else
411             if( 0 )
412 #endif
413             {
414 #if defined( S_ISLNK )
415 /*
416  * FIXME: there is a ToCToU race condition here; but it is rather tricky
417  * impossible to fix while keeping some kind of portable code, and maybe even
418  * in a non-portable way.
419  */
420                 if (utf8_lstat (psz_uri, &stat_data)
421                  || S_ISLNK(stat_data.st_mode) )
422                 {
423                     msg_Dbg( p_playlist, "skipping directory symlink %s",
424                              psz_uri );
425                     continue;
426                 }
427 #endif
428                 if( i_mode == MODE_NONE )
429                 {
430                     msg_Dbg( p_playlist, "skipping subdirectory %s", psz_uri );
431                     continue;
432                 }
433                 else if( i_mode == MODE_EXPAND )
434                 {
435                     msg_Dbg(p_playlist, "creading subdirectory %s", psz_uri );
436
437                     p_node = playlist_NodeCreate (p_playlist, entry,
438                                                   p_parent_category);
439
440                     /* If we had the parent in category, the it is now node.
441                      * Else, we still don't have  */
442                     if( ReadDir( p_playlist, psz_uri , MODE_EXPAND,
443                                  p_node, p_parent_category ? p_node : NULL )
444                           != VLC_SUCCESS )
445                     {
446                         i_return = VLC_EGENERIC;
447                         break;
448                     }
449                 }
450             }
451             else
452             {
453                 input_item_t *p_input;
454
455                 if( i_extensions > 0 )
456                 {
457                     const char *psz_dot = strrchr (entry, '.' );
458                     if( psz_dot++ && *psz_dot )
459                     {
460                         int a;
461                         for( a = 0; a < i_extensions; a++ )
462                         {
463                             if( !strcmp( psz_dot, ppsz_extensions[a] ) )
464                                 break;
465                         }
466                         if( a < i_extensions )
467                         {
468                             msg_Dbg( p_playlist, "ignoring file %s", psz_uri );
469                             continue;
470                         }
471                     }
472                 }
473
474                 p_input = input_ItemNewWithType( VLC_OBJECT(p_playlist),
475                                                  psz_uri, entry, 0, NULL,
476                                                  -1, ITEM_TYPE_VFILE );
477                 if (p_input != NULL)
478                     playlist_AddWhereverNeeded (p_playlist, p_input, p_parent,
479                                                 p_parent_category, VLC_FALSE,
480                                                 PLAYLIST_APPEND|PLAYLIST_PREPARSE);
481             }
482         }
483     }
484
485     for( i = 0; i < i_extensions; i++ )
486         if( ppsz_extensions[i] ) free( ppsz_extensions[i] );
487     if( ppsz_extensions ) free( ppsz_extensions );
488
489     for( i = 0; i < i_dir_content; i++ )
490         if( pp_dir_content[i] ) free( pp_dir_content[i] );
491     if( pp_dir_content ) free( pp_dir_content );
492
493     return i_return;
494 }