]> git.sesse.net Git - vlc/blob - modules/access/directory.c
directory: Playlist code shouldn't be used here.
[vlc] / modules / access / directory.c
1 /*****************************************************************************
2  * directory.c: expands a directory (directory: access plug-in)
3  *****************************************************************************
4  * Copyright (C) 2002-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Derk-Jan Hartman <hartman at videolan dot org>
8  *          RĂ©mi Denis-Courmont
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #warning playlist code must not be used here.
36 #include <vlc_playlist.h>
37 #include <vlc_input.h>
38 #include <vlc_access.h>
39 #include <vlc_demux.h>
40
41 #ifdef HAVE_SYS_TYPES_H
42 #   include <sys/types.h>
43 #endif
44 #ifdef HAVE_SYS_STAT_H
45 #   include <sys/stat.h>
46 #endif
47 #ifdef HAVE_ERRNO_H
48 #   include <errno.h>
49 #endif
50 #ifdef HAVE_FCNTL_H
51 #   include <fcntl.h>
52 #endif
53
54 #ifdef HAVE_UNISTD_H
55 #   include <unistd.h>
56 #elif defined( WIN32 ) && !defined( UNDER_CE )
57 #   include <io.h>
58 #elif defined( UNDER_CE )
59 #   define strcoll strcmp
60 #endif
61
62 #ifdef HAVE_DIRENT_H
63 #   include <dirent.h>
64 #endif
65
66 #include <vlc_charset.h>
67
68 /*****************************************************************************
69  * Module descriptor
70  *****************************************************************************/
71 static int  Open ( vlc_object_t * );
72 static void Close( vlc_object_t * );
73
74 static int  DemuxOpen ( vlc_object_t * );
75
76 #define RECURSIVE_TEXT N_("Subdirectory behavior")
77 #define RECURSIVE_LONGTEXT N_( \
78         "Select whether subdirectories must be expanded.\n" \
79         "none: subdirectories do not appear in the playlist.\n" \
80         "collapse: subdirectories appear but are expanded on first play.\n" \
81         "expand: all subdirectories are expanded.\n" )
82
83 static const char *const psz_recursive_list[] = { "none", "collapse", "expand" };
84 static const char *const psz_recursive_list_text[] = {
85     N_("none"), N_("collapse"), N_("expand") };
86
87 #define IGNORE_TEXT N_("Ignored extensions")
88 #define IGNORE_LONGTEXT N_( \
89         "Files with these extensions will not be added to playlist when " \
90         "opening a directory.\n" \
91         "This is useful if you add directories that contain playlist files " \
92         "for instance. Use a comma-separated list of extensions." )
93
94 vlc_module_begin();
95     set_category( CAT_INPUT );
96     set_shortname( N_("Directory" ) );
97     set_subcategory( SUBCAT_INPUT_ACCESS );
98     set_description( N_("Standard filesystem directory input") );
99     set_capability( "access", 55 );
100     add_shortcut( "directory" );
101     add_shortcut( "dir" );
102     add_shortcut( "file" );
103     add_string( "recursive", "expand" , NULL, RECURSIVE_TEXT,
104                 RECURSIVE_LONGTEXT, false );
105       change_string_list( psz_recursive_list, psz_recursive_list_text, 0 );
106     add_string( "ignore-filetypes", "m3u,db,nfo,jpg,gif,sfv,txt,sub,idx,srt,cue",
107                 NULL, IGNORE_TEXT, IGNORE_LONGTEXT, false );
108     set_callbacks( Open, Close );
109
110     add_submodule();
111         set_description( "Directory EOF");
112         set_capability( "demux", 0 );
113         set_callbacks( DemuxOpen, NULL );
114 vlc_module_end();
115
116
117 /*****************************************************************************
118  * Local prototypes, constants, structures
119  *****************************************************************************/
120
121 enum
122 {
123     MODE_EXPAND,
124     MODE_COLLAPSE,
125     MODE_NONE
126 };
127
128 typedef struct stat_list_t stat_list_t;
129
130 static ssize_t Read( access_t *, uint8_t *, size_t );
131 static ssize_t ReadNull( access_t *, uint8_t *, size_t );
132 static int Control( access_t *, int, va_list );
133
134 static int Demux( demux_t *p_demux );
135 static int DemuxControl( demux_t *p_demux, int i_query, va_list args );
136
137
138 static int ReadDir( playlist_t *, const char *psz_name, int i_mode,
139                     playlist_item_t *, playlist_item_t *, input_item_t *,
140                     DIR *handle, stat_list_t *stats );
141
142 static DIR *OpenDir (vlc_object_t *obj, const char *psz_name);
143
144 /*****************************************************************************
145  * Open: open the directory
146  *****************************************************************************/
147 static int Open( vlc_object_t *p_this )
148 {
149     access_t *p_access = (access_t*)p_this;
150
151     if( !p_access->psz_path )
152         return VLC_EGENERIC;
153
154     struct stat st;
155     if( !stat( p_access->psz_path, &st ) && !S_ISDIR( st.st_mode ) )
156         return VLC_EGENERIC;
157
158     DIR *handle = OpenDir (p_this, p_access->psz_path);
159     if (handle == NULL)
160         return VLC_EGENERIC;
161
162     p_access->p_sys = (access_sys_t *)handle;
163
164     p_access->pf_read  = Read;
165     p_access->pf_block = NULL;
166     p_access->pf_seek  = NULL;
167     p_access->pf_control= Control;
168
169     /* Force a demux */
170     free( p_access->psz_demux );
171     p_access->psz_demux = strdup( "directory" );
172
173     return VLC_SUCCESS;
174 }
175
176 /*****************************************************************************
177  * Close: close the target
178  *****************************************************************************/
179 static void Close( vlc_object_t * p_this )
180 {
181     access_t *p_access = (access_t*)p_this;
182     DIR *handle = (DIR *)p_access->p_sys;
183     closedir (handle);
184 }
185
186 /*****************************************************************************
187  * ReadNull: read the directory
188  *****************************************************************************/
189 static ssize_t ReadNull( access_t *p_access, uint8_t *p_buffer, size_t i_len)
190 {
191     /* Return fake data */
192     memset( p_buffer, 0, i_len );
193     return i_len;
194 }
195
196 /*****************************************************************************
197  * Read: read the directory
198  *****************************************************************************/
199 static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len)
200 {
201     char               *psz;
202     int                 i_mode, i_activity;
203     char               *psz_name = strdup (p_access->psz_path);
204
205     if( psz_name == NULL )
206         return VLC_ENOMEM;
207
208     playlist_t         *p_playlist = pl_Yield( p_access );
209     input_thread_t     *p_input = (input_thread_t*)vlc_object_find( p_access, VLC_OBJECT_INPUT, FIND_PARENT );
210
211     playlist_item_t    *p_item_in_category;
212     input_item_t       *p_current_input;
213     playlist_item_t    *p_current;
214
215     if( !p_input )
216     {
217         msg_Err( p_access, "unable to find input (internal error)" );
218         vlc_object_release( p_playlist );
219         return VLC_ENOOBJ;
220     }
221
222     p_current_input = input_GetItem( p_input );
223     p_current = playlist_ItemGetByInput( p_playlist, p_current_input, false );
224
225     if( !p_current )
226     {
227         msg_Err( p_access, "unable to find item in playlist" );
228         vlc_object_release( p_input );
229         vlc_object_release( p_playlist );
230         return VLC_ENOOBJ;
231     }
232
233     /* Remove the ending '/' char */
234     if( psz_name[0] )
235     {
236         char *ptr = psz_name + strlen (psz_name);
237         switch (*--ptr)
238         {
239             case '/':
240             case '\\':
241                 *ptr = '\0';
242         }
243     }
244
245     /* Handle mode */
246     psz = var_CreateGetString( p_access, "recursive" );
247     if( *psz == '\0' || !strncmp( psz, "none" , 4 )  )
248         i_mode = MODE_NONE;
249     else if( !strncmp( psz, "collapse", 8 )  )
250         i_mode = MODE_COLLAPSE;
251     else
252         i_mode = MODE_EXPAND;
253     free( psz );
254
255     p_current->p_input->i_type = ITEM_TYPE_DIRECTORY;
256     p_item_in_category = playlist_ItemToNode( p_playlist, p_current,
257                                               false );
258
259     i_activity = var_GetInteger( p_playlist, "activity" );
260     var_SetInteger( p_playlist, "activity", i_activity +
261                     DIRECTORY_ACTIVITY );
262
263     ReadDir( p_playlist, psz_name, i_mode, p_current, p_item_in_category,
264              p_current_input, (DIR *)p_access->p_sys, NULL );
265
266     i_activity = var_GetInteger( p_playlist, "activity" );
267     var_SetInteger( p_playlist, "activity", i_activity -
268                     DIRECTORY_ACTIVITY );
269
270     playlist_Signal( p_playlist );
271
272     free( psz_name );
273     vlc_object_release( p_input );
274     vlc_object_release( p_playlist );
275
276     /* Return fake data forever */
277     p_access->pf_read = ReadNull;
278     return -1;
279 }
280
281 /*****************************************************************************
282  * Control:
283  *****************************************************************************/
284 static int Control( access_t *p_access, int i_query, va_list args )
285 {
286     bool   *pb_bool;
287     int          *pi_int;
288     int64_t      *pi_64;
289
290     switch( i_query )
291     {
292         /* */
293         case ACCESS_CAN_SEEK:
294         case ACCESS_CAN_FASTSEEK:
295         case ACCESS_CAN_PAUSE:
296         case ACCESS_CAN_CONTROL_PACE:
297             pb_bool = (bool*)va_arg( args, bool* );
298             *pb_bool = false;    /* FIXME */
299             break;
300
301         /* */
302         case ACCESS_GET_MTU:
303             pi_int = (int*)va_arg( args, int * );
304             *pi_int = 0;
305             break;
306
307         case ACCESS_GET_PTS_DELAY:
308             pi_64 = (int64_t*)va_arg( args, int64_t * );
309             *pi_64 = DEFAULT_PTS_DELAY * 1000;
310             break;
311
312         /* */
313         case ACCESS_SET_PAUSE_STATE:
314         case ACCESS_GET_TITLE_INFO:
315         case ACCESS_SET_TITLE:
316         case ACCESS_SET_SEEKPOINT:
317         case ACCESS_SET_PRIVATE_ID_STATE:
318         case ACCESS_GET_CONTENT_TYPE:
319             return VLC_EGENERIC;
320
321         default:
322             msg_Warn( p_access, "unimplemented query in control" );
323             return VLC_EGENERIC;
324     }
325     return VLC_SUCCESS;
326 }
327
328 /*****************************************************************************
329  * DemuxOpen:
330  *****************************************************************************/
331 static int DemuxOpen ( vlc_object_t *p_this )
332 {
333     demux_t *p_demux = (demux_t*)p_this;
334
335     if( strcmp( p_demux->psz_demux, "directory" ) )
336         return VLC_EGENERIC;
337
338     p_demux->pf_demux   = Demux;
339     p_demux->pf_control = DemuxControl;
340     return VLC_SUCCESS;
341 }
342
343 /*****************************************************************************
344  * Demux: EOF
345  *****************************************************************************/
346 static int Demux( demux_t *p_demux )
347 {
348     return 0;
349 }
350
351 /*****************************************************************************
352  * DemuxControl:
353  *****************************************************************************/
354 static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
355 {
356     return demux_vaControlHelper( p_demux->s, 0, 0, 0, 1, i_query, args );
357 }
358
359
360 static int Sort (const char **a, const char **b)
361 {
362     return strcoll (*a, *b);
363 }
364
365 struct stat_list_t
366 {
367     stat_list_t *parent;
368     struct stat st;
369 };
370
371
372 /*****************************************************************************
373  * ReadDir: read a directory and add its content to the list
374  *****************************************************************************/
375 static int ReadDir( playlist_t *p_playlist, const char *psz_name,
376                     int i_mode, playlist_item_t *p_parent,
377                     playlist_item_t *p_parent_category,
378                     input_item_t *p_current_input,
379                     DIR *handle, stat_list_t *stparent )
380 {
381     char **pp_dir_content = NULL;
382     int             i_dir_content, i, i_return = VLC_SUCCESS;
383     playlist_item_t *p_node;
384
385     char **ppsz_extensions = NULL;
386     int i_extensions = 0;
387     char *psz_ignore;
388
389     struct stat_list_t stself;
390 #ifndef WIN32
391     int fd = dirfd (handle);
392
393     if ((fd == -1) || fstat (fd, &stself.st))
394     {
395         msg_Err (p_playlist, "cannot stat `%s': %m", psz_name);
396         return VLC_EGENERIC;
397     }
398
399     for (stat_list_t *stats = stparent; stats != NULL; stats = stats->parent)
400     {
401         if ((stself.st.st_ino == stats->st.st_ino)
402          && (stself.st.st_dev == stats->st.st_dev))
403         {
404             msg_Warn (p_playlist,
405                       "ignoring infinitely recursive directory `%s'",
406                       psz_name);
407             return VLC_SUCCESS;
408         }
409     }
410 #else
411         /* Windows has st_dev (driver letter - 'A'), but it zeroes st_ino,
412          * so that the test above will always incorrectly succeed.
413          * Besides, Windows does not have dirfd(). */
414 #endif
415
416     stself.parent = stparent;
417
418     /* Get the first directory entry */
419     i_dir_content = utf8_loaddir (handle, &pp_dir_content, NULL, Sort);
420     if( i_dir_content == -1 )
421     {
422         msg_Err (p_playlist, "cannot read `%s': %m", psz_name);
423         return VLC_EGENERIC;
424     }
425     else if( i_dir_content <= 0 )
426     {
427         /* directory is empty */
428         msg_Dbg( p_playlist, "%s directory is empty", psz_name );
429         free( pp_dir_content );
430         return VLC_SUCCESS;
431     }
432
433     /* Build array with ignores */
434     psz_ignore = var_CreateGetString( p_playlist, "ignore-filetypes" );
435     if( psz_ignore && *psz_ignore )
436     {
437         char *psz_parser = psz_ignore;
438         int a;
439
440         for( a = 0; psz_parser[a] != '\0'; a++ )
441         {
442             if( psz_parser[a] == ',' ) i_extensions++;
443         }
444
445         ppsz_extensions = (char **)calloc (i_extensions, sizeof (char *));
446
447         for( a = 0; a < i_extensions; a++ )
448         {
449             char *tmp, *ptr;
450
451             while( psz_parser[0] != '\0' && psz_parser[0] == ' ' ) psz_parser++;
452             ptr = strchr( psz_parser, ',');
453             tmp = ( ptr == NULL )
454                  ? strdup( psz_parser )
455                  : strndup( psz_parser, ptr - psz_parser );
456
457             ppsz_extensions[a] = tmp;
458             psz_parser = ptr + 1;
459         }
460     }
461     free( psz_ignore );
462
463     /* While we still have entries in the directory */
464     for( i = 0; i < i_dir_content; i++ )
465     {
466         const char *entry = pp_dir_content[i];
467         int i_size_entry = strlen( psz_name ) +
468                            strlen( entry ) + 2 + 7 /* strlen("file://") */;
469         char psz_uri[i_size_entry];
470
471         sprintf( psz_uri, "%s/%s", psz_name, entry);
472
473         /* if it starts with '.' then forget it */
474         if (entry[0] != '.')
475         {
476             DIR *subdir = (i_mode != MODE_COLLAPSE)
477                     ? OpenDir (VLC_OBJECT (p_playlist), psz_uri) : NULL;
478
479             if (subdir != NULL) /* Recurse into subdirectory */
480             {
481                 if( i_mode == MODE_NONE )
482                 {
483                     msg_Dbg( p_playlist, "skipping subdirectory `%s'",
484                              psz_uri );
485                     closedir (subdir);
486                     continue;
487                 }
488
489                 msg_Dbg (p_playlist, "creating subdirectory %s", psz_uri);
490
491                 p_node = playlist_NodeCreate( p_playlist, entry,
492                                               p_parent_category,
493                                               PLAYLIST_NO_REBUILD, NULL );
494
495                 /* If we had the parent in category, the it is now node.
496                  * Else, we still don't have  */
497                 i_return = ReadDir( p_playlist, psz_uri , MODE_EXPAND,
498                                     p_node, p_parent_category ? p_node : NULL,
499                                     p_current_input, subdir, &stself );
500                 closedir (subdir);
501                 if (i_return)
502                     break; // error :-(
503             }
504             else
505             {
506                 input_item_t *p_input;
507
508                 if( i_extensions > 0 )
509                 {
510                     const char *psz_dot = strrchr (entry, '.' );
511                     if( psz_dot++ && *psz_dot )
512                     {
513                         int a;
514                         for( a = 0; a < i_extensions; a++ )
515                         {
516                             if( !strcmp( psz_dot, ppsz_extensions[a] ) )
517                                 break;
518                         }
519                         if( a < i_extensions )
520                         {
521                             msg_Dbg( p_playlist, "ignoring file %s", psz_uri );
522                             continue;
523                         }
524                     }
525                 }
526
527                 memmove (psz_uri + 7, psz_uri, sizeof (psz_uri) - 7);
528                 memcpy (psz_uri, "file://", 7);
529                 p_input = input_ItemNewWithType( VLC_OBJECT(p_playlist),
530                                                  psz_uri, entry, 0, NULL,
531                                                  -1, ITEM_TYPE_FILE );
532                 if (p_input != NULL)
533                 {
534                     if( p_current_input )
535                         input_ItemCopyOptions( p_current_input, p_input );
536                     int i_ret = playlist_BothAddInput( p_playlist, p_input,
537                                            p_parent_category,
538                                            PLAYLIST_APPEND|PLAYLIST_PREPARSE|
539                                            PLAYLIST_NO_REBUILD,
540                                            PLAYLIST_END, NULL, NULL,
541                                            false );
542                     vlc_gc_decref( p_input );
543                     if( i_ret != VLC_SUCCESS )
544                         return VLC_EGENERIC;
545                 }
546             }
547         }
548     }
549
550     for( i = 0; i < i_extensions; i++ )
551         free( ppsz_extensions[i] );
552     free( ppsz_extensions );
553
554     for( i = 0; i < i_dir_content; i++ )
555         free( pp_dir_content[i] );
556     free( pp_dir_content );
557
558     return i_return;
559 }
560
561
562 static DIR *OpenDir (vlc_object_t *obj, const char *path)
563 {
564     msg_Dbg (obj, "opening directory `%s'", path);
565     DIR *handle = utf8_opendir (path);
566     if (handle == NULL)
567     {
568         int err = errno;
569         if (err != ENOTDIR)
570             msg_Err (obj, "%s: %m", path);
571         else
572             msg_Dbg (obj, "skipping non-directory `%s'", path);
573         errno = err;
574
575         return NULL;
576     }
577     return handle;
578 }