70 lines
1.4 KiB
C++
70 lines
1.4 KiB
C++
#include "global.h"
|
|
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "SongCacheIndex.h"
|
|
#include "RageLog.h"
|
|
#include "RageUtil.h"
|
|
#include "song.h"
|
|
|
|
SongCacheIndex *SONGINDEX;
|
|
|
|
SongCacheIndex::SongCacheIndex()
|
|
{
|
|
mkdir("Cache", 0755);
|
|
CacheIndex.SetPath( "Cache/index.cache" );
|
|
ReadCacheIndex();
|
|
}
|
|
|
|
SongCacheIndex::~SongCacheIndex()
|
|
{
|
|
|
|
}
|
|
|
|
static void EmptyDir( CString dir )
|
|
{
|
|
ASSERT(dir[dir.size()-1] == '/');
|
|
|
|
CStringArray asCacheFileNames;
|
|
GetDirListing( dir, asCacheFileNames );
|
|
for( unsigned i=0; i<asCacheFileNames.size(); i++ )
|
|
{
|
|
if (0 == stricmp( asCacheFileNames[i], ".cvsignore" )) // don't delete .cvsignore files
|
|
continue;
|
|
|
|
remove( dir + asCacheFileNames[i] );
|
|
}
|
|
|
|
}
|
|
|
|
void SongCacheIndex::ReadCacheIndex()
|
|
{
|
|
CacheIndex.ReadFile(); // don't care if this fails
|
|
|
|
int iCacheVersion;
|
|
CacheIndex.GetValueI( "Cache", "CacheVersion", iCacheVersion );
|
|
if( iCacheVersion == FILE_CACHE_VERSION )
|
|
return; /* OK */
|
|
|
|
LOG->Trace( "Cache format is out of date. Deleting all cache files." );
|
|
EmptyDir( "Cache/" );
|
|
EmptyDir( "Cache/Banners/" );
|
|
|
|
CacheIndex.Reset();
|
|
}
|
|
|
|
void SongCacheIndex::AddCacheIndex(const CString &path, unsigned hash)
|
|
{
|
|
CacheIndex.SetValueI( "Cache", "CacheVersion", FILE_CACHE_VERSION );
|
|
CacheIndex.SetValueU( "Cache", path, hash );
|
|
CacheIndex.WriteFile();
|
|
}
|
|
|
|
unsigned SongCacheIndex::GetCacheHash( const CString &path ) const
|
|
{
|
|
unsigned iDirHash;
|
|
CacheIndex.GetValueU( "Cache", path, iDirHash );
|
|
return iDirHash;
|
|
}
|