]> git.sesse.net Git - vlc/blob - src/input/subtitles.c
Also use strlcpy()
[vlc] / src / input / subtitles.c
1 /*****************************************************************************
2  * subtitles.c
3  *****************************************************************************
4  * Copyright (C) 2003-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Derk-Jan Hartman <hartman at videolan.org>
8  * This is adapted code from the GPL'ed MPlayer (http://mplayerhq.hu)
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  *  \file
27  *  This file contains functions to dectect subtitle files.
28  */
29
30 #include <stdlib.h>
31 #include <vlc/vlc.h>
32 #include <vlc/input.h>
33 #include "charset.h"
34
35 #ifdef HAVE_DIRENT_H
36 #   include <dirent.h>
37 #endif
38
39 #ifdef HAVE_LIMITS_H
40 #   include <limits.h>
41 #endif
42
43 #ifdef HAVE_UNISTD_H
44 #   include <unistd.h>
45 #endif
46
47 #include <ctype.h>
48
49 /**
50  * What's between a directory and a filename?
51  */
52 #if defined( WIN32 )
53     #define DIRECTORY_SEPARATOR '\\'
54 #else
55     #define DIRECTORY_SEPARATOR '/'
56 #endif
57
58 /**
59  * We are not going to autodetect more subtitle files than this.
60  */
61 #define MAX_SUBTITLE_FILES 128
62
63
64 /**
65  * The possible extensions for subtitle files we support
66  */
67 static const char * sub_exts[] = {  "utf", "utf8", "utf-8", "sub", "srt", "smi", "txt", "ssa", "idx", NULL };
68 /* extensions from unsupported types */
69 /* rt, aqt, jss, js, ass */
70
71 static void strcpy_trim( char *d, char *s )
72 {
73     /* skip leading whitespace */
74     while( *s && !isalnum(*s) )
75     {
76         s++;
77     }
78     for(;;)
79     {
80         /* copy word */
81         while( *s && isalnum(*s) )
82         {
83             *d = tolower(*s);
84             s++; d++;
85         }
86         if( *s == 0 ) break;
87         /* trim excess whitespace */
88         while( *s && !isalnum(*s) )
89         {
90             s++;
91         }
92         if( *s == 0 ) break;
93         *d++ = ' ';
94     }
95     *d = 0;
96 }
97
98 static void strcpy_strip_ext( char *d, char *s )
99 {
100     char *tmp = strrchr(s, '.');
101     if( !tmp )
102     {
103         strcpy(d, s);
104         return;
105     }
106     else
107         strlcpy(d, s, tmp - s);
108     while( *d )
109     {
110         *d = tolower(*d);
111         d++;
112     }
113 }
114
115 static void strcpy_get_ext( char *d, char *s )
116 {
117     char *tmp = strrchr(s, '.');
118     if( !tmp )
119     {
120         strcpy(d, "");
121         return;
122     } else strcpy( d, tmp + 1 );
123 }
124
125 static int whiteonly( char *s )
126 {
127   while ( *s )
128   {
129         if( isalnum( *s ) ) return 0;
130         s++;
131   }
132   return 1;
133 }
134
135 typedef struct _subfn
136 {
137     int priority;
138     char *psz_fname;
139     char *psz_ext;
140 } subfn;
141
142 static int compare_sub_priority( const void *a, const void *b )
143 {
144     if (((subfn*)a)->priority > ((subfn*)b)->priority)
145     {
146         return -1;
147     }
148
149     if (((subfn*)a)->priority < ((subfn*)b)->priority)
150     {
151         return 1;
152     }
153
154 #ifndef UNDER_CE
155     return strcoll(((subfn*)a)->psz_fname, ((subfn*)b)->psz_fname);
156 #else
157     return strcmp(((subfn*)a)->psz_fname, ((subfn*)b)->psz_fname);
158 #endif
159 }
160
161 /* Utility function for scandir */
162 static int Filter( const char *psz_dir_content )
163 {
164     /* does it end with a subtitle extension? */
165     const char *tmp = strrchr( psz_dir_content, '.');
166     if( tmp == NULL )
167         return 0;
168     else
169     {
170         int i;
171         tmp++;
172
173         for( i = 0; sub_exts[i]; i++ )
174             if( strcmp( sub_exts[i], tmp ) == 0 )
175                 return 1;
176     }
177     return 0;
178 }
179
180
181 /**
182  * Convert a list of paths separated by ',' to a char**
183  */
184 static char **paths_to_list( char *psz_dir, char *psz_path )
185 {
186     unsigned int i, k, i_nb_subdirs;
187     char **subdirs; /* list of subdirectories to look in */
188
189     if( !psz_dir ) return NULL;
190     if( !psz_path ) return NULL;
191
192     i_nb_subdirs = 1;
193     for( k = 0; k < strlen( psz_path ); k++ )
194     {
195         if( psz_path[k] == ',' )
196         {
197             i_nb_subdirs++;
198         }
199     }
200
201     if( i_nb_subdirs > 0 )
202     {
203         char *psz_parser = NULL, *psz_temp = NULL;
204
205         subdirs = (char**)malloc( sizeof(char*) * ( i_nb_subdirs + 1 ) );
206         memset( subdirs, 0, sizeof(char*) * ( i_nb_subdirs + 1 ) );
207         i = 0;
208         psz_parser = psz_path;
209         while( psz_parser && *psz_parser )
210         {
211             char *psz_subdir;
212             psz_subdir = psz_parser;
213             psz_parser = strchr( psz_subdir, ',' );
214             if( psz_parser )
215             {
216                 *psz_parser = '\0';
217                 psz_parser++;
218                 while( *psz_parser == ' ' )
219                 {
220                     psz_parser++;
221                 }
222             }
223             if( strlen( psz_subdir ) > 0 )
224             {
225                 psz_temp = (char *)malloc( strlen(psz_dir)
226                                            + strlen(psz_subdir) + 2 );
227                 if( psz_temp )
228                 {
229                     sprintf( psz_temp, "%s%s%c",
230                              psz_subdir[0] == '.' ? psz_dir : "",
231                              psz_subdir,
232                              psz_subdir[strlen(psz_subdir) - 1] ==
233                               DIRECTORY_SEPARATOR ? '\0' : DIRECTORY_SEPARATOR );
234                     subdirs[i] = psz_temp;
235                     i++;
236                 }
237             }
238         }
239         subdirs[i] = NULL;
240     }
241     else
242     {
243         subdirs = NULL;
244     }
245     return subdirs;
246 }
247
248
249 /**
250  * Detect subtitle files.
251  *
252  * When called this function will split up the psz_name string into a
253  * directory, filename and extension. It then opens the directory
254  * in which the file resides and tries to find possible matches of
255  * subtitles files.
256  *
257  * \ingroup Demux
258  * \param p_this the calling \ref input_thread_t
259  * \param psz_path a list of subdirectories (separated by a ',') to look in.
260  * \param psz_name the complete filename to base the search on.
261  * \return a NULL terminated array of filenames with detected possible subtitles.
262  * The array contains max MAX_SUBTITLE_FILES items and you need to free it after use.
263  */
264 char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
265                          char *psz_name )
266 {
267     vlc_value_t fuzzy;
268     int j, i_result2, i_sub_count = 0, i_fname_len = 0;
269     char *f_dir = NULL, *f_fname = NULL, *f_fname_noext = NULL, *f_fname_trim = NULL;
270     char *tmp = NULL;
271
272     char **tmp_subdirs, **subdirs; /* list of subdirectories to look in */
273
274     subfn *result = NULL; /* unsorted results */
275     char **result2; /* sorted results */
276
277     char *psz_fname_original = strdup( psz_name );
278     char *psz_fname = psz_fname_original;
279
280     if( psz_fname == NULL ) return NULL;
281
282     if( !strncmp( psz_fname, "file://", 7 ) )
283     {
284         psz_fname += 7;
285     }
286
287     /* extract filename & dirname from psz_fname */
288     tmp = strrchr( psz_fname, DIRECTORY_SEPARATOR );
289     if( tmp )
290     {
291         int dirlen = 0;
292
293         f_fname = malloc( strlen(tmp) );
294         if( f_fname )
295             strcpy( f_fname, tmp+1 ); // we skip the seperator, so it will still fit in the allocated space
296         dirlen = strlen(psz_fname) - strlen(tmp) + 1; // add the seperator
297         f_dir = malloc( dirlen + 1 );
298         if( f_dir != NULL )
299             strlcpy( f_dir, psz_fname, dirlen );
300     }
301     else
302     {
303         /* Get the current working directory */
304         int dirlen;
305 #ifdef HAVE_UNISTD_H
306         f_dir = getcwd( NULL, 0 );
307 #endif
308         if( f_dir == NULL )
309         {
310             if( psz_fname_original ) free( psz_fname_original );
311             return NULL;
312         }
313         dirlen = strlen( f_dir );
314         f_dir = (char *)realloc(f_dir, dirlen +2 );
315         f_dir[dirlen] = DIRECTORY_SEPARATOR;
316         f_dir[dirlen+1] = '\0';
317         f_fname = FromLocaleDup( psz_fname );
318     }
319
320     i_fname_len = strlen( f_fname );
321     f_fname_noext = malloc(i_fname_len + 1);
322     f_fname_trim = malloc(i_fname_len + 1 );
323
324     strcpy_strip_ext( f_fname_noext, f_fname );
325     strcpy_trim( f_fname_trim, f_fname_noext );
326
327     result = (subfn*)malloc( sizeof(subfn) * MAX_SUBTITLE_FILES );
328     if( result )
329         memset( result, 0, sizeof(subfn) * MAX_SUBTITLE_FILES );
330
331     var_Get( p_this, "sub-autodetect-fuzzy", &fuzzy );
332
333     tmp_subdirs = paths_to_list( f_dir, psz_path );
334     subdirs = tmp_subdirs;
335
336     for( j = -1; (j == -1) || ( (j >= 0) && (subdirs != NULL) &&
337         (*subdirs != NULL) ); j++)
338     {
339         const char *psz_dir = j < 0 ? f_dir : *subdirs;
340         char **ppsz_dir_content;
341         int i_dir_content;
342
343         if( psz_dir == NULL )
344             continue;
345
346         /* parse psz_src dir */
347         i_dir_content = utf8_scandir( psz_dir, &ppsz_dir_content, Filter,
348                                       NULL );
349
350         if( i_dir_content != -1 )
351         {
352             int a;
353
354             msg_Dbg( p_this, "looking for a subtitle file in %s", psz_dir );
355             for( a = 0; a < i_dir_content; a++ )
356             {
357                 char *psz_name = vlc_fix_readdir_charset( p_this,
358                                                           ppsz_dir_content[a] );
359                 char tmp_fname_noext[strlen( psz_name ) + 1];
360                 char tmp_fname_trim[strlen( psz_name ) + 1];
361                 char tmp_fname_ext[strlen( psz_name ) + 1];
362
363                 int i_prio = 0;
364
365                 if( psz_name == NULL )
366                     continue;
367
368                 /* retrieve various parts of the filename */
369                 strcpy_strip_ext( tmp_fname_noext, psz_name );
370                 strcpy_get_ext( tmp_fname_ext, psz_name );
371                 strcpy_trim( tmp_fname_trim, tmp_fname_noext );
372
373                 if( !i_prio && !strcmp( tmp_fname_trim, f_fname_trim ) )
374                 {
375                     /* matches the movie name exactly */
376                     i_prio = 4;
377                 }
378                 if( !i_prio &&
379                     ( tmp = strstr( tmp_fname_trim, f_fname_trim ) ) )
380                 {
381                     /* contains the movie name */
382                     tmp += strlen( f_fname_trim );
383                     if( whiteonly( tmp ) )
384                     {
385                         /* chars in front of the movie name */
386                         i_prio = 2;
387                     }
388                     else
389                     {
390                         /* chars after (and possibly in front of)
391                          * the movie name */
392                         i_prio = 3;
393                     }
394                 }
395                 if( !i_prio )
396                 {
397                     /* doesn't contain the movie name */
398                     if( j == 0 ) i_prio = 1;
399                 }
400                 if( i_prio >= fuzzy.i_int )
401                 {
402                     FILE *f;
403                     char psz_path[strlen( psz_dir ) + strlen( psz_name ) + 1];
404
405                     sprintf( psz_path, "%s%s", psz_dir, psz_name );
406                     msg_Dbg( p_this,
407                                 "autodetected subtitle: %s with priority %d",
408                                 psz_path, i_prio );
409                     /* FIXME: a portable wrapper for stat() or access() would be more suited */
410                     if( ( f = utf8_fopen( psz_path, "rt" ) ) )
411                     {
412                         fclose( f );
413                         msg_Dbg( p_this,
414                                 "autodetected subtitle: %s with priority %d",
415                                 psz_path, i_prio );
416                         result[i_sub_count].priority = i_prio;
417                         result[i_sub_count].psz_fname = strdup( psz_path );
418                         result[i_sub_count].psz_ext = strdup(tmp_fname_ext);
419                         i_sub_count++;
420                     }
421                     else
422                     {
423                         msg_Dbg( p_this, "fopen failed" );
424                     }
425                 }
426                 if( i_sub_count >= MAX_SUBTITLE_FILES ) break;
427                 free( psz_name );
428             }
429             for( a = 0; a < i_dir_content; a++ )
430                 free( ppsz_dir_content[a] );
431             if( ppsz_dir_content ) free( ppsz_dir_content );
432         }
433         if( j >= 0 ) if( *subdirs ) free( *subdirs++ );
434     }
435
436     if( tmp_subdirs )   free( tmp_subdirs );
437     if( f_fname_trim )  free( f_fname_trim );
438     if( f_fname_noext ) free( f_fname_noext );
439     if( f_fname ) free( f_fname );
440     if( f_dir )   free( f_dir );
441
442     qsort( result, i_sub_count, sizeof( subfn ), compare_sub_priority );
443
444     result2 = (char**)malloc( sizeof(char*) * ( i_sub_count + 1 ) );
445     if( result2 )
446         memset( result2, 0, sizeof(char*) * ( i_sub_count + 1 ) );
447     i_result2 = 0;
448
449     for( j = 0; j < i_sub_count; j++ )
450     {
451         if( result[j].psz_ext && !strcasecmp( result[j].psz_ext, "sub" ) )
452         {
453             int i;
454             for( i = 0; i < i_sub_count; i++ )
455             {
456                 if( result[i].psz_fname && result[j].psz_fname &&
457                     !strncasecmp( result[j].psz_fname, result[i].psz_fname,
458                                 sizeof( result[j].psz_fname) - 4 ) &&
459                     !strcasecmp( result[i].psz_ext, "idx" ) )
460                     break;
461             }
462             if( i >= i_sub_count )
463             {
464                 result2[i_result2] = result[j].psz_fname;
465                 i_result2++;
466             }
467         }
468         else
469         {
470             result2[i_result2] = result[j].psz_fname;
471             i_result2++;
472         }
473     }
474
475     if( psz_fname_original ) free( psz_fname_original );
476     if( result ) free( result );
477     return result2;
478 }