ResourceManager::Load never returns null, throws exceptions instead.
This commit is contained in:
@@ -21,6 +21,23 @@ protected:
|
||||
Resource() { }
|
||||
|
||||
public:
|
||||
//Should be thrown in a Resource's constructor if it cannot complete because another resource is still loading.
|
||||
//Not actually an error, just a message to the ResourceManager.
|
||||
struct StillLoadingException : public std::exception
|
||||
{
|
||||
virtual const char* what() const throw()
|
||||
{
|
||||
return "Resource is still loading.";
|
||||
}
|
||||
};
|
||||
struct FailedLoadingException : public std::exception
|
||||
{
|
||||
virtual const char* what() const throw()
|
||||
{
|
||||
return "Resource is failed to load.";
|
||||
}
|
||||
};
|
||||
|
||||
// Pretend that this is a pure virtual function that you have to implement
|
||||
// FIXME: Why did we do this again instead of just using the constructor?
|
||||
// static Resource* Create(std::string resourceName);
|
||||
@@ -39,16 +56,6 @@ public:
|
||||
class ThreadUnsafeResource : public Resource
|
||||
{
|
||||
friend class ResourceManager;
|
||||
protected:
|
||||
//Should be thrown in a Resource's constructor if it cannot complete because another resource is still loading.
|
||||
//Not actually an error, just a message to the ResourceManager.
|
||||
struct StillLoadingException : public std::exception
|
||||
{
|
||||
virtual const char* what() const throw()
|
||||
{
|
||||
return "Resource is still loading.";
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
/** Singleton resource manager to keep track of and cache any external engine assets */
|
||||
@@ -75,18 +82,18 @@ public:
|
||||
// TODO: Templateify
|
||||
static bool IsResourceLoaded(std::string resourceType, std::string resourceName);
|
||||
|
||||
/** If Async is false: Hot-loads a resource and caches it for future use.
|
||||
Fairly safe to assume that return value is always a valid pointer, will only return nullptr on error.
|
||||
|
||||
/** Return value should always be a valid pointer, will throw an exception on error.
|
||||
If the resource has been loaded already, returns a pointer to it.
|
||||
|
||||
If Async is false: Hot-loads a resource, caches it for future use, and returns a pointer to it.
|
||||
If Async is true: If the resource is not loaded yet, starts loading the resource
|
||||
in the background and returns nullptr immediately.
|
||||
If the resource has been loaded already, return a pointer to it.
|
||||
in the background and throws Resource::StillLoadingException immediately.
|
||||
|
||||
@tparam T Resource type.
|
||||
@tparam Async Set this to true if the resource should be loaded asyncronously.
|
||||
@tparam async Set this to true if the resource should be loaded asyncronously.
|
||||
@param resourceName Fully qualified name of the resource to load.
|
||||
*/
|
||||
template <typename T, bool Async = false>
|
||||
template <typename T, bool async = false>
|
||||
static T* Load(std::string resourceName, Resource* parent = nullptr);
|
||||
|
||||
/** Reloads an already loaded resource, keeping its resource ID intact.
|
||||
@@ -101,22 +108,6 @@ public:
|
||||
static void Update();
|
||||
|
||||
private:
|
||||
//Represents a pointer value to signify that a resource haven't failed, but is not fully loaded.
|
||||
class SpecialResourcePointer
|
||||
{
|
||||
public:
|
||||
SpecialResourcePointer()
|
||||
: m_Val(new Resource())
|
||||
{}
|
||||
~SpecialResourcePointer()
|
||||
{
|
||||
delete m_Val;
|
||||
}
|
||||
//Make this class implicitly convertible to the Resource*.
|
||||
operator Resource* const() const { return m_Val; }
|
||||
private:
|
||||
Resource* const m_Val;
|
||||
};
|
||||
//This is a haxy way to make sure that IsMainThread is run when the program starts, so the master thread id is set.
|
||||
struct MasterThreadChecker
|
||||
{
|
||||
@@ -125,7 +116,6 @@ private:
|
||||
ResourceManager::IsMainThread();
|
||||
}
|
||||
};
|
||||
const static SpecialResourcePointer m_StillLoading;
|
||||
const static MasterThreadChecker m_Checker;
|
||||
|
||||
static std::unordered_map<std::string, std::string> m_CompilerTypenameToResourceType;
|
||||
@@ -135,6 +125,7 @@ private:
|
||||
static std::unordered_map<Resource*, Resource*> m_ResourceParents; // resource -> parent resource
|
||||
|
||||
static std::unordered_map<std::pair<std::string, std::string>, boost::thread> m_LoadingThreads; // (type, name) -> loading thread
|
||||
static std::unordered_map<std::pair<std::string, std::string>, std::exception_ptr> m_LoadingThreadExceptions; // (type, name) -> exceptions
|
||||
static boost::recursive_mutex m_Mutex;
|
||||
|
||||
// TODO: Getters for IDs
|
||||
@@ -150,7 +141,9 @@ private:
|
||||
static unsigned int GetNewResourceID(unsigned int typeID);
|
||||
|
||||
// Internal: Create a resource and cache it
|
||||
static Resource* createResource(std::string resourceType, std::string resourceName, Resource* parent);
|
||||
static Resource* createResourceThrowing(std::string resourceType, std::string resourceName, Resource* parent);
|
||||
static Resource* createResource(std::string resourceType, std::string resourceName, Resource* parent, std::exception_ptr& exception);
|
||||
static Resource* cacheResource(Resource* resource, std::string resourceType, std::string resourceName, Resource* parent);
|
||||
|
||||
static bool IsMainThread();
|
||||
};
|
||||
@@ -169,14 +162,14 @@ static T* ResourceManager::Load(std::string resourceName, Resource* parent /* =
|
||||
auto iter = m_CompilerTypenameToResourceType.find(resourceTypename);
|
||||
if (iter == m_CompilerTypenameToResourceType.end()) {
|
||||
LOG_ERROR("Failed to load resource \"%s\" of type \"%s\": type not registered", resourceName.c_str(), resourceTypename);
|
||||
return nullptr;
|
||||
throw Resource::FailedLoadingException();
|
||||
}
|
||||
|
||||
std::string resourceType = iter->second;
|
||||
constexpr bool mustNotLoadInThread = std::is_base_of<ThreadUnsafeResource, T>::value;
|
||||
if (mustNotLoadInThread && !IsMainThread()) {
|
||||
LOG_ERROR("Failed to Load \"%s\": ThreadUnsafeResource type \"%s\" load in the constructor of another resource that is loaded asyncronously.", resourceName.c_str(), iter->second.c_str());
|
||||
return nullptr;
|
||||
throw Resource::FailedLoadingException();
|
||||
}
|
||||
|
||||
auto cacheKey = std::make_pair(resourceType, resourceName);
|
||||
@@ -185,9 +178,9 @@ static T* ResourceManager::Load(std::string resourceName, Resource* parent /* =
|
||||
auto tIt = m_LoadingThreads.find(cacheKey);
|
||||
if (tIt != m_LoadingThreads.end()) {
|
||||
if (async) {
|
||||
//Return null if the thread is still working.
|
||||
//Throw StillLoadingException if the thread is still working.
|
||||
if (!tIt->second.try_join_for(boost::chrono::nanoseconds(1))) {
|
||||
return nullptr;
|
||||
throw Resource::StillLoadingException();
|
||||
}
|
||||
//Else we know the thread has completed.
|
||||
} else {
|
||||
@@ -196,42 +189,51 @@ static T* ResourceManager::Load(std::string resourceName, Resource* parent /* =
|
||||
}
|
||||
//When the thread is done, delete the thread.
|
||||
m_LoadingThreads.erase(tIt);
|
||||
//Find the resource that the thread loaded.
|
||||
it = m_ResourceCache.find(cacheKey);
|
||||
if (it != m_ResourceCache.end()) {
|
||||
//Threads should not be able to throw StillLoadingException, so no check should be needed.
|
||||
return static_cast<T*>(it->second);
|
||||
} else {
|
||||
//If cacheKey does not exist after thread finishes, it failed.
|
||||
return nullptr;
|
||||
//Rethrow the thread exception if it threw any.
|
||||
auto excIt = m_LoadingThreadExceptions.find(cacheKey);
|
||||
std::exception_ptr exception = excIt->second;
|
||||
m_LoadingThreadExceptions.erase(excIt);
|
||||
if (exception) {
|
||||
std::rethrow_exception(exception);
|
||||
}
|
||||
}
|
||||
|
||||
//If resource has already been cached and completely loaded.
|
||||
it = m_ResourceCache.find(cacheKey);
|
||||
if (it != m_ResourceCache.end() && it->second != m_StillLoading) {
|
||||
return static_cast<T*>(it->second);
|
||||
if (it != m_ResourceCache.end()) {
|
||||
if (it->second != nullptr) {
|
||||
return static_cast<T*>(it->second);
|
||||
} else {
|
||||
//Don't return null on failure, exception instead.
|
||||
throw Resource::FailedLoadingException();
|
||||
}
|
||||
}
|
||||
|
||||
Resource* res = nullptr;
|
||||
//If resource is not cached..
|
||||
if (async) {
|
||||
if (mustNotLoadInThread) {
|
||||
res = createResource(resourceType, resourceName, parent);
|
||||
if (res != m_StillLoading) {
|
||||
return static_cast<T*>(res);
|
||||
try {
|
||||
return static_cast<T*>(createResourceThrowing(resourceType, resourceName, parent));
|
||||
} catch (const Resource::StillLoadingException&) {
|
||||
throw;
|
||||
}
|
||||
} else {
|
||||
//Create a thread that loads the resource into cache.
|
||||
m_LoadingThreads[cacheKey] = boost::thread(createResource, resourceType, resourceName, parent);
|
||||
m_LoadingThreads[cacheKey] = boost::thread(createResource, resourceType, resourceName, parent, m_LoadingThreadExceptions[cacheKey]);
|
||||
throw Resource::StillLoadingException();
|
||||
}
|
||||
return nullptr;
|
||||
} else {
|
||||
//load and return the resource.
|
||||
do {
|
||||
res = createResource(resourceType, resourceName, parent);
|
||||
} while (res == m_StillLoading);
|
||||
return static_cast<T*>(res);
|
||||
while (true) {
|
||||
try {
|
||||
return static_cast<T*>(createResourceThrowing(resourceType, resourceName, parent));
|
||||
} catch (const Resource::StillLoadingException&) {
|
||||
continue;
|
||||
} catch (const std::exception&) {
|
||||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user