]> git.sesse.net Git - vlc/blob - modules/access/directory.c
Don't use find for the playlist
[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 char *psz_recursive_list[] = { "none", "collapse", "expand" };
78 static 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 #ifdef HAVE_SYS_STAT_H
138     struct stat stat_info;
139     char *psz_path = ToLocale( p_access->psz_path );
140
141     if( ( stat( psz_path, &stat_info ) == -1 ) ||
142         !S_ISDIR( stat_info.st_mode ) )
143 #elif defined(WIN32)
144     int i_ret;
145
146 #   ifdef UNICODE
147     wchar_t psz_path[MAX_PATH];
148     mbstowcs( psz_path, p_access->psz_path, MAX_PATH );
149     psz_path[MAX_PATH-1] = 0;
150 #   else
151     char *psz_path = p_access->psz_path;
152 #   endif /* UNICODE */
153
154     i_ret = GetFileAttributes( psz_path );
155     if( i_ret == -1 || !(i_ret & FILE_ATTRIBUTE_DIRECTORY) )
156
157 #else
158     if( strcmp( p_access->psz_access, "dir") &&
159         strcmp( p_access->psz_access, "directory") )
160 #endif
161     {
162         LocaleFree( psz_path );
163         return VLC_EGENERIC;
164     }
165
166     LocaleFree( psz_path );
167     p_access->pf_read  = Read;
168     p_access->pf_block = NULL;
169     p_access->pf_seek  = NULL;
170     p_access->pf_control= Control;
171
172     /* Force a demux */
173     p_access->psz_demux = strdup( "directory" );
174
175     return VLC_SUCCESS;
176 }
177
178 /*****************************************************************************
179  * Close: close the target
180  *****************************************************************************/
181 static void Close( vlc_object_t * p_this )
182 {
183 }
184
185 /*****************************************************************************
186  * ReadNull: read the directory
187  *****************************************************************************/
188 static int ReadNull( access_t *p_access, uint8_t *p_buffer, int i_len)
189 {
190     /* Return fake data */
191     memset( p_buffer, 0, i_len );
192     return i_len;
193 }
194
195 /*****************************************************************************
196  * Read: read the directory
197  *****************************************************************************/
198 static int Read( access_t *p_access, uint8_t *p_buffer, int i_len)
199 {
200     char *psz_name = NULL;
201     char *psz;
202     char *ptr;
203     int  i_mode, i_activity;
204
205     playlist_item_t *p_item, *p_root_category;
206     playlist_t *p_playlist = pl_Yield( p_access );
207
208     psz_name = ToLocale( p_access->psz_path );
209     ptr = strdup( psz_name );
210     LocaleFree( psz_name );
211     if( ptr == NULL )
212         goto end;
213
214     psz_name = ptr;
215
216     /* Remove the ending '/' char */
217     ptr += strlen( ptr );
218     if( ( ptr > psz_name ) )
219     {
220         switch( *--ptr )
221         {
222             case '/':
223             case '\\':
224                 *ptr = '\0';
225         }
226     }
227
228     /* Handle mode */
229     psz = var_CreateGetString( p_access, "recursive" );
230     if( *psz == '\0' || !strncmp( psz, "none" , 4 )  )
231         i_mode = MODE_NONE;
232     else if( !strncmp( psz, "collapse", 8 )  )
233         i_mode = MODE_COLLAPSE;
234     else
235         i_mode = MODE_EXPAND;
236     free( psz );
237
238     msg_Dbg( p_access, "opening directory `%s'", p_access->psz_path );
239
240     if( p_playlist->status.p_item && p_playlist->status.p_item->p_input ==
241         ((input_thread_t *)p_access->p_parent)->input.p_item )
242         p_item = p_playlist->status.p_item;
243     else
244     {
245         input_item_t *p_current = ( (input_thread_t*)p_access->p_parent)->
246                                                         input.p_item;
247         p_item = playlist_LockItemGetByInput( p_playlist, p_current );
248         if( !p_item )
249         {
250             msg_Dbg( p_playlist, "unable to find item in playlist");
251             return VLC_ENOOBJ;
252         }
253     }
254     p_item->p_input->i_type = ITEM_TYPE_DIRECTORY;
255
256     p_root_category = playlist_LockItemToNode( p_playlist, p_item );
257
258     i_activity = var_GetInteger( p_playlist, "activity" );
259     var_SetInteger( p_playlist, "activity", i_activity +
260                     DIRECTORY_ACTIVITY );
261
262     ReadDir( p_playlist, psz_name , i_mode, p_item, p_root_category );
263
264     i_activity = var_GetInteger( p_playlist, "activity" );
265     var_SetInteger( p_playlist, "activity", i_activity -
266                     DIRECTORY_ACTIVITY );
267 end:
268     if( psz_name ) free( psz_name );
269     vlc_object_release( p_playlist );
270
271     /* Return fake data forever */
272     p_access->pf_read = ReadNull;
273     return ReadNull( p_access, p_buffer, i_len );
274 }
275
276 /*****************************************************************************
277  * DemuxOpen:
278  *****************************************************************************/
279 static int Control( access_t *p_access, int i_query, va_list args )
280 {
281     vlc_bool_t   *pb_bool;
282     int          *pi_int;
283     int64_t      *pi_64;
284
285     switch( i_query )
286     {
287         /* */
288         case ACCESS_CAN_SEEK:
289         case ACCESS_CAN_FASTSEEK:
290         case ACCESS_CAN_PAUSE:
291         case ACCESS_CAN_CONTROL_PACE:
292             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
293             *pb_bool = VLC_FALSE;    /* FIXME */
294             break;
295
296         /* */
297         case ACCESS_GET_MTU:
298             pi_int = (int*)va_arg( args, int * );
299             *pi_int = 0;
300             break;
301
302         case ACCESS_GET_PTS_DELAY:
303             pi_64 = (int64_t*)va_arg( args, int64_t * );
304             *pi_64 = DEFAULT_PTS_DELAY * 1000;
305             break;
306
307         /* */
308         case ACCESS_SET_PAUSE_STATE:
309         case ACCESS_GET_TITLE_INFO:
310         case ACCESS_SET_TITLE:
311         case ACCESS_SET_SEEKPOINT:
312         case ACCESS_SET_PRIVATE_ID_STATE:
313             return VLC_EGENERIC;
314
315         default:
316             msg_Warn( p_access, "unimplemented query in control" );
317             return VLC_EGENERIC;
318     }
319     return VLC_SUCCESS;
320 }
321
322 /*****************************************************************************
323  * DemuxOpen:
324  *****************************************************************************/
325 static int DemuxOpen ( vlc_object_t *p_this )
326 {
327     demux_t *p_demux = (demux_t*)p_this;
328
329     if( strcmp( p_demux->psz_demux, "directory" ) )
330         return VLC_EGENERIC;
331
332     p_demux->pf_demux   = Demux;
333     p_demux->pf_control = DemuxControl;
334     return VLC_SUCCESS;
335 }
336
337 /*****************************************************************************
338  * Demux: EOF
339  *****************************************************************************/
340 static int Demux( demux_t *p_demux )
341 {
342     return 0;
343 }
344
345 /*****************************************************************************
346  * DemuxControl:
347  *****************************************************************************/
348 static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
349 {
350     return demux2_vaControlHelper( p_demux->s, 0, 0, 0, 1, i_query, args );
351 }
352
353 static int Filter( const struct dirent *foo )
354 {
355     return VLC_TRUE;
356 }
357
358 /*****************************************************************************
359  * ReadDir: read a directory and add its content to the list
360  *****************************************************************************/
361 static int ReadDir( playlist_t *p_playlist, const char *psz_name,
362                     int i_mode, playlist_item_t *p_parent,
363                     playlist_item_t *p_parent_category )
364 {
365     struct dirent   **pp_dir_content = 0;
366     int             i_dir_content, i, i_return = VLC_SUCCESS;
367     playlist_item_t *p_node;
368
369     char **ppsz_extensions = 0;
370     int i_extensions = 0;
371     char *psz_ignore;
372
373     /* Get the first directory entry */
374     i_dir_content = scandir( psz_name, &pp_dir_content, Filter, alphasort );
375     if( i_dir_content == -1 )
376     {
377         msg_Warn( p_playlist, "failed to read directory" );
378         return VLC_EGENERIC;
379     }
380     else if( i_dir_content <= 0 )
381     {
382         /* directory is empty */
383         if( pp_dir_content ) free( pp_dir_content );
384         return VLC_SUCCESS;
385     }
386
387     /* Build array with ignores */
388     psz_ignore = var_CreateGetString( p_playlist, "ignore-filetypes" );
389     if( psz_ignore && *psz_ignore )
390     {
391         char *psz_parser = psz_ignore;
392         int a;
393
394         for( a = 0; psz_parser[a] != '\0'; a++ )
395         {
396             if( psz_parser[a] == ',' ) i_extensions++;
397         }
398
399         ppsz_extensions = (char **)malloc( sizeof( char * ) * i_extensions );
400
401         for( a = 0; a < i_extensions; a++ )
402         {
403             char *tmp, *ptr;
404
405             while( psz_parser[0] != '\0' && psz_parser[0] == ' ' ) psz_parser++;
406             ptr = strchr( psz_parser, ',');
407             tmp = ( ptr == NULL )
408                  ? strdup( psz_parser )
409                  : strndup( psz_parser, ptr - psz_parser );
410
411             ppsz_extensions[a] = tmp;
412             psz_parser = ptr + 1;
413         }
414     }
415
416     /* While we still have entries in the directory */
417     for( i = 0; i < i_dir_content; i++ )
418     {
419         struct dirent *p_dir_content = pp_dir_content[i];
420         int i_size_entry = strlen( psz_name ) +
421                            strlen( p_dir_content->d_name ) + 2;
422         char *psz_uri = (char *)malloc( sizeof(char) * i_size_entry );
423
424         sprintf( psz_uri, "%s/%s", psz_name, p_dir_content->d_name );
425
426         /* if it starts with '.' then forget it */
427         if( p_dir_content->d_name[0] != '.' )
428         {
429 #if defined( S_ISDIR )
430             struct stat stat_data;
431
432             if( !stat( psz_uri, &stat_data )
433              && S_ISDIR(stat_data.st_mode) && i_mode != MODE_COLLAPSE )
434 #elif defined( DT_DIR )
435             if( ( p_dir_content->d_type & DT_DIR ) && i_mode != MODE_COLLAPSE )
436 #else
437             if( 0 )
438 #endif
439             {
440 #if defined( S_ISLNK )
441 /*
442  * FIXME: there is a ToCToU race condition here; but it is rather tricky
443  * impossible to fix while keeping some kind of portable code, and maybe even
444  * in a non-portable way.
445  */
446                 if( lstat( psz_uri, &stat_data )
447                  || S_ISLNK(stat_data.st_mode) )
448                 {
449                     msg_Dbg( p_playlist, "skipping directory symlink %s",
450                              psz_uri );
451                     free( psz_uri );
452                     continue;
453                 }
454 #endif
455                 if( i_mode == MODE_NONE )
456                 {
457                     msg_Dbg( p_playlist, "skipping subdirectory %s", psz_uri );
458                     free( psz_uri );
459                     continue;
460                 }
461                 else if( i_mode == MODE_EXPAND )
462                 {
463                     char *psz_newname, *psz_tmp;
464                     msg_Dbg(p_playlist, "reading subdirectory %s", psz_uri );
465
466                     psz_tmp = FromLocale( p_dir_content->d_name );
467                     psz_newname = vlc_fix_readdir_charset(
468                                                 p_playlist, psz_tmp );
469                     LocaleFree( psz_tmp );
470
471                     if( p_parent_category )
472                     {
473                         p_node = playlist_NodeCreate( p_playlist, psz_newname,
474                                                       p_parent_category );
475                     }
476                     else
477                     {
478                         p_node = playlist_NodeCreate( p_playlist, psz_newname,
479                                                       p_parent_category );
480                     }
481
482                     /* an strdup() just because of Mac OS X */
483                     free( psz_newname );
484
485                     /* If we had the parent in category, the it is now node.
486                      * Else, we still don't have  */
487                     if( ReadDir( p_playlist, psz_uri , MODE_EXPAND,
488                                  p_node, p_parent_category ? p_node : NULL )
489                           != VLC_SUCCESS )
490                     {
491                         i_return = VLC_EGENERIC;
492                         break;
493                     }
494                 }
495             }
496             else
497             {
498                 input_item_t *p_input;
499                 char *psz_tmp1, *psz_tmp2, *psz_loc;
500
501                 if( i_extensions > 0 )
502                 {
503                     char *psz_dot = strrchr( p_dir_content->d_name, '.' );
504                     if( psz_dot++ && *psz_dot )
505                     {
506                         int a;
507                         for( a = 0; a < i_extensions; a++ )
508                         {
509                             if( !strcmp( psz_dot, ppsz_extensions[a] ) )
510                                 break;
511                         }
512                         if( a < i_extensions )
513                         {
514                             msg_Dbg( p_playlist, "ignoring file %s", psz_uri );
515                             free( psz_uri );
516                             continue;
517                         }
518                     }
519                 }
520
521                 psz_loc = FromLocale( psz_uri );
522                 psz_tmp1 = vlc_fix_readdir_charset( VLC_OBJECT(p_playlist),
523                                                     psz_loc );
524                 LocaleFree( psz_loc );
525
526                 psz_loc = FromLocale( p_dir_content->d_name );
527                 psz_tmp2 = vlc_fix_readdir_charset( VLC_OBJECT(p_playlist),
528                                                     psz_loc );
529                 LocaleFree( psz_loc );
530
531                 p_input = input_ItemNewWithType( VLC_OBJECT(p_playlist),
532                                                  psz_tmp1, psz_tmp2, 0, NULL,
533                                                  -1, ITEM_TYPE_VFILE );
534
535                 playlist_AddWhereverNeeded( p_playlist, p_input, p_parent,
536                                             p_parent_category, VLC_FALSE,
537                                             PLAYLIST_APPEND|PLAYLIST_PREPARSE);
538             }
539         }
540         free( psz_uri );
541     }
542
543     for( i = 0; i < i_extensions; i++ )
544         if( ppsz_extensions[i] ) free( ppsz_extensions[i] );
545     if( ppsz_extensions ) free( ppsz_extensions );
546
547     if( psz_ignore ) free( psz_ignore );
548
549     for( i = 0; i < i_dir_content; i++ )
550         if( pp_dir_content[i] ) free( pp_dir_content[i] );
551     if( pp_dir_content ) free( pp_dir_content );
552
553     return i_return;
554 }