access: http: only warn on deflate errors
[vlc.git] / src / input / subtitles.c
blob61378d52d92aa46c92fd3e167163ef933cf980e0
1 /*****************************************************************************
2 * subtitles.c : subtitles detection
3 *****************************************************************************
4 * Copyright (C) 2003-2009 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Derk-Jan Hartman <hartman at videolan.org>
8 * This is adapted code from the GPL'ed MPlayer (http://mplayerhq.hu)
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
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 Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 /**
26 * \file
27 * This file contains functions to dectect subtitle files.
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
34 #include <ctype.h> /* isalnum() */
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif
38 #include <sys/stat.h>
40 #include <vlc_common.h>
41 #include <vlc_fs.h>
42 #include <vlc_url.h>
44 #include "input_internal.h"
46 /**
47 * We are not going to autodetect more subtitle files than this.
49 #define MAX_SUBTITLE_FILES 128
51 /**
52 * The possible extensions for subtitle files we support
54 static const char const sub_exts[][6] = {
55 "idx", "sub", "srt",
56 "ssa", "ass", "smi",
57 "utf", "utf8", "utf-8",
58 "rt", "aqt", "txt",
59 "usf", "jss", "cdg",
60 "psb", "mpsub","mpl2",
61 "pjs", "dks", "stl",
65 static void strcpy_trim( char *d, const char *s )
67 unsigned char c;
69 /* skip leading whitespace */
70 while( ((c = *s) != '\0') && !isalnum(c) )
72 s++;
74 for(;;)
76 /* copy word */
77 while( ((c = *s) != '\0') && isalnum(c) )
79 *d = tolower(c);
80 s++; d++;
82 if( *s == 0 ) break;
83 /* trim excess whitespace */
84 while( ((c = *s) != '\0') && !isalnum(c) )
86 s++;
88 if( *s == 0 ) break;
89 *d++ = ' ';
91 *d = 0;
94 static void strcpy_strip_ext( char *d, const char *s )
96 unsigned char c;
98 const char *tmp = strrchr(s, '.');
99 if( !tmp )
101 strcpy(d, s);
102 return;
104 else
105 strlcpy(d, s, tmp - s + 1 );
106 while( (c = *d) != '\0' )
108 *d = tolower(c);
109 d++;
113 static void strcpy_get_ext( char *d, const char *s )
115 const char *tmp = strrchr(s, '.');
116 if( !tmp )
117 strcpy(d, "");
118 else
119 strcpy( d, tmp + 1 );
122 static int whiteonly( const char *s )
124 unsigned char c;
126 while( (c = *s) != '\0' )
128 if( isalnum( c ) )
129 return 0;
130 s++;
132 return 1;
135 enum
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,
143 typedef struct
145 int priority;
146 char *psz_fname;
147 char *psz_ext;
148 } vlc_subfn_t;
150 static int compare_sub_priority( const void *a, const void *b )
152 const vlc_subfn_t *p0 = a;
153 const vlc_subfn_t *p1 = b;
155 if( p0->priority > p1->priority )
156 return -1;
158 if( p0->priority < p1->priority )
159 return 1;
161 #ifdef HAVE_STRCOLL
162 return strcoll( p0->psz_fname, p1->psz_fname);
163 #else
164 return strcmp( p0->psz_fname, p1->psz_fname);
165 #endif
169 * Check if a file ends with a subtitle extension
171 int subtitles_Filter( const char *psz_dir_content )
173 const char *tmp = strrchr( psz_dir_content, '.');
175 if( !tmp )
176 return 0;
177 tmp++;
179 for( int i = 0; sub_exts[i][0]; i++ )
180 if( strcasecmp( sub_exts[i], tmp ) == 0 )
181 return 1;
182 return 0;
187 * Convert a list of paths separated by ',' to a char**
189 static char **paths_to_list( const char *psz_dir, char *psz_path )
191 unsigned int i, k, i_nb_subdirs;
192 char **subdirs; /* list of subdirectories to look in */
193 char *psz_parser = psz_path;
195 if( !psz_dir || !psz_path )
196 return NULL;
198 for( k = 0, i_nb_subdirs = 1; psz_path[k] != '\0'; k++ )
200 if( psz_path[k] == ',' )
201 i_nb_subdirs++;
204 subdirs = calloc( i_nb_subdirs + 1, sizeof(char*) );
205 if( !subdirs )
206 return NULL;
208 for( i = 0; psz_parser && *psz_parser != '\0' ; )
210 char *psz_subdir = psz_parser;
211 psz_parser = strchr( psz_subdir, ',' );
212 if( psz_parser )
214 *psz_parser++ = '\0';
215 while( *psz_parser == ' ' )
216 psz_parser++;
218 if( *psz_subdir == '\0' )
219 continue;
221 if( asprintf( &subdirs[i++], "%s%s",
222 psz_subdir[0] == '.' ? psz_dir : "",
223 psz_subdir ) == -1 )
224 break;
226 subdirs[i] = NULL;
228 return subdirs;
233 * Detect subtitle files.
235 * When called this function will split up the psz_name string into a
236 * directory, filename and extension. It then opens the directory
237 * in which the file resides and tries to find possible matches of
238 * subtitles files.
240 * \ingroup Demux
241 * \param p_this the calling \ref input_thread_t
242 * \param psz_path a list of subdirectories (separated by a ',') to look in.
243 * \param psz_name the complete filename to base the search on.
244 * \return a NULL terminated array of filenames with detected possible subtitles.
245 * The array contains max MAX_SUBTITLE_FILES items and you need to free it after use.
247 char **subtitles_Detect( input_thread_t *p_this, char *psz_path,
248 const char *psz_name_org )
250 int i_fuzzy = var_GetInteger( p_this, "sub-autodetect-fuzzy" );
251 if ( i_fuzzy == 0 )
252 return NULL;
253 int j, i_result2, i_sub_count, i_fname_len;
254 char *f_fname_noext = NULL, *f_fname_trim = NULL;
256 char **subdirs; /* list of subdirectories to look in */
258 vlc_subfn_t *result = NULL; /* unsorted results */
259 char **result2; /* sorted results */
261 if( !psz_name_org )
262 return NULL;
264 char *psz_fname = make_path( psz_name_org );
265 if( !psz_fname )
266 return NULL;
268 /* extract filename & dirname from psz_fname */
269 char *f_dir = strdup( psz_fname );
270 if( f_dir == NULL )
272 free( psz_fname );
273 return NULL;
276 const char *f_fname = strrchr( psz_fname, DIR_SEP_CHAR );
277 if( !f_fname )
279 free( f_dir );
280 free( psz_fname );
281 return NULL;
283 f_fname++; /* Skip the '/' */
284 f_dir[f_fname - psz_fname] = 0; /* keep dir separator in f_dir */
286 i_fname_len = strlen( f_fname );
288 f_fname_noext = malloc(i_fname_len + 1);
289 f_fname_trim = malloc(i_fname_len + 1 );
290 if( !f_fname_noext || !f_fname_trim )
292 free( f_dir );
293 free( f_fname_noext );
294 free( f_fname_trim );
295 free( psz_fname );
296 return NULL;
299 strcpy_strip_ext( f_fname_noext, f_fname );
300 strcpy_trim( f_fname_trim, f_fname_noext );
302 result = calloc( MAX_SUBTITLE_FILES+1, sizeof(vlc_subfn_t) ); /* We check it later (simplify code) */
303 subdirs = paths_to_list( f_dir, psz_path );
304 for( j = -1, i_sub_count = 0; (j == -1) || ( j >= 0 && subdirs != NULL && subdirs[j] != NULL ); j++ )
306 const char *psz_dir = (j < 0) ? f_dir : subdirs[j];
307 if( psz_dir == NULL || ( j >= 0 && !strcmp( psz_dir, f_dir ) ) )
308 continue;
310 /* parse psz_src dir */
311 DIR *dir = vlc_opendir( psz_dir );
312 if( dir == NULL )
313 continue;
315 msg_Dbg( p_this, "looking for a subtitle file in %s", psz_dir );
317 char *psz_name;
318 while( (psz_name = vlc_readdir( dir )) && i_sub_count < MAX_SUBTITLE_FILES )
320 if( psz_name[0] == '.' || !subtitles_Filter( psz_name ) )
322 free( psz_name );
323 continue;
326 char tmp_fname_noext[strlen( psz_name ) + 1];
327 char tmp_fname_trim[strlen( psz_name ) + 1];
328 char tmp_fname_ext[strlen( psz_name ) + 1];
329 const char *tmp;
330 int i_prio = SUB_PRIORITY_NONE;
332 /* retrieve various parts of the filename */
333 strcpy_strip_ext( tmp_fname_noext, psz_name );
334 strcpy_get_ext( tmp_fname_ext, psz_name );
335 strcpy_trim( tmp_fname_trim, tmp_fname_noext );
337 if( !strcmp( tmp_fname_trim, f_fname_trim ) )
339 /* matches the movie name exactly */
340 i_prio = SUB_PRIORITY_MATCH_ALL;
342 else if( (tmp = strstr( tmp_fname_trim, f_fname_trim )) )
344 /* contains the movie name */
345 tmp += strlen( f_fname_trim );
346 if( whiteonly( tmp ) )
348 /* chars in front of the movie name */
349 i_prio = SUB_PRIORITY_MATCH_RIGHT;
351 else
353 /* chars after (and possibly in front of)
354 * the movie name */
355 i_prio = SUB_PRIORITY_MATCH_LEFT;
358 else if( j == -1 )
360 /* doesn't contain the movie name, prefer files in f_dir over subdirs */
361 i_prio = SUB_PRIORITY_MATCH_NONE;
363 if( i_prio >= i_fuzzy )
365 char psz_path[strlen( psz_dir ) + strlen( psz_name ) + 2];
366 struct stat st;
368 sprintf( psz_path, "%s"DIR_SEP"%s", psz_dir, psz_name );
369 if( !strcmp( psz_path, psz_fname ) )
371 free( psz_name );
372 continue;
375 if( !vlc_stat( psz_path, &st ) && S_ISREG( st.st_mode ) && result )
377 msg_Dbg( p_this,
378 "autodetected subtitle: %s with priority %d",
379 psz_path, i_prio );
380 result[i_sub_count].priority = i_prio;
381 result[i_sub_count].psz_fname = strdup( psz_path );
382 result[i_sub_count].psz_ext = strdup(tmp_fname_ext);
383 i_sub_count++;
385 else
387 msg_Dbg( p_this, "stat failed (autodetecting subtitle: %s with priority %d)",
388 psz_path, i_prio );
391 free( psz_name );
393 closedir( dir );
395 if( subdirs )
397 for( j = 0; subdirs[j]; j++ )
398 free( subdirs[j] );
399 free( subdirs );
401 free( f_dir );
402 free( f_fname_trim );
403 free( f_fname_noext );
404 free( psz_fname );
406 if( !result )
407 return NULL;
409 qsort( result, i_sub_count, sizeof(vlc_subfn_t), compare_sub_priority );
411 result2 = calloc( i_sub_count + 1, sizeof(char*) );
413 for( j = 0, i_result2 = 0; j < i_sub_count && result2 != NULL; j++ )
415 bool b_reject = false;
417 if( !result[j].psz_fname || !result[j].psz_ext ) /* memory out */
418 break;
420 if( !strcasecmp( result[j].psz_ext, "sub" ) )
422 int i;
423 for( i = 0; i < i_sub_count; i++ )
425 if( result[i].psz_fname && result[i].psz_ext &&
426 !strncasecmp( result[j].psz_fname, result[i].psz_fname,
427 strlen( result[j].psz_fname) - 3 ) &&
428 !strcasecmp( result[i].psz_ext, "idx" ) )
429 break;
431 if( i < i_sub_count )
432 b_reject = true;
434 else if( !strcasecmp( result[j].psz_ext, "cdg" ) )
436 if( result[j].priority < SUB_PRIORITY_MATCH_ALL )
437 b_reject = true;
440 /* */
441 if( !b_reject )
442 result2[i_result2++] = strdup( result[j].psz_fname );
445 for( j = 0; j < i_sub_count; j++ )
447 free( result[j].psz_fname );
448 free( result[j].psz_ext );
450 free( result );
452 return result2;