]> git.sesse.net Git - vlc/blob - src/input/subtitles.c
utf8_* -> vlc_* (sed roxxors)
[vlc] / src / input / subtitles.c
1 /*****************************************************************************
2  * subtitles.c : subtitles detection
3  *****************************************************************************
4  * Copyright (C) 2003-2009 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 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <vlc_common.h>
35 #include <vlc_fs.h>
36 #include <vlc_url.h>
37
38 #ifdef HAVE_DIRENT_H
39 #   include <dirent.h>
40 #endif
41
42 #ifdef HAVE_UNISTD_H
43 #   include <unistd.h>
44 #endif
45
46 #include <sys/stat.h>
47
48 #include <ctype.h> /* isalnum */
49
50 #include "input_internal.h"
51
52 /**
53  * We are not going to autodetect more subtitle files than this.
54  */
55 #define MAX_SUBTITLE_FILES 128
56
57 /**
58  * The possible extensions for subtitle files we support
59  */
60 static const char const sub_exts[][6] = {
61     "idx", "sub",  "srt",
62     "ssa", "ass",  "smi",
63     "utf", "utf8", "utf-8",
64     "txt", "rt",   "aqt",
65     "usf", "jss",  "cdg",
66     "psb", "mpsub","mpl2",
67     "pjs", "dks",
68     ""
69 };
70
71 static void strcpy_trim( char *d, const 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, const char *s )
99 {
100     const char *tmp = strrchr(s, '.');
101     if( !tmp )
102     {
103         strcpy(d, s);
104         return;
105     }
106     else
107         strlcpy(d, s, tmp - s + 1 );
108     while( *d )
109     {
110         *d = tolower(*d);
111         d++;
112     }
113 }
114
115 static void strcpy_get_ext( char *d, const char *s )
116 {
117     const char *tmp = strrchr(s, '.');
118     if( !tmp )
119         strcpy(d, "");
120     else
121         strcpy( d, tmp + 1 );
122 }
123
124 static int whiteonly( const char *s )
125 {
126     while( *s )
127     {
128         if( isalnum( *s ) )
129             return 0;
130         s++;
131     }
132     return 1;
133 }
134
135 enum
136 {
137     SUB_PRIORITY_NONE        = 0,
138     SUB_PRIORITY_MATCH_NONE  = 1,
139     SUB_PRIORITY_MATCH_RIGHT = 2,
140     SUB_PRIORITY_MATCH_LEFT  = 3,
141     SUB_PRIORITY_MATCH_ALL   = 4,
142 };
143 typedef struct
144 {
145     int priority;
146     char *psz_fname;
147     char *psz_ext;
148 } vlc_subfn_t;
149
150 static int compare_sub_priority( const void *a, const void *b )
151 {
152     const vlc_subfn_t *p0 = a;
153     const vlc_subfn_t *p1 = b;
154
155     if( p0->priority > p1->priority )
156         return -1;
157
158     if( p0->priority < p1->priority )
159         return 1;
160
161 #ifndef UNDER_CE
162     return strcoll( p0->psz_fname, p1->psz_fname);
163 #else
164     return strcmp( p0->psz_fname, p1->psz_fname);
165 #endif
166 }
167
168 /*
169  * Check if a file ends with a subtitle extension
170  */
171 int subtitles_Filter( const char *psz_dir_content )
172 {
173     const char *tmp = strrchr( psz_dir_content, '.');
174
175     if( !tmp )
176         return 0;
177     tmp++;
178
179     for( int i = 0; sub_exts[i][0]; i++ )
180         if( strcasecmp( sub_exts[i], tmp ) == 0 )
181             return 1;
182     return 0;
183 }
184
185
186 /**
187  * Convert a list of paths separated by ',' to a char**
188  */
189 static char **paths_to_list( const char *psz_dir, char *psz_path )
190 {
191     unsigned int i, k, i_nb_subdirs;
192     char **subdirs; /* list of subdirectories to look in */
193     char *psz_parser = psz_path;
194
195     if( !psz_dir || !psz_path )
196         return NULL;
197
198     for( k = 0, i_nb_subdirs = 1; psz_path[k] != '\0'; k++ )
199     {
200         if( psz_path[k] == ',' )
201             i_nb_subdirs++;
202     }
203
204     subdirs = calloc( i_nb_subdirs + 1, sizeof(char*) );
205     if( !subdirs )
206         return NULL;
207
208     for( i = 0; psz_parser && *psz_parser != '\0' ; )
209     {
210         char *psz_subdir = psz_parser;
211         psz_parser = strchr( psz_subdir, ',' );
212         if( psz_parser )
213         {
214             *psz_parser++ = '\0';
215             while( *psz_parser == ' ' )
216                 psz_parser++;
217         }
218         if( *psz_subdir == '\0' )
219             continue;
220
221         if( asprintf( &subdirs[i++], "%s%s%c",
222                   psz_subdir[0] == '.' ? psz_dir : "",
223                   psz_subdir,
224                   psz_subdir[strlen(psz_subdir) - 1] == DIR_SEP_CHAR ?
225                                            '\0' : DIR_SEP_CHAR ) == -1 )
226             break;
227     }
228     subdirs[i] = NULL;
229
230     return subdirs;
231 }
232
233
234 /**
235  * Detect subtitle files.
236  *
237  * When called this function will split up the psz_name string into a
238  * directory, filename and extension. It then opens the directory
239  * in which the file resides and tries to find possible matches of
240  * subtitles files.
241  *
242  * \ingroup Demux
243  * \param p_this the calling \ref input_thread_t
244  * \param psz_path a list of subdirectories (separated by a ',') to look in.
245  * \param psz_name the complete filename to base the search on.
246  * \return a NULL terminated array of filenames with detected possible subtitles.
247  * The array contains max MAX_SUBTITLE_FILES items and you need to free it after use.
248  */
249 char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
250                          const char *psz_name_org )
251 {
252     int i_fuzzy;
253     int j, i_result2, i_sub_count, i_fname_len;
254     char *f_dir = NULL, *f_fname = NULL, *f_fname_noext = NULL, *f_fname_trim = NULL;
255     char *tmp = NULL;
256
257     char **subdirs; /* list of subdirectories to look in */
258
259     vlc_subfn_t *result = NULL; /* unsorted results */
260     char **result2; /* sorted results */
261
262     if( !psz_name_org )
263         return NULL;
264
265     if( !strncmp( psz_name_org, "file://", 7 ) )
266     {
267         psz_name_org += 7;
268 #if defined( WIN32 )
269         psz_name_org ++ ;
270 #endif
271         if( !strncmp( psz_name_org, "localhost", 9 ) )
272             psz_name_org += 9;
273     }
274
275 #if (DIR_SEP_CHAR != '/')
276         /* Turn slashes into anti-slashes */
277         for( char *s = strchr( psz_name_org, '/' ); s; s = strchr( s + 1, '/' ) )
278             *s = DIR_SEP_CHAR;
279 #endif
280     char *psz_fname = decode_URI_duplicate( psz_name_org );
281     if( !psz_fname )
282         return NULL;
283
284     /* extract filename & dirname from psz_fname */
285     tmp = strrchr( psz_fname, DIR_SEP_CHAR );
286     if( tmp )
287     {
288         const int i_dirlen = strlen(psz_fname)-strlen(tmp)+1; /* include the separator */
289         f_fname = strdup( &tmp[1] );    /* skip the separator */
290         f_dir = strndup( psz_fname, i_dirlen );
291     }
292     else
293     {
294 #if defined (HAVE_UNISTD_H) && !defined (UNDER_CE)
295         /* Get the current working directory */
296         char *psz_cwd = getcwd( NULL, 0 );
297 #else
298         char *psz_cwd = NULL;
299 #endif
300         if( !psz_cwd )
301         {
302             free( psz_fname );
303             return NULL;
304         }
305
306         f_fname = strdup( psz_fname );
307         if( asprintf( &f_dir, "%s%c", psz_cwd, DIR_SEP_CHAR ) == -1 )
308             f_dir = NULL; /* Assure that function will return in next test */
309         free( psz_cwd );
310     }
311     if( !f_fname || !f_dir )
312     {
313         free( f_fname );
314         free( f_dir );
315         free( psz_fname );
316         return NULL;
317     }
318
319     i_fname_len = strlen( f_fname );
320
321     f_fname_noext = malloc(i_fname_len + 1);
322     f_fname_trim = malloc(i_fname_len + 1 );
323     if( !f_fname_noext || !f_fname_trim )
324     {
325         free( f_fname );
326         free( f_dir );
327         free( f_fname_noext );
328         free( f_fname_trim );
329         free( psz_fname );
330         return NULL;
331     }
332
333     strcpy_strip_ext( f_fname_noext, f_fname );
334     strcpy_trim( f_fname_trim, f_fname_noext );
335
336     i_fuzzy = var_GetInteger( p_this, "sub-autodetect-fuzzy" );
337
338     result = calloc( MAX_SUBTITLE_FILES+1, sizeof(vlc_subfn_t) ); /* We check it later (simplify code) */
339     subdirs = paths_to_list( f_dir, psz_path );
340     for( j = -1, i_sub_count = 0; (j == -1) || ( j >= 0 && subdirs != NULL && subdirs[j] != NULL ); j++ )
341     {
342         const char *psz_dir = j < 0 ? f_dir : subdirs[j];
343         char **ppsz_dir_content;
344         int i_dir_content;
345
346         if( psz_dir == NULL || ( j >= 0 && !strcmp( psz_dir, f_dir ) ) )
347             continue;
348
349         /* parse psz_src dir */
350         i_dir_content = vlc_scandir( psz_dir, &ppsz_dir_content,
351                                       subtitles_Filter, NULL );
352         if( i_dir_content < 0 )
353             continue;
354
355         msg_Dbg( p_this, "looking for a subtitle file in %s", psz_dir );
356         for( int a = 0; a < i_dir_content && i_sub_count < MAX_SUBTITLE_FILES ; a++ )
357         {
358             char *psz_name = 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;
364
365             if( psz_name == NULL || psz_name[0] == '.' )
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             i_prio = SUB_PRIORITY_NONE;
374             if( i_prio == SUB_PRIORITY_NONE && !strcmp( tmp_fname_trim, f_fname_trim ) )
375             {
376                 /* matches the movie name exactly */
377                 i_prio = SUB_PRIORITY_MATCH_ALL;
378             }
379             if( i_prio == SUB_PRIORITY_NONE &&
380                 ( tmp = strstr( tmp_fname_trim, f_fname_trim ) ) )
381             {
382                 /* contains the movie name */
383                 tmp += strlen( f_fname_trim );
384                 if( whiteonly( tmp ) )
385                 {
386                     /* chars in front of the movie name */
387                     i_prio = SUB_PRIORITY_MATCH_RIGHT;
388                 }
389                 else
390                 {
391                     /* chars after (and possibly in front of)
392                      * the movie name */
393                     i_prio = SUB_PRIORITY_MATCH_LEFT;
394                 }
395             }
396             if( i_prio == SUB_PRIORITY_NONE &&
397                 j == 0 )
398             {
399                 /* doesn't contain the movie name, prefer files in f_dir over subdirs */
400                 i_prio = SUB_PRIORITY_MATCH_NONE;
401             }
402             if( i_prio >= i_fuzzy )
403             {
404                 char psz_path[strlen( psz_dir ) + strlen( psz_name ) + 1];
405                 struct stat st;
406
407                 sprintf( psz_path, "%s%s", psz_dir, psz_name );
408                 if( !strcmp( psz_path, psz_fname ) )
409                     continue;
410
411                 if( !vlc_stat( psz_path, &st ) && S_ISREG( st.st_mode ) && result )
412                 {
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, "stat failed (autodetecting subtitle: %s with priority %d)",
424                              psz_path, i_prio );
425                 }
426             }
427         }
428         if( ppsz_dir_content )
429         {
430             for( int a = 0; a < i_dir_content; a++ )
431                 free( ppsz_dir_content[a] );
432             free( ppsz_dir_content );
433         }
434     }
435     if( subdirs )
436     {
437         for( j = 0; subdirs[j]; j++ )
438             free( subdirs[j] );
439         free( subdirs );
440     }
441     free( f_fname );
442     free( f_dir );
443     free( f_fname_trim );
444     free( f_fname_noext );
445     free( psz_fname );
446
447     if( !result )
448         return NULL;
449
450     qsort( result, i_sub_count, sizeof(vlc_subfn_t), compare_sub_priority );
451
452     result2 = calloc( i_sub_count + 1, sizeof(char*) );
453
454     for( j = 0, i_result2 = 0; j < i_sub_count && result2 != NULL; j++ )
455     {
456         bool b_reject = false;
457
458         if( !result[j].psz_fname || !result[j].psz_ext ) /* memory out */
459             break;
460
461         if( !strcasecmp( result[j].psz_ext, "sub" ) )
462         {
463             int i;
464             for( i = 0; i < i_sub_count; i++ )
465             {
466                 if( result[i].psz_fname && result[i].psz_ext &&
467                     !strncasecmp( result[j].psz_fname, result[i].psz_fname,
468                                   strlen( result[j].psz_fname) - 3 ) &&
469                     !strcasecmp( result[i].psz_ext, "idx" ) )
470                     break;
471             }
472             if( i < i_sub_count )
473                 b_reject = true;
474         }
475         else if( !strcasecmp( result[j].psz_ext, "cdg" ) )
476         {
477             if( result[j].priority < SUB_PRIORITY_MATCH_ALL )
478                 b_reject = true;
479         }
480
481         /* */
482         if( !b_reject )
483             result2[i_result2++] = strdup( result[j].psz_fname );
484     }
485
486     for( j = 0; j < i_sub_count; j++ )
487     {
488         free( result[j].psz_fname );
489         free( result[j].psz_ext );
490     }
491     free( result );
492
493     return result2;
494 }
495