Qt: add asserts around p_input access
[vlc.git] / modules / meta_engine / folder.c
blob46337908c49728e8d524b96397a3de288edac661
1 /*****************************************************************************
2 * folder.c
3 *****************************************************************************
4 * Copyright (C) 2006 the VideoLAN team
5 * $Id$
7 * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
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.
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.
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 *****************************************************************************/
24 /*****************************************************************************
25 * Preamble
26 *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_art_finder.h>
35 #include <vlc_fs.h>
36 #include <vlc_url.h>
37 #include <vlc_input_item.h>
39 #ifdef HAVE_SYS_STAT_H
40 # include <sys/stat.h>
41 #endif
43 static const char* cover_files[] = {
44 "Folder.jpg", /* Windows */
45 "AlbumArtSmall.jpg", /* Windows */
46 ".folder.png", /* KDE? */
47 "cover.jpg", /* rockbox */
50 static const int i_covers = (sizeof(cover_files)/sizeof(cover_files[0]));
52 /*****************************************************************************
53 * Local prototypes
54 *****************************************************************************/
55 static int FindMeta( vlc_object_t * );
57 /*****************************************************************************
58 * Module descriptor
59 *****************************************************************************/
61 vlc_module_begin ()
62 set_shortname( N_( "Folder" ) )
63 set_description( N_("Folder meta data") )
64 add_loadfile( "album-art-filename", NULL,
65 N_("Album art filename"), N_("Filename to look for album art in current directory"), false );
66 set_capability( "art finder", 90 )
67 set_callbacks( FindMeta, NULL )
68 vlc_module_end ()
70 /*****************************************************************************
71 *****************************************************************************/
72 static int FindMeta( vlc_object_t *p_this )
74 art_finder_t *p_finder = (art_finder_t *)p_this;
75 input_item_t *p_item = p_finder->p_item;
76 bool b_have_art = false;
78 if( !p_item )
79 return VLC_EGENERIC;
81 char *psz_dir = input_item_GetURI( p_item );
82 if( !psz_dir )
83 return VLC_EGENERIC;
85 char *psz_path = make_path( psz_dir );
86 free( psz_dir );
87 if( psz_path == NULL )
88 return VLC_EGENERIC;
90 char *psz_buf = strrchr( psz_path, DIR_SEP_CHAR );
91 if( psz_buf )
92 *++psz_buf = '\0';
93 else
94 *psz_path = '\0'; /* relative path */
96 for( int i = -1; !b_have_art && i < i_covers; i++ )
98 const char *filename;
99 char *filebuf, *filepath;
101 if( i == -1 ) /* higher priority : configured filename */
103 filebuf = var_InheritString( p_this, "album-art-filename" );
104 if( filebuf == NULL )
105 continue;
106 filename = filebuf;
108 else
110 filename = cover_files[i];
111 filebuf = NULL;
114 if( asprintf( &filepath, "%s%s", psz_path, filename ) == -1 )
115 filepath = NULL;
116 free( filebuf );
117 if( unlikely(filepath == NULL) )
118 continue;
120 struct stat dummy;
121 if( vlc_stat( filepath, &dummy ) == 0 )
123 char *psz_uri = make_URI( filepath, "file" );
124 if( psz_uri )
126 input_item_SetArtURL( p_item, psz_uri );
127 free( psz_uri );
128 b_have_art = true;
131 free( filepath );
133 free( psz_path );
135 return b_have_art ? VLC_SUCCESS : VLC_EGENERIC;