]> git.sesse.net Git - vlc/blob - modules/meta_engine/musicbrainz.c
6a6c150e6b6fa0d3229d76160d7013fc85c7a65e
[vlc] / modules / meta_engine / musicbrainz.c
1 /*****************************************************************************
2  * musicbrainz.c
3  *****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea -at- videolan -dot- 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
29 #include <vlc/vlc.h>
30 #include <vlc_interface.h>
31 #include <vlc_input.h>
32 #include <vlc_playlist.h>
33 #include <vlc_meta.h>
34
35 #include "musicbrainz/mb_c.h"
36
37 /*****************************************************************************
38  * Local prototypes
39  *****************************************************************************/
40 static int FindArt( vlc_object_t * );
41 static int FindMetaMBId( vlc_object_t *p_this );
42
43 /*****************************************************************************
44  * Module descriptor
45  *****************************************************************************/
46
47 vlc_module_begin();
48     set_shortname( N_( "MusicBrainz" ) );
49     set_description( _("MusicBrainz meta data") );
50
51     set_capability( "meta fetcher", 10 );
52         /* This meta fetcher module only retrieves the musicbrainz track id
53          * and stores it
54          * TODO:
55          *  - Actually do it
56          *  - Also store the album id
57          * */
58         set_callbacks( FindMetaMBId, NULL );
59     add_submodule();
60         /* This art finder module fetches the album ID from musicbrainz and
61          * uses it to fetch the amazon ASIN from musicbrainz.
62          * TODO:
63          *  - Add ability to reuse MB album ID if we already have it
64          */
65         set_capability( "art finder", 80 );
66         set_callbacks( FindArt, NULL );
67 vlc_module_end();
68
69 /*****************************************************************************
70  *****************************************************************************/
71
72 static int GetData( vlc_object_t *p_obj, input_item_t *p_item,
73                     vlc_bool_t b_art )
74 {
75     char psz_buf[256];
76     char psz_data[256];
77     char i_album_count, i;
78     char *ppsz_args[4];
79
80     char *psz_title;
81     char *psz_artist;
82     char *psz_album;
83
84     psz_artist = input_item_GetArtist( p_item );
85     psz_album = input_item_GetAlbum( p_item );
86     psz_title = p_item->psz_name;
87
88     if( !psz_artist || !psz_album )
89         return VLC_EGENERIC;
90
91     musicbrainz_t p_mb;
92
93     p_mb = mb_New();
94 #ifdef WIN32
95     mb_WSAInit( p_mb );
96 #endif
97
98     mb_SetDepth( p_mb, 2 );
99     ppsz_args[0] = psz_album;
100     ppsz_args[1] = psz_artist;
101     ppsz_args[2] = NULL;
102     if( !mb_QueryWithArgs( p_mb,
103         "<mq:FindAlbum>\n" \
104         "   <mq:depth>@DEPTH@</mq:depth>\n" \
105         "   <mq:maxItems>@MAX_ITEMS@</mq:maxItems>\n" \
106         "   <mq:albumName>@1@</mq:albumName>\n" \
107         "   <mq:artistName>@2@</mq:artistName>\n" \
108         "</mq:FindAlbum>\n", ppsz_args ) )
109     {
110         mb_GetQueryError( p_mb, psz_buf, 256 );
111         msg_Err( p_obj, "Query failed: %s\n", psz_buf );
112         mb_Delete( p_mb );
113         return VLC_EGENERIC;
114     }
115
116     i_album_count = mb_GetResultInt( p_mb, MBE_GetNumAlbums );
117     if( i_album_count < 1 )
118     {
119         mb_Delete( p_mb );
120         return VLC_EGENERIC;
121     }
122
123     /** \todo Get the MB Track ID and store it */
124     msg_Dbg( p_obj, "found %d albums.\n", i_album_count );
125
126     for( i = 1; i <= i_album_count; i++ )
127     {
128         mb_Select( p_mb, MBS_Rewind );
129         mb_Select1( p_mb, MBS_SelectAlbum, i );
130
131         mb_GetResultData( p_mb, MBE_AlbumGetAlbumId, psz_data, 256 );
132         mb_GetIDFromURL( p_mb, psz_data, psz_buf, 256 );
133         msg_Dbg( p_obj, "album Id: %s", psz_buf );
134
135
136         if( !b_art )
137             break;
138
139         if( mb_GetResultData( p_mb, MBE_AlbumGetAmazonAsin, psz_buf, 256 ) )
140         {
141             msg_Dbg( p_obj, "Amazon ASIN: %s", psz_buf );
142             snprintf( psz_data, 255,
143                     "http://images.amazon.com/images/P/%s.01._SCLZZZZZZZ_.jpg",
144                     psz_buf );
145             input_item_SetArtURL( p_item, psz_data );
146             break;
147         }
148     }
149 #ifdef WIN32
150     mb_WSAInit( p_mb );
151 #endif
152     mb_Delete( p_mb );
153
154     if( !b_art )
155         return VLC_SUCCESS;
156     else
157         return EMPTY_STR( input_item_GetArtURL( p_item ) ) ?
158                VLC_SUCCESS : VLC_EGENERIC;
159 }
160
161 static int FindMetaMBId( vlc_object_t *p_this )
162 {
163     meta_engine_t *p_me = (meta_engine_t *)p_this;
164     input_item_t *p_item = p_me->p_item;
165     int i_ret = GetData( VLC_OBJECT(p_me), p_item,
166                          p_me->i_mandatory & VLC_META_ENGINE_ART_URL );
167
168     if( !i_ret )
169     {
170         uint32_t i_meta = input_CurrentMetaFlags( input_item_GetMetaObject( p_item ) );
171         p_me->i_mandatory &= ~i_meta;
172         p_me->i_optional &= ~i_meta;
173         return p_me->i_mandatory ? VLC_EGENERIC : VLC_SUCCESS;
174     }
175     return VLC_EGENERIC;
176 }
177
178 static int FindArt( vlc_object_t *p_this )
179 {
180     playlist_t *p_playlist = (playlist_t *)p_this;
181     input_item_t *p_item = (input_item_t *)(p_playlist->p_private);
182     assert( p_item );
183
184     return GetData( VLC_OBJECT(p_playlist), p_item, VLC_TRUE );
185 }