You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
3.7 KiB
127 lines
3.7 KiB
/*****************************************************************************
|
|
* folder.c
|
|
*****************************************************************************
|
|
* Copyright (C) 2006 the VideoLAN team
|
|
* $Id$
|
|
*
|
|
* Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
* Preamble
|
|
*****************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <vlc_common.h>
|
|
#include <vlc_plugin.h>
|
|
#include <vlc_playlist.h>
|
|
#include <vlc_charset.h>
|
|
|
|
#ifdef HAVE_SYS_STAT_H
|
|
# include <sys/stat.h>
|
|
#endif
|
|
|
|
#ifndef MAX_PATH
|
|
# define MAX_PATH 250
|
|
#endif
|
|
|
|
/*****************************************************************************
|
|
* Local prototypes
|
|
*****************************************************************************/
|
|
static int FindMeta( vlc_object_t * );
|
|
|
|
/*****************************************************************************
|
|
* Module descriptor
|
|
*****************************************************************************/
|
|
|
|
vlc_module_begin ()
|
|
set_shortname( N_( "Folder" ) )
|
|
set_description( N_("Folder meta data") )
|
|
|
|
set_capability( "art finder", 90 )
|
|
set_callbacks( FindMeta, NULL )
|
|
vlc_module_end ()
|
|
|
|
/*****************************************************************************
|
|
*****************************************************************************/
|
|
static int FindMeta( vlc_object_t *p_this )
|
|
{
|
|
input_item_t *p_item = (input_item_t *)p_this->p_private;
|
|
bool b_have_art = false;
|
|
|
|
int i = 0;
|
|
struct stat a;
|
|
char psz_filename[MAX_PATH];
|
|
if( !p_item )
|
|
return VLC_EGENERIC;
|
|
|
|
char *psz_dir = input_item_GetURI( p_item );
|
|
if( !psz_dir )
|
|
return VLC_EGENERIC;
|
|
|
|
char *psz_buf = strrchr( psz_dir, '/' );
|
|
if( psz_buf )
|
|
{
|
|
psz_buf++;
|
|
*psz_buf = '\0';
|
|
}
|
|
else
|
|
{
|
|
*psz_dir = '\0';
|
|
}
|
|
|
|
char *psz_path = psz_dir;
|
|
if( !strncmp( psz_path, "file://", 7 ) )
|
|
psz_path += 7;
|
|
|
|
for( i = 0; b_have_art == false && i < 3; i++ )
|
|
{
|
|
switch( i )
|
|
{
|
|
case 0:
|
|
/* Windows Folder.jpg */
|
|
snprintf( psz_filename, MAX_PATH,
|
|
"file://%sFolder.jpg", psz_path );
|
|
break;
|
|
|
|
case 1:
|
|
/* Windows AlbumArtSmall.jpg == small version of Folder.jpg */
|
|
snprintf( psz_filename, MAX_PATH,
|
|
"file://%sAlbumArtSmall.jpg", psz_path );
|
|
break;
|
|
|
|
case 2:
|
|
/* KDE (?) .folder.png */
|
|
snprintf( psz_filename, MAX_PATH,
|
|
"file://%s.folder.png", psz_path );
|
|
break;
|
|
}
|
|
|
|
if( utf8_stat( psz_filename+7, &a ) != -1 )
|
|
{
|
|
input_item_SetArtURL( p_item, psz_filename );
|
|
b_have_art = true;
|
|
}
|
|
}
|
|
|
|
free( psz_dir );
|
|
|
|
return b_have_art ? VLC_SUCCESS : VLC_EGENERIC;
|
|
}
|
|
|