]> git.sesse.net Git - vlc/blob - src/input/subtitles.c
* modules/gui/macosx/playlist.?: implemented Save Playlist
[vlc] / src / input / subtitles.c
1 /*****************************************************************************
2  * subtitles.c
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: subtitles.c,v 1.1 2003/09/22 03:40:06 hartman Exp $
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 #include <stdlib.h>
26 #include <vlc/vlc.h>
27 #include <vlc/input.h>
28
29 #include "ninput.h"
30 #include <dirent.h>
31 #include <ctype.h>
32
33 #if defined( WIN32 )
34     #define DIRECTORY_SEPARATOR '\\'
35 #else
36     #define DIRECTORY_SEPARATOR '/'
37 #endif
38
39 #define MAX_SUBTITLE_FILES 128
40
41
42 static void strcpy_trim( char *d, char *s )
43 {
44     /* skip leading whitespace */
45     while( *s && !isalnum(*s) )
46     {
47         s++;
48     }
49     for(;;)
50     {
51         /* copy word */
52         while( *s && isalnum(*s) )
53         {
54             *d = tolower(*s);
55             s++; d++;
56         }
57         if (*s == 0) break;
58         /* trim excess whitespace */
59         while( *s && !isalnum(*s) )
60         {
61             s++;
62         }
63         if( *s == 0 ) break;
64         *d++ = ' ';
65     }
66     *d = 0;
67 }
68  
69 static void strcpy_strip_ext( char *d, char *s )
70 {
71     char *tmp = strrchr(s, '.');
72     if( !tmp ) {
73         strcpy(d, s);
74         return;
75     }
76     else
77     {
78         strncpy(d, s, tmp - s);
79         d[tmp - s] = 0;
80     }
81     while( *d )
82     {
83         *d = tolower(*d);
84         d++;
85     }
86 }
87  
88 static void strcpy_get_ext( char *d, char *s )
89 {
90     char *tmp = strrchr(s, '.');
91     if( !tmp )
92     {
93         strcpy(d, "");
94         return;
95     } else strcpy( d, tmp + 1 );
96 }
97
98 static int whiteonly( char *s )
99 {
100   while ( *s )
101   {
102         if( isalnum( *s ) ) return 0;
103         s++;
104   }
105   return 1;
106 }
107
108 typedef struct _subfn 
109 {
110     int priority;
111     char *psz_fname;
112 } subfn;
113
114 static int compare_sub_priority( const void *a, const void *b )
115 {
116     if (((subfn*)a)->priority > ((subfn*)b)->priority) {
117         return -1;
118     } else if (((subfn*)a)->priority < ((subfn*)b)->priority) {
119         return 1;
120     } else {
121         return strcoll(((subfn*)a)->psz_fname, ((subfn*)b)->psz_fname);
122     }
123 }
124
125 /*****************************************************************************
126  * subtitles_Detect: Use the original filename to find a subtitle files.
127  *****************************************************************************/
128 char** subtitles_Detect( input_thread_t *p_input, char *psz_path, char *psz_fname )
129 {
130     /* variables to be used for derivatives of psz_fname */
131     char *f_dir, *f_fname, *f_fname_noext, *f_fname_trim, *tmp;
132     /* variables to be used for derivatives FILE *f */
133     char *tmp_fname_noext, *tmp_fname_trim, *tmp_fname_ext, *tmpresult;
134  
135     int len, i, j, i_sub_count, i_sub_match_fuzziness;
136     subfn *result; /* unsorted results */
137     char **result2; /* sorted results */
138  
139     FILE *f;
140     DIR *d;
141     struct dirent *de;
142
143     char * sub_exts[] = {  "utf", "utf8", "utf-8", "sub", "srt", "smi", "txt", "ssa", NULL};
144     /* extensions from unsupported types */
145     /* rt, aqt, jss, js, ass */
146
147     i_sub_count = 0;
148     len = ( strlen( psz_fname ) > 256 ? strlen( psz_fname ) : 256 ) +
149         ( strlen( psz_path ) > 256 ? strlen( psz_path ) : 256 ) + 2;
150
151     f_dir = (char*)malloc(len);
152     f_fname = (char*)malloc(len);
153     f_fname_noext = (char*)malloc(len);
154     f_fname_trim = (char*)malloc(len);
155
156     tmp_fname_noext = (char*)malloc(len);
157     tmp_fname_trim = (char*)malloc(len);
158     tmp_fname_ext = (char*)malloc(len);
159
160     tmpresult = (char*)malloc(len);
161
162     result = (subfn*)malloc( sizeof(subfn) * MAX_SUBTITLE_FILES );
163     memset( result, 0, sizeof(subfn) * MAX_SUBTITLE_FILES );
164
165     /* extract filename & dirname from psz_fname */
166     tmp = strrchr( psz_fname, DIRECTORY_SEPARATOR );
167     if( tmp )
168     {
169         int pos;
170         strcpy( f_fname, tmp + 1 );
171         pos = tmp - psz_fname;
172         strncpy( f_dir, psz_fname, pos + 1 );
173         f_dir[pos + 1] = 0;
174     }
175     else
176     {
177         strcpy( f_fname, psz_fname );
178         strcpy( f_dir, "" );
179     }
180
181     strcpy_strip_ext( f_fname_noext, f_fname );
182     strcpy_trim( f_fname_trim, f_fname_noext );
183
184     i_sub_match_fuzziness = 3;
185     /* 0 = nothing
186      * 1 = any subtitle file
187      * 2 = any sub file containing movie name
188      * 3 = sub file matching movie name exactly
189      * 4 = sub file matching movie name with additional chars 
190      */
191     for( j = 0; j <= 1; j++)
192     {
193         d = opendir( j == 0 ? f_dir : psz_path );
194         if( d )
195         {
196             int b_found;
197             while( de = readdir( d ) )
198             {
199                 /* retrieve various parts of the filename */
200                 strcpy_strip_ext( tmp_fname_noext, de->d_name );
201                 strcpy_get_ext( tmp_fname_ext, de->d_name );
202                 strcpy_trim( tmp_fname_trim, tmp_fname_noext );
203
204                 /* does it end with a subtitle extension? */
205                 b_found = 0;
206                 for( i = 0; sub_exts[i]; i++ )
207                 {
208                     if( strcmp(sub_exts[i], tmp_fname_ext ) == 0 )
209                     {
210                         b_found = 1;
211                         msg_Dbg( p_input, "found subtitle: %s", de->d_name );
212                         break;
213                     }
214                 }
215  
216                 /* we have a (likely) subtitle file */
217                 if( b_found )
218                 {
219                     int i_prio = 0;
220                     if( !i_prio && strcmp( tmp_fname_trim, f_fname_trim ) == 0 )
221                     {
222                         /* matches the movie name exactly */
223                         i_prio = 4;
224                     }
225                     if( !i_prio && ( tmp = strstr( tmp_fname_trim, f_fname_trim ) ) )
226                     {
227                         /* contains the movie name */
228                         tmp += strlen( f_fname_trim );
229                         if( whiteonly( tmp ) )
230                         {
231                             /* chars in front of the movie name */
232                             i_prio = 2;
233                         }
234                         else
235                         {
236                             /* chars after (and possibly in front of) the movie name */
237                             i_prio = 3;
238                         }
239                     }
240                     if( !i_prio )
241                     {
242                         /* doesn't contain the movie name */
243                         if( j == 0 ) i_prio = 1;
244                     }
245
246                     if( i_prio >= i_sub_match_fuzziness )
247                     {
248                         sprintf( tmpresult, "%s%s", j == 0 ? f_dir : psz_path, de->d_name );
249                         msg_Dbg( p_input, "autodetected subtitle: %s with priority %d", de->d_name, i_prio );
250                         if( f = fopen( tmpresult, "rt" ) )
251                         {
252                             fclose( f );
253                             result[i_sub_count].priority = i_prio;
254                             result[i_sub_count].psz_fname = strdup( tmpresult );
255                             i_sub_count++;
256                         }
257                     }
258
259                 }
260                 if( i_sub_count >= MAX_SUBTITLE_FILES ) break;
261             }
262             closedir( d );
263         }
264     }
265     
266     free( f_dir );
267     free( f_fname );
268     free( f_fname_noext );
269     free( f_fname_trim );
270
271     free( tmp_fname_noext );
272     free( tmp_fname_trim );
273     free( tmp_fname_ext );
274
275     free( tmpresult );
276
277     qsort( result, i_sub_count, sizeof( subfn ), compare_sub_priority );
278
279     result2 = (char**)malloc( sizeof(char*) * ( i_sub_count + 1 ) );
280     memset( result2, 0, sizeof(char*) * ( i_sub_count + 1 ) );
281
282     for( i = 0; i < i_sub_count; i++ )
283     {
284         result2[i] = result[i].psz_fname;
285     }
286     result2[i_sub_count] = NULL;
287     free( result );
288     return result2;
289 }
290