]> git.sesse.net Git - vlc/blob - modules/demux/util/id3tag.c
Finnally got rid of the old m3u module. RIP
[vlc] / modules / demux / util / id3tag.c
1 /*****************************************************************************
2  * id3tag.c: id3 tag parser/skipper based on libid3tag
3  *****************************************************************************
4  * Copyright (C) 2002-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31 #include <vlc/intf.h>
32 #include <vlc/input.h>
33
34 #include <sys/types.h>
35
36 #include "vlc_meta.h"
37
38 #include <id3tag.h>
39 #include "id3genres.h"
40
41 /*****************************************************************************
42  * Local prototypes
43  *****************************************************************************/
44 static int  ParseID3Tags ( vlc_object_t * );
45
46 /*****************************************************************************
47  * Module descriptor
48  *****************************************************************************/
49 vlc_module_begin();
50     set_description( _("ID3 tags parser" ) );
51     set_capability( "id3", 70 );
52     set_callbacks( ParseID3Tags, NULL );
53 vlc_module_end();
54
55 /*****************************************************************************
56  * Definitions of structures  and functions used by this plugins
57  *****************************************************************************/
58
59 /*****************************************************************************
60  * ParseID3Tag : parse an id3tag into the info structures
61  *****************************************************************************/
62 static void ParseID3Tag( demux_t *p_demux, uint8_t *p_data, int i_size )
63 {
64     struct id3_tag   *p_id3_tag;
65     struct id3_frame *p_frame;
66     int i = 0;
67
68     p_id3_tag = id3_tag_parse( p_data, i_size );
69     if( !p_id3_tag ) return;
70
71     if( !p_demux->p_private ) p_demux->p_private = (void *)vlc_meta_New();
72
73 #define ID_IS( a ) (!strcmp(  p_frame->id, a ))
74 #define DESCR_IS( a) strstr( (char*)p_frame->description, a )
75
76     while( ( p_frame = id3_tag_findframe( p_id3_tag , "T", i ) ) )
77     {
78         int i_strings = id3_field_getnstrings( &p_frame->fields[1] );
79
80         while( i_strings > 0 )
81         {
82             vlc_meta_t *p_meta = (vlc_meta_t *)(p_demux->p_private);
83
84             char *psz_temp = id3_ucs4_utf8duplicate(
85                 id3_field_getstrings( &p_frame->fields[1], --i_strings ) );
86
87             if( ID_IS( ID3_FRAME_GENRE ) )
88             {
89                 char *psz_endptr;
90                 int i_genre = strtol( psz_temp, &psz_endptr, 10 );
91
92                 if( psz_temp != psz_endptr &&
93                     i_genre >= 0 && i_genre < NUM_GENRES )
94                 {
95                     vlc_meta_SetGenre( p_meta, ppsz_genres[atoi(psz_temp)]);
96                 }
97                 else
98                 {
99                     /* Unknown genre */
100                     vlc_meta_SetGenre( p_meta,psz_temp );
101                 }
102             }
103             else if( ID_IS( ID3_FRAME_TITLE ) )
104             {
105                 vlc_meta_SetTitle( p_meta, psz_temp );
106             }
107             else if( ID_IS( ID3_FRAME_ARTIST ) )
108             {
109                 vlc_meta_SetArtist( p_meta, psz_temp );
110             }
111             else if( ID_IS( ID3_FRAME_YEAR ) )
112             {
113                 vlc_meta_SetDate( p_meta, psz_temp );
114             }
115             else if( ID_IS( ID3_FRAME_COMMENT ) )
116             {
117                 vlc_meta_SetDescription( p_meta, psz_temp );
118             }
119             else if( DESCR_IS( "Copyright" ) )
120             {
121                 vlc_meta_SetCopyright( p_meta, psz_temp );
122             }
123             else if( DESCR_IS( "Publisher" ) )
124             {
125                 vlc_meta_SetPublisher( p_meta, psz_temp );
126             }
127             else if( DESCR_IS( "Track number/position in set" ) )
128             {
129                 vlc_meta_SetTracknum( p_meta, psz_temp );
130             }
131             else if( DESCR_IS( "Album/movie/show title" ) )
132             {
133                 vlc_meta_SetAlbum( p_meta, psz_temp );
134             }
135             else if( DESCR_IS( "Encoded by" ) )
136             {
137                 vlc_meta_SetEncodedBy( p_meta, psz_temp );
138             }
139             else if( p_frame->description )
140             { /* Unhandled meta*/
141                 msg_Warn( p_demux, "Fixme: unhandled ID3 metatag, %s", p_frame->description );
142             }
143             free( psz_temp );
144         }
145         i++;
146     }
147     id3_tag_delete( p_id3_tag );
148 }
149
150 /*****************************************************************************
151  * ParseID3Tags: check if ID3 tags at common locations. Parse them and skip it
152  * if it's at the start of the file
153  ****************************************************************************/
154 static int ParseID3Tags( vlc_object_t *p_this )
155 {
156     demux_t *p_demux = (demux_t *)p_this;
157     uint8_t *p_peek;
158     vlc_bool_t b_seekable;
159     int64_t i_init, i_pos;
160     int i_size;
161
162     p_demux->p_private = NULL;
163
164     msg_Dbg( p_demux, "checking for ID3 tag" );
165
166     stream_Control( p_demux->s, STREAM_CAN_FASTSEEK, &b_seekable );
167     if( !b_seekable ) return VLC_SUCCESS;
168
169     i_init = stream_Tell( p_demux->s );
170
171     /*
172      * Look for a ID3v1 tag at the end of the file
173      */
174     i_init = stream_Tell( p_demux->s );
175     i_pos = stream_Size( p_demux->s );
176
177     while( i_pos > 128 ) /* while used so we can break; */
178     {
179         stream_Seek( p_demux->s, i_pos - 128 );
180
181         /* get 10 byte id3 header */
182         if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 ) break;
183
184         i_size = id3_tag_query( p_peek, 10 );
185         if( i_size == 128 )
186         {
187             /* peek the entire tag */
188             if( stream_Peek( p_demux->s, &p_peek, i_size ) < i_size ) break;
189
190             msg_Dbg( p_demux, "found ID3v1 tag" );
191             ParseID3Tag( p_demux, p_peek, i_size );
192         }
193
194         /* look for ID3v2.4 tag at end of file */
195         /* get 10 byte ID3 footer */
196         if( stream_Peek( p_demux->s, &p_peek, 128 ) < 128 ) break;
197
198         i_size = id3_tag_query( p_peek + 118, 10 );
199         if( i_size < 0  && i_pos > -i_size )
200         {
201             /* id3v2.4 footer found */
202             stream_Seek( p_demux->s , i_pos + i_size );
203             /* peek the entire tag */
204             if( stream_Peek( p_demux->s, &p_peek, i_size ) < i_size ) break;
205
206             msg_Dbg( p_demux, "found ID3v2 tag at end of file" );
207             ParseID3Tag( p_demux, p_peek, i_size );
208         }
209         break;
210     }
211
212     /*
213      * Get 10 byte id3 header
214      */
215     stream_Seek( p_demux->s, 0 );
216     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 ) goto end;
217
218     if( (i_size = id3_tag_query( p_peek, 10 )) <= 0 ) goto end;
219
220     if( stream_Peek( p_demux->s, &p_peek, i_size ) < i_size ) goto end;
221
222     msg_Dbg( p_demux, "found ID3v2 tag" );
223     ParseID3Tag( p_demux, p_peek, i_size );
224
225  end:
226     stream_Seek( p_demux->s, i_init );
227     return VLC_SUCCESS;
228 }