2013-06-21 16:49:29 +00:00
|
|
|
#include "ResourceManager.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
|
2018-01-09 22:55:09 +00:00
|
|
|
#include "utils/FileSystemUtil.h"
|
2013-06-21 16:49:29 +00:00
|
|
|
#include <fstream>
|
2013-07-09 05:44:24 +00:00
|
|
|
|
|
|
|
auto array_deleter = [](unsigned char* p) { delete[] p; };
|
2017-11-17 14:58:52 +00:00
|
|
|
auto nop_deleter = [](unsigned char* /*p*/) { };
|
2013-07-09 05:44:24 +00:00
|
|
|
|
2013-10-04 23:09:54 +00:00
|
|
|
std::shared_ptr<ResourceManager> ResourceManager::sInstance = nullptr;
|
|
|
|
|
|
|
|
ResourceManager::ResourceManager()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<ResourceManager>& ResourceManager::getInstance()
|
|
|
|
{
|
|
|
|
if(!sInstance)
|
|
|
|
sInstance = std::shared_ptr<ResourceManager>(new ResourceManager());
|
|
|
|
|
|
|
|
return sInstance;
|
|
|
|
}
|
|
|
|
|
2018-02-08 18:27:44 +00:00
|
|
|
std::string ResourceManager::getResourcePath(const std::string& path) const
|
2013-07-09 05:44:24 +00:00
|
|
|
{
|
2018-02-08 18:27:44 +00:00
|
|
|
// check if this is a resource file
|
|
|
|
if((path[0] == ':') && (path[1] == '/'))
|
2013-06-21 16:49:29 +00:00
|
|
|
{
|
2018-02-08 18:27:44 +00:00
|
|
|
std::string test;
|
|
|
|
|
|
|
|
// check in homepath
|
|
|
|
test = Utils::FileSystem::getHomePath() + "/.emulationstation/resources/" + &path[2];
|
|
|
|
if(Utils::FileSystem::exists(test))
|
|
|
|
return test;
|
|
|
|
|
|
|
|
// check in exepath
|
|
|
|
test = Utils::FileSystem::getExePath() + "/resources/" + &path[2];
|
|
|
|
if(Utils::FileSystem::exists(test))
|
|
|
|
return test;
|
|
|
|
|
|
|
|
// check in cwd
|
|
|
|
test = Utils::FileSystem::getCWDPath() + "/resources/" + &path[2];
|
|
|
|
if(Utils::FileSystem::exists(test))
|
|
|
|
return test;
|
2013-06-21 16:49:29 +00:00
|
|
|
}
|
|
|
|
|
2018-02-08 18:27:44 +00:00
|
|
|
// not a resource, return unmodified path
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ResourceData ResourceManager::getFileData(const std::string& path) const
|
|
|
|
{
|
|
|
|
//check if its a resource
|
|
|
|
const std::string respath = getResourcePath(path);
|
|
|
|
|
|
|
|
if(Utils::FileSystem::exists(respath))
|
2013-07-09 05:44:24 +00:00
|
|
|
{
|
2018-02-08 18:27:44 +00:00
|
|
|
ResourceData data = loadFile(respath);
|
2013-07-09 05:44:24 +00:00
|
|
|
return data;
|
|
|
|
}
|
2018-02-08 18:27:44 +00:00
|
|
|
|
|
|
|
//if the file doesn't exist, return an "empty" ResourceData
|
|
|
|
ResourceData data = {NULL, 0};
|
|
|
|
return data;
|
2013-06-21 16:49:29 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
ResourceData ResourceManager::loadFile(const std::string& path) const
|
2013-07-03 07:54:55 +00:00
|
|
|
{
|
2013-07-09 05:44:24 +00:00
|
|
|
std::ifstream stream(path, std::ios::binary);
|
2013-07-03 07:54:55 +00:00
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
stream.seekg(0, stream.end);
|
|
|
|
size_t size = (size_t)stream.tellg();
|
|
|
|
stream.seekg(0, stream.beg);
|
2013-07-03 07:54:55 +00:00
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
//supply custom deleter to properly free array
|
|
|
|
std::shared_ptr<unsigned char> data(new unsigned char[size], array_deleter);
|
|
|
|
stream.read((char*)data.get(), size);
|
|
|
|
stream.close();
|
2013-07-03 07:54:55 +00:00
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
ResourceData ret = {data, size};
|
|
|
|
return ret;
|
2013-07-03 07:54:55 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
bool ResourceManager::fileExists(const std::string& path) const
|
2013-06-21 16:49:29 +00:00
|
|
|
{
|
2018-02-08 18:27:44 +00:00
|
|
|
//if it exists as a resource file, return true
|
|
|
|
if(getResourcePath(path) != path)
|
2013-08-07 22:40:27 +00:00
|
|
|
return true;
|
2013-07-03 07:54:55 +00:00
|
|
|
|
2018-01-09 22:55:09 +00:00
|
|
|
return Utils::FileSystem::exists(path);
|
2013-06-21 16:49:29 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
void ResourceManager::unloadAll()
|
2013-06-21 16:49:29 +00:00
|
|
|
{
|
2017-11-11 14:56:22 +00:00
|
|
|
auto iter = mReloadables.cbegin();
|
|
|
|
while(iter != mReloadables.cend())
|
2013-07-03 07:54:55 +00:00
|
|
|
{
|
2013-07-09 05:44:24 +00:00
|
|
|
if(!iter->expired())
|
2013-07-09 05:57:28 +00:00
|
|
|
{
|
2013-10-04 23:09:54 +00:00
|
|
|
iter->lock()->unload(sInstance);
|
2013-07-09 05:57:28 +00:00
|
|
|
iter++;
|
|
|
|
}else{
|
2013-08-23 17:21:22 +00:00
|
|
|
iter = mReloadables.erase(iter);
|
2013-07-09 05:57:28 +00:00
|
|
|
}
|
2013-07-03 07:54:55 +00:00
|
|
|
}
|
2013-06-21 16:49:29 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
void ResourceManager::reloadAll()
|
2013-06-21 16:49:29 +00:00
|
|
|
{
|
2017-11-11 14:56:22 +00:00
|
|
|
auto iter = mReloadables.cbegin();
|
|
|
|
while(iter != mReloadables.cend())
|
2013-06-21 16:49:29 +00:00
|
|
|
{
|
2013-07-09 05:44:24 +00:00
|
|
|
if(!iter->expired())
|
2013-07-09 05:57:28 +00:00
|
|
|
{
|
2013-10-04 23:09:54 +00:00
|
|
|
iter->lock()->reload(sInstance);
|
2013-07-09 05:57:28 +00:00
|
|
|
iter++;
|
|
|
|
}else{
|
2013-08-23 17:21:22 +00:00
|
|
|
iter = mReloadables.erase(iter);
|
2013-07-09 05:57:28 +00:00
|
|
|
}
|
2013-06-21 16:49:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-09 05:44:24 +00:00
|
|
|
void ResourceManager::addReloadable(std::weak_ptr<IReloadable> reloadable)
|
2013-06-21 16:49:29 +00:00
|
|
|
{
|
2013-07-09 05:44:24 +00:00
|
|
|
mReloadables.push_back(reloadable);
|
2013-06-21 16:49:29 +00:00
|
|
|
}
|