1 /*****************************************************************************
3 *****************************************************************************
4 * Copyright (C) 2003-2006 the VideoLAN team
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
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.
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.
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 *****************************************************************************/
27 * This file contains functions to dectect subtitle files.
34 #include <vlc_common.h>
35 #include <vlc_input.h>
36 #include <vlc_charset.h>
50 #include "input_internal.h"
53 * We are not going to autodetect more subtitle files than this.
55 #define MAX_SUBTITLE_FILES 128
59 * The possible extensions for subtitle files we support
61 static const char const sub_exts
[][6] = {
62 "utf", "utf8", "utf-8",
71 /* extensions from unsupported types */
72 /* rt, aqt, jss, js, ass */
74 static void strcpy_trim( char *d
, const char *s
)
76 /* skip leading whitespace */
77 while( *s
&& !isalnum(*s
) )
84 while( *s
&& isalnum(*s
) )
90 /* trim excess whitespace */
91 while( *s
&& !isalnum(*s
) )
101 static void strcpy_strip_ext( char *d
, const char *s
)
103 const char *tmp
= strrchr(s
, '.');
110 strlcpy(d
, s
, tmp
- s
+ 1 );
118 static void strcpy_get_ext( char *d
, const char *s
)
120 const char *tmp
= strrchr(s
, '.');
124 strcpy( d
, tmp
+ 1 );
127 static int whiteonly( const char *s
)
140 SUB_PRIORITY_NONE
= 0,
141 SUB_PRIORITY_MATCH_NONE
= 1,
142 SUB_PRIORITY_MATCH_RIGHT
= 2,
143 SUB_PRIORITY_MATCH_LEFT
= 3,
144 SUB_PRIORITY_MATCH_ALL
= 4,
153 static int compare_sub_priority( const void *a
, const void *b
)
155 const vlc_subfn_t
*p0
= a
;
156 const vlc_subfn_t
*p1
= b
;
158 if( p0
->priority
> p1
->priority
)
161 if( p0
->priority
< p1
->priority
)
165 return strcoll( p0
->psz_fname
, p1
->psz_fname
);
167 return strcmp( p0
->psz_fname
, p1
->psz_fname
);
172 * Check if a file ends with a subtitle extension
174 int subtitles_Filter( const char *psz_dir_content
)
176 const char *tmp
= strrchr( psz_dir_content
, '.');
183 for( i
= 0; sub_exts
[i
][0]; i
++ )
184 if( strcasecmp( sub_exts
[i
], tmp
) == 0 )
191 * Convert a list of paths separated by ',' to a char**
193 static char **paths_to_list( const char *psz_dir
, char *psz_path
)
195 unsigned int i
, k
, i_nb_subdirs
;
196 char **subdirs
; /* list of subdirectories to look in */
197 char *psz_parser
= psz_path
;
199 if( !psz_dir
|| !psz_path
)
202 for( k
= 0, i_nb_subdirs
= 1; psz_path
[k
] != '\0'; k
++ )
204 if( psz_path
[k
] == ',' )
208 subdirs
= calloc( i_nb_subdirs
+ 1, sizeof(char*) );
212 for( i
= 0; psz_parser
&& *psz_parser
!= '\0' ; )
214 char *psz_subdir
= psz_parser
;
215 psz_parser
= strchr( psz_subdir
, ',' );
218 *psz_parser
++ = '\0';
219 while( *psz_parser
== ' ' )
222 if( *psz_subdir
== '\0' )
225 asprintf( &subdirs
[i
++], "%s%s%c",
226 psz_subdir
[0] == '.' ? psz_dir
: "",
228 psz_subdir
[strlen(psz_subdir
) - 1] == DIR_SEP_CHAR
? '\0' : DIR_SEP_CHAR
);
237 * Detect subtitle files.
239 * When called this function will split up the psz_name string into a
240 * directory, filename and extension. It then opens the directory
241 * in which the file resides and tries to find possible matches of
245 * \param p_this the calling \ref input_thread_t
246 * \param psz_path a list of subdirectories (separated by a ',') to look in.
247 * \param psz_name the complete filename to base the search on.
248 * \return a NULL terminated array of filenames with detected possible subtitles.
249 * The array contains max MAX_SUBTITLE_FILES items and you need to free it after use.
251 char **subtitles_Detect( input_thread_t
*p_this
, char *psz_path
,
252 const char *psz_name_org
)
255 int j
, i_result2
, i_sub_count
, i_fname_len
;
256 char *f_dir
= NULL
, *f_fname
= NULL
, *f_fname_noext
= NULL
, *f_fname_trim
= NULL
;
259 char **subdirs
; /* list of subdirectories to look in */
261 vlc_subfn_t
*result
= NULL
; /* unsorted results */
262 char **result2
; /* sorted results */
263 const char *psz_fname
= psz_name_org
;
268 if( !strncmp( psz_fname
, "file://", 7 ) )
271 /* extract filename & dirname from psz_fname */
272 tmp
= strrchr( psz_fname
, DIR_SEP_CHAR
);
275 const int i_dirlen
= strlen(psz_fname
)-strlen(tmp
)+1; /* include the separator */
276 f_fname
= strdup( &tmp
[1] ); /* skip the separator */
277 f_dir
= strndup( psz_fname
, i_dirlen
);
282 /* Get the current working directory */
283 char *psz_cwd
= getcwd( NULL
, 0 );
285 char *psz_cwd
= NULL
;
290 f_fname
= strdup( psz_fname
);
291 asprintf( &f_dir
, "%s%c", psz_cwd
, DIR_SEP_CHAR
);
294 if( !f_fname
|| !f_dir
)
301 i_fname_len
= strlen( f_fname
);
303 f_fname_noext
= malloc(i_fname_len
+ 1);
304 f_fname_trim
= malloc(i_fname_len
+ 1 );
305 if( !f_fname_noext
|| !f_fname_trim
)
309 free( f_fname_noext
);
310 free( f_fname_trim
);
314 strcpy_strip_ext( f_fname_noext
, f_fname
);
315 strcpy_trim( f_fname_trim
, f_fname_noext
);
317 var_Get( p_this
, "sub-autodetect-fuzzy", &fuzzy
);
319 result
= calloc( MAX_SUBTITLE_FILES
+1, sizeof(vlc_subfn_t
) ); /* We check it later (simplify code) */
320 subdirs
= paths_to_list( f_dir
, psz_path
);
321 for( j
= -1, i_sub_count
= 0; (j
== -1) || ( j
>= 0 && subdirs
!= NULL
&& subdirs
[j
] != NULL
); j
++ )
323 const char *psz_dir
= j
< 0 ? f_dir
: subdirs
[j
];
324 char **ppsz_dir_content
;
328 if( psz_dir
== NULL
|| ( j
>= 0 && !strcmp( psz_dir
, f_dir
) ) )
331 /* parse psz_src dir */
332 i_dir_content
= utf8_scandir( psz_dir
, &ppsz_dir_content
,
333 subtitles_Filter
, NULL
);
334 if( i_dir_content
< 0 )
337 msg_Dbg( p_this
, "looking for a subtitle file in %s", psz_dir
);
338 for( a
= 0; a
< i_dir_content
&& i_sub_count
< MAX_SUBTITLE_FILES
; a
++ )
340 char *psz_name
= ppsz_dir_content
[a
];
341 char tmp_fname_noext
[strlen( psz_name
) + 1];
342 char tmp_fname_trim
[strlen( psz_name
) + 1];
343 char tmp_fname_ext
[strlen( psz_name
) + 1];
347 if( psz_name
== NULL
)
350 /* retrieve various parts of the filename */
351 strcpy_strip_ext( tmp_fname_noext
, psz_name
);
352 strcpy_get_ext( tmp_fname_ext
, psz_name
);
353 strcpy_trim( tmp_fname_trim
, tmp_fname_noext
);
355 i_prio
= SUB_PRIORITY_NONE
;
356 if( i_prio
== SUB_PRIORITY_NONE
&& !strcmp( tmp_fname_trim
, f_fname_trim
) )
358 /* matches the movie name exactly */
359 i_prio
= SUB_PRIORITY_MATCH_ALL
;
361 if( i_prio
== SUB_PRIORITY_NONE
&&
362 ( tmp
= strstr( tmp_fname_trim
, f_fname_trim
) ) )
364 /* contains the movie name */
365 tmp
+= strlen( f_fname_trim
);
366 if( whiteonly( tmp
) )
368 /* chars in front of the movie name */
369 i_prio
= SUB_PRIORITY_MATCH_RIGHT
;
373 /* chars after (and possibly in front of)
375 i_prio
= SUB_PRIORITY_MATCH_LEFT
;
378 if( i_prio
== SUB_PRIORITY_NONE
&&
381 /* doesn't contain the movie name, prefer files in f_dir over subdirs */
382 i_prio
= SUB_PRIORITY_MATCH_NONE
;
384 if( i_prio
>= fuzzy
.i_int
)
386 char psz_path
[strlen( psz_dir
) + strlen( psz_name
) + 1];
389 sprintf( psz_path
, "%s%s", psz_dir
, psz_name
);
390 if( !strcmp( psz_path
, psz_fname
) )
393 if( !utf8_stat( psz_path
, &st
) && S_ISREG( st
.st_mode
) && result
)
396 "autodetected subtitle: %s with priority %d",
398 result
[i_sub_count
].priority
= i_prio
;
399 result
[i_sub_count
].psz_fname
= strdup( psz_path
);
400 result
[i_sub_count
].psz_ext
= strdup(tmp_fname_ext
);
405 msg_Dbg( p_this
, "stat failed (autodetecting subtitle: %s with priority %d)",
410 if( ppsz_dir_content
)
412 for( a
= 0; a
< i_dir_content
; a
++ )
413 free( ppsz_dir_content
[a
] );
414 free( ppsz_dir_content
);
419 for( j
= 0; subdirs
[j
]; j
++ )
425 free( f_fname_trim
);
426 free( f_fname_noext
);
431 qsort( result
, i_sub_count
, sizeof(vlc_subfn_t
), compare_sub_priority
);
433 result2
= calloc( i_sub_count
+ 1, sizeof(char*) );
435 for( j
= 0, i_result2
= 0; j
< i_sub_count
&& result2
!= NULL
; j
++ )
437 bool b_reject
= false;
439 if( !result
[j
].psz_fname
|| !result
[j
].psz_ext
) /* memory out */
442 if( !strcasecmp( result
[j
].psz_ext
, "sub" ) )
445 for( i
= 0; i
< i_sub_count
; i
++ )
447 if( result
[i
].psz_fname
&& result
[i
].psz_ext
&&
448 !strncasecmp( result
[j
].psz_fname
, result
[i
].psz_fname
,
449 strlen( result
[j
].psz_fname
) - 3 ) &&
450 !strcasecmp( result
[i
].psz_ext
, "idx" ) )
453 if( i
< i_sub_count
)
456 else if( !strcasecmp( result
[j
].psz_ext
, "cdg" ) )
458 if( result
[j
].priority
< SUB_PRIORITY_MATCH_ALL
)
464 result2
[i_result2
++] = strdup( result
[j
].psz_fname
);
467 for( j
= 0; j
< i_sub_count
; j
++ )
469 free( result
[j
].psz_fname
);
470 free( result
[j
].psz_ext
);