2016-03-26 00:51:59 +00:00
|
|
|
#ifndef URDE_PROJECT_RESOURCE_FACTORY_BASE_HPP
|
|
|
|
#define URDE_PROJECT_RESOURCE_FACTORY_BASE_HPP
|
|
|
|
|
2016-03-27 20:43:04 +00:00
|
|
|
#include "hecl/ClientProcess.hpp"
|
2016-03-28 04:36:55 +00:00
|
|
|
#include "hecl/Database.hpp"
|
2016-03-26 00:51:59 +00:00
|
|
|
#include "Runtime/IFactory.hpp"
|
|
|
|
#include "Runtime/CFactoryMgr.hpp"
|
|
|
|
#include "Runtime/CResFactory.hpp"
|
2016-03-26 02:25:04 +00:00
|
|
|
#include "optional.hpp"
|
2016-03-26 00:51:59 +00:00
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
#include <mutex>
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
class ProjectResourceFactoryBase : public urde::IFactory
|
|
|
|
{
|
2016-04-05 01:51:25 +00:00
|
|
|
friend class ProjectResourcePool;
|
2016-03-27 20:43:04 +00:00
|
|
|
hecl::ClientProcess& m_clientProc;
|
2016-03-26 00:51:59 +00:00
|
|
|
|
2016-08-08 04:48:18 +00:00
|
|
|
public:
|
2016-03-28 04:36:55 +00:00
|
|
|
struct AsyncTask
|
|
|
|
{
|
|
|
|
ProjectResourceFactoryBase& m_parent;
|
|
|
|
|
|
|
|
SObjectTag x0_tag;
|
2016-04-06 01:44:07 +00:00
|
|
|
//IDvdRequest* x8_dvdReq = nullptr;
|
2016-07-23 21:41:18 +00:00
|
|
|
std::unique_ptr<u8[]>* xc_targetDataPtr = nullptr;
|
|
|
|
IObj** xc_targetObjPtr = nullptr;
|
2016-03-28 04:36:55 +00:00
|
|
|
std::unique_ptr<u8[]> x10_loadBuffer;
|
2016-07-23 21:41:18 +00:00
|
|
|
u32 x14_resSize = UINT32_MAX;
|
|
|
|
u32 x14_resOffset = 0;
|
2016-03-28 04:36:55 +00:00
|
|
|
CVParamTransfer x18_cvXfer;
|
2016-09-02 19:32:57 +00:00
|
|
|
CObjectReference* m_selfRef = nullptr;
|
2016-03-28 04:36:55 +00:00
|
|
|
|
|
|
|
hecl::ProjectPath m_workingPath;
|
|
|
|
hecl::ProjectPath m_cookedPath;
|
2016-04-19 00:17:49 +00:00
|
|
|
std::shared_ptr<const hecl::ClientProcess::CookTransaction> m_cookTransaction;
|
|
|
|
std::shared_ptr<const hecl::ClientProcess::BufferTransaction> m_bufTransaction;
|
2016-03-28 04:36:55 +00:00
|
|
|
bool m_failed = false;
|
2016-03-28 21:38:48 +00:00
|
|
|
bool m_complete = false;
|
2016-03-28 04:36:55 +00:00
|
|
|
|
2016-07-23 21:41:18 +00:00
|
|
|
AsyncTask(ProjectResourceFactoryBase& parent, const SObjectTag& tag,
|
|
|
|
std::unique_ptr<u8[]>& ptr)
|
|
|
|
: m_parent(parent), x0_tag(tag), xc_targetDataPtr(&ptr) {}
|
|
|
|
|
|
|
|
AsyncTask(ProjectResourceFactoryBase& parent, const SObjectTag& tag,
|
|
|
|
std::unique_ptr<u8[]>& ptr, u32 size, u32 off)
|
|
|
|
: m_parent(parent), x0_tag(tag), xc_targetDataPtr(&ptr), x14_resSize(size),
|
|
|
|
x14_resOffset(off) {}
|
|
|
|
|
2016-03-28 04:36:55 +00:00
|
|
|
AsyncTask(ProjectResourceFactoryBase& parent, const SObjectTag& tag,
|
2016-09-02 19:32:57 +00:00
|
|
|
IObj** ptr, const CVParamTransfer& xfer, CObjectReference* selfRef)
|
|
|
|
: m_parent(parent), x0_tag(tag), xc_targetObjPtr(ptr), x18_cvXfer(xfer), m_selfRef(selfRef) {}
|
2016-03-28 04:36:55 +00:00
|
|
|
|
2016-03-31 21:06:41 +00:00
|
|
|
void EnsurePath(const urde::SObjectTag& tag,
|
|
|
|
const hecl::ProjectPath& path);
|
2016-03-28 04:36:55 +00:00
|
|
|
void CookComplete();
|
|
|
|
bool AsyncPump();
|
|
|
|
};
|
2016-08-08 04:48:18 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
std::unordered_map<urde::SObjectTag, hecl::ProjectPath> m_tagToPath;
|
|
|
|
std::unordered_map<std::string, urde::SObjectTag> m_catalogNameToTag;
|
|
|
|
void Clear();
|
|
|
|
|
|
|
|
const hecl::Database::Project* m_proj = nullptr;
|
|
|
|
const hecl::Database::DataSpecEntry* m_origSpec = nullptr;
|
|
|
|
const hecl::Database::DataSpecEntry* m_pcSpec = nullptr;
|
|
|
|
/* Used to resolve cooked paths */
|
|
|
|
std::unique_ptr<hecl::Database::IDataSpec> m_cookSpec;
|
|
|
|
urde::CFactoryMgr m_factoryMgr;
|
|
|
|
|
|
|
|
hecl::BlenderToken m_backgroundBlender;
|
|
|
|
std::thread m_backgroundIndexTh;
|
|
|
|
std::mutex m_backgroundIndexMutex;
|
|
|
|
bool m_backgroundRunning = false;
|
|
|
|
|
|
|
|
std::unordered_map<SObjectTag, std::shared_ptr<AsyncTask>> m_asyncLoadList;
|
2016-03-26 00:51:59 +00:00
|
|
|
|
2016-07-23 21:41:18 +00:00
|
|
|
bool WaitForTagReady(const urde::SObjectTag& tag, const hecl::ProjectPath*& pathOut);
|
|
|
|
bool
|
|
|
|
PrepForReadSync(const SObjectTag& tag,
|
|
|
|
const hecl::ProjectPath& path,
|
|
|
|
std::experimental::optional<athena::io::FileReader>& fr);
|
|
|
|
|
2016-03-31 21:06:41 +00:00
|
|
|
virtual SObjectTag TagFromPath(const hecl::ProjectPath& path, hecl::BlenderToken& btok) const=0;
|
2016-03-26 00:51:59 +00:00
|
|
|
|
2016-03-28 21:38:48 +00:00
|
|
|
void ReadCatalog(const hecl::ProjectPath& catalogPath,
|
|
|
|
athena::io::YAMLDocWriter& nameWriter);
|
|
|
|
void BackgroundIndexRecursiveProc(const hecl::ProjectPath& path,
|
|
|
|
athena::io::YAMLDocWriter& cacheWriter,
|
|
|
|
athena::io::YAMLDocWriter& nameWriter,
|
|
|
|
int level);
|
|
|
|
void BackgroundIndexRecursiveCatalogs(const hecl::ProjectPath& path,
|
|
|
|
athena::io::YAMLDocWriter& nameWriter,
|
|
|
|
int level);
|
2016-03-26 00:51:59 +00:00
|
|
|
void BackgroundIndexProc();
|
|
|
|
void CancelBackgroundIndex();
|
2016-03-28 04:36:55 +00:00
|
|
|
void BeginBackgroundIndex(hecl::Database::Project& proj,
|
2016-03-26 00:51:59 +00:00
|
|
|
const hecl::Database::DataSpecEntry& origSpec,
|
|
|
|
const hecl::Database::DataSpecEntry& pcSpec);
|
|
|
|
|
2016-03-28 04:36:55 +00:00
|
|
|
hecl::ProjectPath GetCookedPath(const hecl::ProjectPath& working, bool pcTarget) const;
|
|
|
|
bool SyncCook(const hecl::ProjectPath& working);
|
2016-03-29 23:14:14 +00:00
|
|
|
CFactoryFnReturn BuildSync(const SObjectTag& tag, const hecl::ProjectPath& path,
|
2016-09-02 19:32:57 +00:00
|
|
|
const CVParamTransfer& paramXfer, CObjectReference* selfRef);
|
2016-03-26 00:51:59 +00:00
|
|
|
|
|
|
|
public:
|
2016-03-27 20:43:04 +00:00
|
|
|
ProjectResourceFactoryBase(hecl::ClientProcess& clientProc) : m_clientProc(clientProc) {}
|
2016-09-02 19:32:57 +00:00
|
|
|
std::unique_ptr<urde::IObj> Build(const urde::SObjectTag&, const urde::CVParamTransfer&, CObjectReference* selfRef);
|
|
|
|
void BuildAsync(const urde::SObjectTag&, const urde::CVParamTransfer&, urde::IObj**, CObjectReference* selfRef);
|
|
|
|
std::shared_ptr<AsyncTask> BuildAsyncInternal(const urde::SObjectTag&, const urde::CVParamTransfer&, urde::IObj**, CObjectReference* selfRef);
|
2016-03-26 00:51:59 +00:00
|
|
|
void CancelBuild(const urde::SObjectTag&);
|
|
|
|
bool CanBuild(const urde::SObjectTag&);
|
|
|
|
const urde::SObjectTag* GetResourceIdByName(const char*) const;
|
2016-04-14 21:42:47 +00:00
|
|
|
FourCC GetResourceTypeById(ResId id) const;
|
2016-03-26 00:51:59 +00:00
|
|
|
|
2016-07-23 21:41:18 +00:00
|
|
|
u32 ResourceSize(const SObjectTag& tag);
|
2016-08-08 04:48:18 +00:00
|
|
|
std::shared_ptr<AsyncTask> LoadResourceAsync(const urde::SObjectTag& tag, std::unique_ptr<u8[]>& target);
|
|
|
|
std::shared_ptr<AsyncTask> LoadResourcePartAsync(const urde::SObjectTag& tag, u32 size, u32 off, std::unique_ptr<u8[]>& target);
|
2016-07-23 21:41:18 +00:00
|
|
|
std::unique_ptr<u8[]> LoadResourceSync(const urde::SObjectTag& tag);
|
|
|
|
std::unique_ptr<u8[]> LoadResourcePartSync(const urde::SObjectTag& tag, u32 size, u32 off);
|
|
|
|
|
2016-03-26 00:51:59 +00:00
|
|
|
void AsyncIdle();
|
2016-03-28 04:36:55 +00:00
|
|
|
void Shutdown() {CancelBackgroundIndex();}
|
2016-03-28 22:39:56 +00:00
|
|
|
|
2016-04-19 21:25:26 +00:00
|
|
|
SObjectTag TagFromPath(const hecl::SystemChar* path) const
|
|
|
|
{
|
|
|
|
return TagFromPath(hecl::ProjectPath(*(hecl::Database::Project*)m_proj, path),
|
|
|
|
hecl::SharedBlenderToken);
|
|
|
|
}
|
|
|
|
|
2016-03-28 22:39:56 +00:00
|
|
|
~ProjectResourceFactoryBase() {Shutdown();}
|
2016-03-26 00:51:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // URDE_PROJECT_RESOURCE_FACTORY_BASE_HPP
|