1 /*****************************************************************************
2 * subtitles.c : subtitles detection
3 *****************************************************************************
4 * Copyright (C) 2003-2009 VLC authors and VideoLAN
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 *****************************************************************************/
27 * This file contains functions to dectect subtitle files.
34 #include <ctype.h> /* isalnum() */
40 #include <vlc_common.h>
44 #include "input_internal.h"
47 * We are not going to autodetect more subtitle files than this.
49 #define MAX_SUBTITLE_FILES 128
52 * The possible extensions for subtitle files we support
54 static const char const sub_exts
[][6] = {
57 "utf", "utf8", "utf-8",
60 "psb", "mpsub","mpl2",
65 static void strcpy_trim( char *d
, const char *s
)
69 /* skip leading whitespace */
70 while( ((c
= *s
) != '\0') && !isalnum(c
) )
77 while( ((c
= *s
) != '\0') && isalnum(c
) )
83 /* trim excess whitespace */
84 while( ((c
= *s
) != '\0') && !isalnum(c
) )
94 static void strcpy_strip_ext( char *d
, const char *s
)
98 const char *tmp
= strrchr(s
, '.');
105 strlcpy(d
, s
, tmp
- s
+ 1 );
106 while( (c
= *d
) != '\0' )
113 static void strcpy_get_ext( char *d
, const char *s
)
115 const char *tmp
= strrchr(s
, '.');
119 strcpy( d
, tmp
+ 1 );
122 static int whiteonly( const char *s
)
126 while( (c
= *s
) != '\0' )
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,
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
)
158 if( p0
->priority
< p1
->priority
)
162 return strcoll( p0
->psz_fname
, p1
->psz_fname
);
164 return strcmp( p0
->psz_fname
, p1
->psz_fname
);
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
, '.');
179 for( int i
= 0; sub_exts
[i
][0]; i
++ )
180 if( strcasecmp( sub_exts
[i
], tmp
) == 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
)
198 for( k
= 0, i_nb_subdirs
= 1; psz_path
[k
] != '\0'; k
++ )
200 if( psz_path
[k
] == ',' )
204 subdirs
= calloc( i_nb_subdirs
+ 1, sizeof(char*) );
208 for( i
= 0; psz_parser
&& *psz_parser
!= '\0' ; )
210 char *psz_subdir
= psz_parser
;
211 psz_parser
= strchr( psz_subdir
, ',' );
214 *psz_parser
++ = '\0';
215 while( *psz_parser
== ' ' )
218 if( *psz_subdir
== '\0' )
221 if( asprintf( &subdirs
[i
++], "%s%s",
222 psz_subdir
[0] == '.' ? psz_dir
: "",
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
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" );
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 */
264 char *psz_fname
= make_path( psz_name_org
);
268 /* extract filename & dirname from psz_fname */
269 char *f_dir
= strdup( psz_fname
);
276 const char *f_fname
= strrchr( psz_fname
, DIR_SEP_CHAR
);
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
)
293 free( f_fname_noext
);
294 free( f_fname_trim
);
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
) ) )
310 /* parse psz_src dir */
311 DIR *dir
= vlc_opendir( psz_dir
);
315 msg_Dbg( p_this
, "looking for a subtitle file in %s", psz_dir
);
318 while( (psz_name
= vlc_readdir( dir
)) && i_sub_count
< MAX_SUBTITLE_FILES
)
320 if( psz_name
[0] == '.' || !subtitles_Filter( psz_name
) )
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];
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
;
353 /* chars after (and possibly in front of)
355 i_prio
= SUB_PRIORITY_MATCH_LEFT
;
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];
368 sprintf( psz_path
, "%s"DIR_SEP
"%s", psz_dir
, psz_name
);
369 if( !strcmp( psz_path
, psz_fname
) )
375 if( !vlc_stat( psz_path
, &st
) && S_ISREG( st
.st_mode
) && result
)
378 "autodetected subtitle: %s with priority %d",
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
);
387 msg_Dbg( p_this
, "stat failed (autodetecting subtitle: %s with priority %d)",
397 for( j
= 0; subdirs
[j
]; j
++ )
402 free( f_fname_trim
);
403 free( f_fname_noext
);
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 */
420 if( !strcasecmp( result
[j
].psz_ext
, "sub" ) )
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" ) )
431 if( i
< i_sub_count
)
434 else if( !strcasecmp( result
[j
].psz_ext
, "cdg" ) )
436 if( result
[j
].priority
< SUB_PRIORITY_MATCH_ALL
)
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
);