]> git.sesse.net Git - vlc/blob - src/input/subtitles.c
* all: rework of the input.
[vlc] / src / input / subtitles.c
1 /*****************************************************************************
2  * subtitles.c
3  *****************************************************************************
4  * Copyright (C) 2003-2004 VideoLAN
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., 59 Temple Place - Suite 330, Boston, MA  02111, 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
34 #ifdef HAVE_DIRENT_H
35 #   include <dirent.h>
36 #else
37 #   include "../extras/dirent.h"
38 #endif
39
40 #include <ctype.h>
41
42 /**
43  * What's between a directory and a filename?
44  */
45 #if defined( WIN32 )
46     #define DIRECTORY_SEPARATOR '\\'
47 #else
48     #define DIRECTORY_SEPARATOR '/'
49 #endif
50
51 /**
52  * We are not going to autodetect more subtitle files than this.
53  */
54 #define MAX_SUBTITLE_FILES 128
55
56
57 /**
58  * The possible extentions for subtitle files we support
59  */
60 static const char * sub_exts[] = {  "utf", "utf8", "utf-8", "sub", "srt", "smi", "txt", "ssa", NULL};
61 /* extensions from unsupported types */
62 /* rt, aqt, jss, js, ass */
63
64 static void strcpy_trim( char *d, char *s )
65 {
66     /* skip leading whitespace */
67     while( *s && !isalnum(*s) )
68     {
69         s++;
70     }
71     for(;;)
72     {
73         /* copy word */
74         while( *s && isalnum(*s) )
75         {
76             *d = tolower(*s);
77             s++; d++;
78         }
79         if (*s == 0) break;
80         /* trim excess whitespace */
81         while( *s && !isalnum(*s) )
82         {
83             s++;
84         }
85         if( *s == 0 ) break;
86         *d++ = ' ';
87     }
88     *d = 0;
89 }
90
91 static void strcpy_strip_ext( char *d, char *s )
92 {
93     char *tmp = strrchr(s, '.');
94     if( !tmp ) {
95         strcpy(d, s);
96         return;
97     }
98     else
99     {
100         strncpy(d, s, tmp - s);
101         d[tmp - s] = 0;
102     }
103     while( *d )
104     {
105         *d = tolower(*d);
106         d++;
107     }
108 }
109
110 static void strcpy_get_ext( char *d, char *s )
111 {
112     char *tmp = strrchr(s, '.');
113     if( !tmp )
114     {
115         strcpy(d, "");
116         return;
117     } else strcpy( d, tmp + 1 );
118 }
119
120 static int whiteonly( char *s )
121 {
122   while ( *s )
123   {
124         if( isalnum( *s ) ) return 0;
125         s++;
126   }
127   return 1;
128 }
129
130 typedef struct _subfn
131 {
132     int priority;
133     char *psz_fname;
134 } subfn;
135
136 static int compare_sub_priority( const void *a, const void *b )
137 {
138     if (((subfn*)a)->priority > ((subfn*)b)->priority)
139     {
140         return -1;
141     }
142
143     if (((subfn*)a)->priority < ((subfn*)b)->priority)
144     {
145         return 1;
146     }
147
148     return strcoll(((subfn*)a)->psz_fname, ((subfn*)b)->psz_fname);
149 }
150
151 /**
152  * Convert a list of paths separated by ',' to a char**
153  */
154 static char **paths_to_list( char *psz_dir, char *psz_path )
155 {
156     unsigned int i, k, i_nb_subdirs;
157     char **subdirs; /* list of subdirectories to look in */
158     
159     i_nb_subdirs = 1;
160     for( k = 0; k < strlen( psz_path ); k++ )
161     {
162         if( psz_path[k] == ',' )
163         {
164             i_nb_subdirs++;
165         }
166     }
167                                                                                                                             
168     if( i_nb_subdirs > 0 )
169     {
170         char *psz_parser, *psz_temp;
171                                                                                                                             
172         subdirs = (char**)malloc( sizeof(char*) * ( i_nb_subdirs + 1 ) );
173         memset( subdirs, 0, sizeof(char*) * ( i_nb_subdirs + 1 ) );
174         i = 0;
175         psz_parser = psz_path;
176         while( psz_parser && *psz_parser )
177         {
178             char *psz_subdir;
179             psz_subdir = psz_parser;
180             psz_parser = strchr( psz_subdir, ',' );
181             if( psz_parser )
182             {
183                 *psz_parser = '\0';
184                 psz_parser++;
185                 while( *psz_parser == ' ' )
186                 {
187                     psz_parser++;
188                 }
189             }
190             if( strlen( psz_subdir ) > 0 )
191             {
192                 psz_temp = (char *)malloc( strlen(psz_dir)
193                                            + strlen(psz_subdir) + 2 );
194                 if( psz_temp )
195                 {
196                     sprintf( psz_temp, "%s%s%c", 
197                              psz_subdir[0] == '.' ? psz_dir : "", 
198                              psz_subdir,
199                              psz_subdir[strlen(psz_subdir) - 1] == 
200                               DIRECTORY_SEPARATOR ? '\0' : DIRECTORY_SEPARATOR );
201                     subdirs[i] = psz_temp;
202                     i++;
203                 }
204             }
205         }
206         subdirs[i] = NULL;
207     }
208     else
209     {
210         subdirs = NULL;
211     }
212     return subdirs;
213 }
214
215 /**
216  * Detect subtitle files.
217  *
218  * When called this function will split up the psz_fname string into a
219  * directory, filename and extension. It then opens the directory
220  * in which the file resides and tries to find possible matches of
221  * subtitles files.
222  *
223  * \ingroup Demux
224  * \param p_this the calling \ref input_thread_t
225  * \param psz_path a list of subdirectories (separated by a ',') to look in.
226  * \param psz_fname the complete filename to base the search on.
227  * \return a NULL terminated array of filenames with detected possible subtitles.
228  * The array contains max MAX_SUBTITLE_FILES items and you need to free it after use.
229  */
230 char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
231                          char *psz_fname )
232 {
233     /* variables to be used for derivatives of psz_fname */
234     char *f_dir, *f_fname, *f_fname_noext, *f_fname_trim, *tmp;
235     /* variables to be used for derivatives FILE *f */
236     char *tmp_fname_noext, *tmp_fname_trim, *tmp_fname_ext, *tmpresult;
237
238     vlc_value_t fuzzy;
239     int len, i, j, i_sub_count;
240     subfn *result; /* unsorted results */
241     char **result2; /* sorted results */
242     char **tmp_subdirs, **subdirs; /* list of subdirectories to look in */
243
244     FILE *f;
245     DIR *d;
246     struct dirent *de;
247
248     i_sub_count = 0;
249     len = strlen( psz_fname ) > 256 ? strlen( psz_fname ) : 256;
250
251     f_dir = (char*)malloc(len);
252     f_fname = (char*)malloc(len);
253     f_fname_noext = (char*)malloc(len);
254     f_fname_trim = (char*)malloc(len);
255
256     tmp_fname_noext = (char*)malloc(len);
257     tmp_fname_trim = (char*)malloc(len);
258     tmp_fname_ext = (char*)malloc(len);
259
260     tmpresult = (char*)malloc(len);
261
262     result = (subfn*)malloc( sizeof(subfn) * MAX_SUBTITLE_FILES );
263     memset( result, 0, sizeof(subfn) * MAX_SUBTITLE_FILES );
264
265     /* extract filename & dirname from psz_fname */
266     tmp = strrchr( psz_fname, DIRECTORY_SEPARATOR );
267     if( tmp )
268     {
269         int pos;
270         strncpy( f_fname, tmp + 1, len - 1 );
271         f_fname[len - 1] = 0;
272         pos = tmp - psz_fname + 1;
273         strncpy( f_dir, psz_fname, __MIN(pos,len-1) );
274         f_dir[__MIN(pos,len-1)] = 0;
275     }
276     else
277     {
278         strncpy( f_fname, psz_fname, len - 1 );
279         f_fname[len - 1] = 0;
280         strcpy( f_dir, "" );
281     }
282
283     strcpy_strip_ext( f_fname_noext, f_fname );
284     strcpy_trim( f_fname_trim, f_fname_noext );
285     var_Get( p_this, "sub-autodetect-fuzzy", &fuzzy );
286
287     tmp_subdirs = paths_to_list( f_dir, psz_path );
288     subdirs = tmp_subdirs;
289
290     for( j = -1; j == -1 || ( j >= 0 && subdirs != NULL && *subdirs != NULL );
291          j++)
292     {
293         d = opendir( j < 0 ? f_dir : *subdirs );
294         if( d )
295         {
296             int b_found;
297             msg_Dbg( p_this, "looking for a subtitle file in %s", 
298                      j < 0 ? f_dir : *subdirs );
299             while( ( de = readdir( d ) ) )
300             {
301                 /* retrieve various parts of the filename */
302                 strcpy_strip_ext( tmp_fname_noext, de->d_name );
303                 strcpy_get_ext( tmp_fname_ext, de->d_name );
304                 strcpy_trim( tmp_fname_trim, tmp_fname_noext );
305
306                 /* does it end with a subtitle extension? */
307                 b_found = 0;
308                 for( i = 0; sub_exts[i]; i++ )
309                 {
310                     if( strcmp( sub_exts[i], tmp_fname_ext ) == 0 )
311                     {
312                         b_found = 1;
313                         msg_Dbg( p_this, "found a possible subtitle: %s",
314                                  de->d_name );
315                         break;
316                     }
317                 }
318
319                 /* we have a (likely) subtitle file */
320                 if( b_found )
321                 {
322                     int i_prio = 0;
323                     if( !i_prio && !strcmp( tmp_fname_trim, f_fname_trim ) )
324                     {
325                         /* matches the movie name exactly */
326                         i_prio = 4;
327                     }
328                     if( !i_prio &&
329                         ( tmp = strstr( tmp_fname_trim, f_fname_trim ) ) )
330                     {
331                         /* contains the movie name */
332                         tmp += strlen( f_fname_trim );
333                         if( whiteonly( tmp ) )
334                         {
335                             /* chars in front of the movie name */
336                             i_prio = 2;
337                         }
338                         else
339                         {
340                             /* chars after (and possibly in front of)
341                              * the movie name */
342                             i_prio = 3;
343                         }
344                     }
345                     if( !i_prio )
346                     {
347                         /* doesn't contain the movie name */
348                         if( j == 0 ) i_prio = 1;
349                     }
350
351                     if( i_prio >= fuzzy.i_int )
352                     {
353                         sprintf( tmpresult, "%s%s", j == -1 ? f_dir : *subdirs,
354                                  de->d_name );
355                         msg_Dbg( p_this, "autodetected subtitle: %s with "
356                                  "priority %d", de->d_name, i_prio );
357                         if( ( f = fopen( tmpresult, "rt" ) ) )
358                         {
359                             fclose( f );
360                             result[i_sub_count].priority = i_prio;
361                             result[i_sub_count].psz_fname = strdup(tmpresult);
362                             i_sub_count++;
363                         }
364                     }
365                 }
366                 if( i_sub_count >= MAX_SUBTITLE_FILES ) break;
367             }
368             closedir( d );
369         }
370         if( j >= 0 ) free( *subdirs++ );
371     }
372
373     if( tmp_subdirs ) free( tmp_subdirs );
374
375     free( f_dir );
376     free( f_fname );
377     free( f_fname_noext );
378     free( f_fname_trim );
379
380     free( tmp_fname_noext );
381     free( tmp_fname_trim );
382     free( tmp_fname_ext );
383
384     free( tmpresult );
385
386     qsort( result, i_sub_count, sizeof( subfn ), compare_sub_priority );
387
388     result2 = (char**)malloc( sizeof(char*) * ( i_sub_count + 1 ) );
389     memset( result2, 0, sizeof(char*) * ( i_sub_count + 1 ) );
390
391     for( i = 0; i < i_sub_count; i++ )
392     {
393         result2[i] = result[i].psz_fname;
394     }
395     result2[i_sub_count] = NULL;
396     free( result );
397     return result2;
398 }