2016-03-26 00:51:59 +00:00
|
|
|
#include "ProjectResourceFactoryBase.hpp"
|
|
|
|
#include "Runtime/IObj.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
static logvisor::Module Log("urde::ProjectResourceFactoryBase");
|
|
|
|
|
|
|
|
void ProjectResourceFactoryBase::Clear()
|
|
|
|
{
|
|
|
|
m_tagToPath.clear();
|
|
|
|
m_catalogNameToTag.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
hecl::BlenderConnection& ProjectResourceFactoryBase::GetBackgroundBlender() const
|
|
|
|
{
|
|
|
|
std::experimental::optional<hecl::BlenderConnection>& shareConn =
|
|
|
|
((ProjectResourceFactoryBase*)this)->m_backgroundBlender;
|
|
|
|
if (!shareConn)
|
|
|
|
shareConn.emplace(hecl::VerbosityLevel);
|
|
|
|
return *shareConn;
|
|
|
|
}
|
|
|
|
|
2016-03-28 21:38:48 +00:00
|
|
|
void ProjectResourceFactoryBase::ReadCatalog(const hecl::ProjectPath& catalogPath,
|
|
|
|
athena::io::YAMLDocWriter& nameWriter)
|
2016-03-26 00:51:59 +00:00
|
|
|
{
|
|
|
|
FILE* fp = hecl::Fopen(catalogPath.getAbsolutePath().c_str(), _S("r"));
|
|
|
|
if (!fp)
|
|
|
|
return;
|
|
|
|
|
|
|
|
athena::io::YAMLDocReader reader;
|
|
|
|
yaml_parser_set_input_file(reader.getParser(), fp);
|
|
|
|
bool res = reader.parse();
|
|
|
|
fclose(fp);
|
|
|
|
if (!res)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const athena::io::YAMLNode* root = reader.getRootNode();
|
|
|
|
for (const auto& p : root->m_mapChildren)
|
|
|
|
{
|
|
|
|
hecl::ProjectPath path(m_proj->getProjectWorkingPath(), p.second->m_scalarString);
|
|
|
|
if (path.getPathType() != hecl::ProjectPath::Type::File)
|
|
|
|
continue;
|
|
|
|
SObjectTag pathTag = TagFromPath(path);
|
|
|
|
if (pathTag)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_backgroundIndexMutex);
|
|
|
|
m_catalogNameToTag[p.first] = pathTag;
|
2016-03-28 21:38:48 +00:00
|
|
|
|
|
|
|
char idStr[9];
|
|
|
|
snprintf(idStr, 9, "%08X", uint32_t(pathTag.id));
|
|
|
|
nameWriter.writeString(p.first.c_str(), idStr);
|
2016-03-28 04:36:55 +00:00
|
|
|
#if 0
|
|
|
|
fprintf(stderr, "%s %s %08X\n",
|
|
|
|
p.first.c_str(),
|
|
|
|
pathTag.type.toString().c_str(), uint32_t(pathTag.id));
|
|
|
|
#endif
|
2016-03-26 00:51:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-28 21:38:48 +00:00
|
|
|
void ProjectResourceFactoryBase::BackgroundIndexRecursiveCatalogs(const hecl::ProjectPath& dir,
|
|
|
|
athena::io::YAMLDocWriter& nameWriter,
|
|
|
|
int level)
|
|
|
|
{
|
|
|
|
hecl::DirectoryEnumerator dEnum(dir.getAbsolutePath(),
|
|
|
|
hecl::DirectoryEnumerator::Mode::DirsThenFilesSorted,
|
|
|
|
false, false, true);
|
|
|
|
|
|
|
|
/* Enumerate all items */
|
|
|
|
for (const hecl::DirectoryEnumerator::Entry& ent : dEnum)
|
|
|
|
{
|
|
|
|
hecl::ProjectPath path(dir, ent.m_name);
|
|
|
|
if (ent.m_isDir && level < 1)
|
|
|
|
BackgroundIndexRecursiveCatalogs(path, nameWriter, level+1);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (path.getPathType() != hecl::ProjectPath::Type::File)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Read catalog.yaml for .pak directory if exists */
|
|
|
|
if (level == 1 && !ent.m_name.compare(_S("catalog.yaml")))
|
|
|
|
{
|
|
|
|
ReadCatalog(path, nameWriter);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* bail if cancelled by client */
|
|
|
|
if (!m_backgroundRunning)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectResourceFactoryBase::BackgroundIndexRecursiveProc(const hecl::ProjectPath& dir,
|
|
|
|
athena::io::YAMLDocWriter& cacheWriter,
|
|
|
|
athena::io::YAMLDocWriter& nameWriter,
|
|
|
|
int level)
|
2016-03-26 00:51:59 +00:00
|
|
|
{
|
2016-03-28 04:36:55 +00:00
|
|
|
hecl::DirectoryEnumerator dEnum(dir.getAbsolutePath(),
|
2016-03-26 00:51:59 +00:00
|
|
|
hecl::DirectoryEnumerator::Mode::DirsThenFilesSorted,
|
|
|
|
false, false, true);
|
|
|
|
|
|
|
|
/* Enumerate all items */
|
|
|
|
for (const hecl::DirectoryEnumerator::Entry& ent : dEnum)
|
|
|
|
{
|
2016-03-28 04:36:55 +00:00
|
|
|
hecl::ProjectPath path(dir, ent.m_name);
|
2016-03-26 00:51:59 +00:00
|
|
|
if (ent.m_isDir)
|
2016-03-28 21:38:48 +00:00
|
|
|
BackgroundIndexRecursiveProc(path, cacheWriter, nameWriter, level+1);
|
2016-03-26 00:51:59 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (path.getPathType() != hecl::ProjectPath::Type::File)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Read catalog.yaml for .pak directory if exists */
|
|
|
|
if (level == 1 && !ent.m_name.compare(_S("catalog.yaml")))
|
|
|
|
{
|
2016-03-28 21:38:48 +00:00
|
|
|
ReadCatalog(path, nameWriter);
|
2016-03-26 00:51:59 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Classify intermediate into tag */
|
|
|
|
SObjectTag pathTag = TagFromPath(path);
|
|
|
|
if (pathTag)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_backgroundIndexMutex);
|
|
|
|
m_tagToPath[pathTag] = path;
|
2016-03-28 21:38:48 +00:00
|
|
|
char idStr[9];
|
|
|
|
snprintf(idStr, 9, "%08X", uint32_t(pathTag.id));
|
|
|
|
cacheWriter.enterSubVector(idStr);
|
|
|
|
cacheWriter.writeString(nullptr, pathTag.type.toString().c_str());
|
|
|
|
cacheWriter.writeString(nullptr, path.getRelativePathUTF8().c_str());
|
|
|
|
cacheWriter.leaveSubVector();
|
|
|
|
#if 1
|
2016-03-28 04:36:55 +00:00
|
|
|
fprintf(stderr, "%s %08X %s\n",
|
|
|
|
pathTag.type.toString().c_str(), uint32_t(pathTag.id),
|
|
|
|
path.getRelativePathUTF8().c_str());
|
|
|
|
#endif
|
2016-03-26 00:51:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* bail if cancelled by client */
|
|
|
|
if (!m_backgroundRunning)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectResourceFactoryBase::BackgroundIndexProc()
|
|
|
|
{
|
2016-03-28 21:38:48 +00:00
|
|
|
hecl::ProjectPath tagCachePath(m_proj->getProjectCookedPath(*m_origSpec), _S("tag_cache.yaml"));
|
|
|
|
hecl::ProjectPath nameCachePath(m_proj->getProjectCookedPath(*m_origSpec), _S("name_cache.yaml"));
|
2016-03-26 00:51:59 +00:00
|
|
|
hecl::ProjectPath specRoot(m_proj->getProjectWorkingPath(), m_origSpec->m_name);
|
2016-03-28 21:38:48 +00:00
|
|
|
|
|
|
|
/* Read in tag cache */
|
|
|
|
if (tagCachePath.getPathType() == hecl::ProjectPath::Type::File)
|
|
|
|
{
|
|
|
|
FILE* cacheFile = hecl::Fopen(tagCachePath.getAbsolutePath().c_str(), _S("r"));
|
|
|
|
if (cacheFile)
|
|
|
|
{
|
|
|
|
Log.report(logvisor::Info, _S("Cache index of '%s' loading"), m_origSpec->m_name);
|
|
|
|
athena::io::YAMLDocReader cacheReader;
|
|
|
|
yaml_parser_set_input_file(cacheReader.getParser(), cacheFile);
|
|
|
|
if (cacheReader.parse())
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_backgroundIndexMutex);
|
|
|
|
m_tagToPath.reserve(cacheReader.getRootNode()->m_mapChildren.size());
|
|
|
|
for (const auto& child : cacheReader.getRootNode()->m_mapChildren)
|
|
|
|
{
|
|
|
|
unsigned long id = strtoul(child.first.c_str(), nullptr, 16);
|
|
|
|
hecl::FourCC type(child.second->m_seqChildren.at(0)->m_scalarString.c_str());
|
|
|
|
hecl::ProjectPath path(m_proj->getProjectWorkingPath(),
|
|
|
|
child.second->m_seqChildren.at(1)->m_scalarString);
|
|
|
|
m_tagToPath[SObjectTag(type, id)] = path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(cacheFile);
|
|
|
|
Log.report(logvisor::Info, _S("Cache index of '%s' loaded; %d tags"),
|
|
|
|
m_origSpec->m_name, m_tagToPath.size());
|
|
|
|
|
|
|
|
if (nameCachePath.getPathType() == hecl::ProjectPath::Type::File)
|
|
|
|
{
|
|
|
|
/* Read in name cache */
|
|
|
|
Log.report(logvisor::Info, _S("Name index of '%s' loading"), m_origSpec->m_name);
|
|
|
|
FILE* nameFile = hecl::Fopen(nameCachePath.getAbsolutePath().c_str(), _S("r"));
|
|
|
|
athena::io::YAMLDocReader nameReader;
|
|
|
|
yaml_parser_set_input_file(nameReader.getParser(), nameFile);
|
|
|
|
if (nameReader.parse())
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_backgroundIndexMutex);
|
|
|
|
m_catalogNameToTag.reserve(nameReader.getRootNode()->m_mapChildren.size());
|
|
|
|
for (const auto& child : nameReader.getRootNode()->m_mapChildren)
|
|
|
|
{
|
|
|
|
unsigned long id = strtoul(child.second->m_scalarString.c_str(), nullptr, 16);
|
|
|
|
auto search = m_tagToPath.find(SObjectTag(FourCC(), uint32_t(id)));
|
|
|
|
if (search != m_tagToPath.cend())
|
|
|
|
m_catalogNameToTag[child.first] = search->first;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(nameFile);
|
|
|
|
Log.report(logvisor::Info, _S("Name index of '%s' loaded; %d names"),
|
|
|
|
m_origSpec->m_name, m_catalogNameToTag.size());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Build name cache */
|
|
|
|
Log.report(logvisor::Info, _S("Name index of '%s' started"), m_origSpec->m_name);
|
|
|
|
athena::io::YAMLDocWriter nameWriter(nullptr);
|
|
|
|
BackgroundIndexRecursiveCatalogs(specRoot, nameWriter, 0);
|
|
|
|
FILE* nameFile = hecl::Fopen(nameCachePath.getAbsolutePath().c_str(), _S("w"));
|
|
|
|
yaml_emitter_set_output_file(nameWriter.getEmitter(), nameFile);
|
|
|
|
nameWriter.finish();
|
|
|
|
fclose(nameFile);
|
|
|
|
Log.report(logvisor::Info, _S("Name index of '%s' complete; %d names"),
|
|
|
|
m_origSpec->m_name, m_catalogNameToTag.size());
|
|
|
|
}
|
|
|
|
m_backgroundRunning = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Log.report(logvisor::Info, _S("Background index of '%s' started"), m_origSpec->m_name);
|
|
|
|
athena::io::YAMLDocWriter cacheWriter(nullptr);
|
|
|
|
athena::io::YAMLDocWriter nameWriter(nullptr);
|
|
|
|
BackgroundIndexRecursiveProc(specRoot, cacheWriter, nameWriter, 0);
|
|
|
|
|
|
|
|
FILE* cacheFile = hecl::Fopen(tagCachePath.getAbsolutePath().c_str(), _S("w"));
|
|
|
|
yaml_emitter_set_output_file(cacheWriter.getEmitter(), cacheFile);
|
|
|
|
cacheWriter.finish();
|
|
|
|
fclose(cacheFile);
|
|
|
|
|
|
|
|
FILE* nameFile = hecl::Fopen(nameCachePath.getAbsolutePath().c_str(), _S("w"));
|
|
|
|
yaml_emitter_set_output_file(nameWriter.getEmitter(), nameFile);
|
|
|
|
nameWriter.finish();
|
|
|
|
fclose(nameFile);
|
|
|
|
|
|
|
|
if (m_backgroundBlender)
|
|
|
|
{
|
|
|
|
m_backgroundBlender->quitBlender();
|
|
|
|
m_backgroundBlender = std::experimental::nullopt;
|
|
|
|
}
|
|
|
|
Log.report(logvisor::Info, _S("Background index of '%s' complete; %d tags, %d names"),
|
|
|
|
m_origSpec->m_name, m_tagToPath.size(), m_catalogNameToTag.size());
|
2016-03-26 00:51:59 +00:00
|
|
|
m_backgroundRunning = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectResourceFactoryBase::CancelBackgroundIndex()
|
|
|
|
{
|
2016-03-28 22:39:56 +00:00
|
|
|
m_backgroundRunning = false;
|
|
|
|
if (m_backgroundIndexTh.joinable())
|
|
|
|
m_backgroundIndexTh.join();
|
2016-03-26 00:51:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectResourceFactoryBase::BeginBackgroundIndex
|
2016-03-28 04:36:55 +00:00
|
|
|
(hecl::Database::Project& proj,
|
2016-03-26 00:51:59 +00:00
|
|
|
const hecl::Database::DataSpecEntry& origSpec,
|
|
|
|
const hecl::Database::DataSpecEntry& pcSpec)
|
|
|
|
{
|
|
|
|
CancelBackgroundIndex();
|
|
|
|
Clear();
|
|
|
|
m_proj = &proj;
|
|
|
|
m_origSpec = &origSpec;
|
|
|
|
m_pcSpec = &pcSpec;
|
2016-03-28 04:36:55 +00:00
|
|
|
m_cookSpec.reset(pcSpec.m_factory(proj, hecl::Database::DataSpecTool::Cook));
|
2016-03-26 00:51:59 +00:00
|
|
|
m_backgroundRunning = true;
|
|
|
|
m_backgroundIndexTh =
|
|
|
|
std::thread(std::bind(&ProjectResourceFactoryBase::BackgroundIndexProc, this));
|
|
|
|
}
|
|
|
|
|
2016-03-28 04:36:55 +00:00
|
|
|
hecl::ProjectPath ProjectResourceFactoryBase::GetCookedPath(const hecl::ProjectPath& working,
|
|
|
|
bool pcTarget) const
|
|
|
|
{
|
|
|
|
const hecl::Database::DataSpecEntry* spec = m_origSpec;
|
|
|
|
if (pcTarget)
|
2016-03-28 22:39:56 +00:00
|
|
|
spec = m_cookSpec->overrideDataSpec(working, m_pcSpec, hecl::SharedBlenderToken);
|
2016-03-28 04:36:55 +00:00
|
|
|
if (!spec)
|
|
|
|
return {};
|
|
|
|
return working.getCookedPath(*spec);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectResourceFactoryBase::SyncCook(const hecl::ProjectPath& working)
|
|
|
|
{
|
2016-03-28 22:39:56 +00:00
|
|
|
return m_clientProc.syncCook(working, m_cookSpec.get(), hecl::SharedBlenderToken);
|
2016-03-28 04:36:55 +00:00
|
|
|
}
|
|
|
|
|
2016-03-29 23:14:14 +00:00
|
|
|
CFactoryFnReturn ProjectResourceFactoryBase::BuildSync(const SObjectTag& tag,
|
|
|
|
const hecl::ProjectPath& path,
|
|
|
|
const CVParamTransfer& paramXfer)
|
2016-03-26 00:51:59 +00:00
|
|
|
{
|
|
|
|
/* Ensure requested resource is on the filesystem */
|
|
|
|
if (path.getPathType() != hecl::ProjectPath::Type::File)
|
|
|
|
{
|
|
|
|
Log.report(logvisor::Error, _S("unable to find resource path '%s'"),
|
|
|
|
path.getAbsolutePath().c_str());
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get cooked representation path */
|
2016-03-28 04:36:55 +00:00
|
|
|
hecl::ProjectPath cooked = GetCookedPath(path, true);
|
2016-03-26 00:51:59 +00:00
|
|
|
|
|
|
|
/* Perform mod-time comparison */
|
|
|
|
if (cooked.getPathType() != hecl::ProjectPath::Type::File ||
|
|
|
|
cooked.getModtime() < path.getModtime())
|
|
|
|
{
|
2016-03-28 04:36:55 +00:00
|
|
|
/* Do a blocking cook here */
|
|
|
|
if (!SyncCook(path))
|
2016-03-26 00:51:59 +00:00
|
|
|
{
|
|
|
|
Log.report(logvisor::Error, _S("unable to cook resource path '%s'"),
|
|
|
|
path.getAbsolutePath().c_str());
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure cooked rep is on the filesystem */
|
|
|
|
athena::io::FileReader fr(cooked.getAbsolutePath(), 32 * 1024, false);
|
|
|
|
if (fr.hasError())
|
|
|
|
{
|
|
|
|
Log.report(logvisor::Error, _S("unable to open cooked resource path '%s'"),
|
|
|
|
cooked.getAbsolutePath().c_str());
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All good, build resource */
|
2016-03-29 23:14:14 +00:00
|
|
|
if (m_factoryMgr.CanMakeMemory(tag))
|
|
|
|
{
|
|
|
|
u32 length = fr.length();
|
|
|
|
std::unique_ptr<u8[]> memBuf = fr.readUBytes(length);
|
|
|
|
return m_factoryMgr.MakeObjectFromMemory(tag, std::move(memBuf), length, false, paramXfer);
|
|
|
|
}
|
|
|
|
|
2016-03-26 00:51:59 +00:00
|
|
|
return m_factoryMgr.MakeObject(tag, fr, paramXfer);
|
|
|
|
}
|
|
|
|
|
2016-03-28 04:36:55 +00:00
|
|
|
void ProjectResourceFactoryBase::AsyncTask::EnsurePath(const hecl::ProjectPath& path)
|
|
|
|
{
|
|
|
|
if (!m_workingPath)
|
|
|
|
{
|
|
|
|
m_workingPath = path;
|
|
|
|
|
|
|
|
/* Ensure requested resource is on the filesystem */
|
|
|
|
if (path.getPathType() != hecl::ProjectPath::Type::File)
|
|
|
|
{
|
|
|
|
Log.report(logvisor::Error, _S("unable to find resource path '%s'"),
|
|
|
|
path.getAbsolutePath().c_str());
|
|
|
|
m_failed = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get cooked representation path */
|
|
|
|
m_cookedPath = m_parent.GetCookedPath(path, true);
|
|
|
|
|
|
|
|
/* Perform mod-time comparison */
|
|
|
|
if (m_cookedPath.getPathType() != hecl::ProjectPath::Type::File ||
|
|
|
|
m_cookedPath.getModtime() < path.getModtime())
|
|
|
|
{
|
|
|
|
/* Start a background cook here */
|
2016-03-28 22:39:56 +00:00
|
|
|
m_cookTransaction = m_parent.m_clientProc.addCookTransaction(path, m_parent.m_cookSpec.get());
|
2016-03-28 04:36:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CookComplete();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectResourceFactoryBase::AsyncTask::CookComplete()
|
|
|
|
{
|
|
|
|
/* Ensure cooked rep is on the filesystem */
|
|
|
|
athena::io::FileReader fr(m_cookedPath.getAbsolutePath(), 32 * 1024, false);
|
|
|
|
if (fr.hasError())
|
|
|
|
{
|
|
|
|
Log.report(logvisor::Error, _S("unable to open cooked resource path '%s'"),
|
|
|
|
m_cookedPath.getAbsolutePath().c_str());
|
|
|
|
m_failed = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ready for buffer transaction at this point */
|
|
|
|
x14_resSize = fr.length();
|
|
|
|
x10_loadBuffer.reset(new u8[x14_resSize]);
|
|
|
|
m_bufTransaction = m_parent.m_clientProc.addBufferTransaction(m_cookedPath,
|
|
|
|
x10_loadBuffer.get(),
|
|
|
|
x14_resSize, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectResourceFactoryBase::AsyncTask::AsyncPump()
|
|
|
|
{
|
|
|
|
if (m_failed)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (m_bufTransaction)
|
|
|
|
{
|
|
|
|
if (m_bufTransaction->m_complete)
|
2016-03-28 21:38:48 +00:00
|
|
|
{
|
|
|
|
m_complete = true;
|
2016-03-28 04:36:55 +00:00
|
|
|
return true;
|
2016-03-28 21:38:48 +00:00
|
|
|
}
|
2016-03-28 04:36:55 +00:00
|
|
|
}
|
|
|
|
else if (m_cookTransaction)
|
|
|
|
{
|
|
|
|
if (m_cookTransaction->m_complete)
|
|
|
|
CookComplete();
|
|
|
|
}
|
|
|
|
|
|
|
|
return m_failed;
|
|
|
|
}
|
|
|
|
|
2016-03-26 00:51:59 +00:00
|
|
|
std::unique_ptr<urde::IObj> ProjectResourceFactoryBase::Build(const urde::SObjectTag& tag,
|
|
|
|
const urde::CVParamTransfer& paramXfer)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_backgroundIndexMutex);
|
|
|
|
auto search = m_tagToPath.find(tag);
|
|
|
|
if (search == m_tagToPath.end())
|
|
|
|
{
|
|
|
|
if (m_backgroundRunning)
|
|
|
|
{
|
|
|
|
while (m_backgroundRunning)
|
|
|
|
{
|
|
|
|
lk.unlock();
|
|
|
|
lk.lock();
|
|
|
|
search = m_tagToPath.find(tag);
|
|
|
|
if (search != m_tagToPath.end())
|
|
|
|
break;
|
|
|
|
}
|
2016-03-28 21:38:48 +00:00
|
|
|
if (search == m_tagToPath.end())
|
|
|
|
return {};
|
2016-03-26 00:51:59 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2016-03-29 23:14:14 +00:00
|
|
|
return BuildSync(tag, search->second, paramXfer);
|
2016-03-26 00:51:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectResourceFactoryBase::BuildAsync(const urde::SObjectTag& tag,
|
|
|
|
const urde::CVParamTransfer& paramXfer,
|
|
|
|
urde::IObj** objOut)
|
|
|
|
{
|
|
|
|
if (m_asyncLoadList.find(tag) != m_asyncLoadList.end())
|
|
|
|
return;
|
2016-03-28 04:36:55 +00:00
|
|
|
m_asyncLoadList.emplace(std::make_pair(tag, AsyncTask(*this, tag, objOut, paramXfer)));
|
2016-03-26 00:51:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectResourceFactoryBase::CancelBuild(const urde::SObjectTag& tag)
|
|
|
|
{
|
|
|
|
m_asyncLoadList.erase(tag);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ProjectResourceFactoryBase::CanBuild(const urde::SObjectTag& tag)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(m_backgroundIndexMutex);
|
|
|
|
auto search = m_tagToPath.find(tag);
|
|
|
|
if (search == m_tagToPath.end())
|
|
|
|
{
|
|
|
|
if (m_backgroundRunning)
|
|
|
|
{
|
|
|
|
while (m_backgroundRunning)
|
|
|
|
{
|
|
|
|
lk.unlock();
|
|
|
|
lk.lock();
|
|
|
|
search = m_tagToPath.find(tag);
|
|
|
|
if (search != m_tagToPath.end())
|
|
|
|
break;
|
|
|
|
}
|
2016-03-28 21:38:48 +00:00
|
|
|
if (search == m_tagToPath.end())
|
|
|
|
return false;
|
2016-03-26 00:51:59 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (search->second.getPathType() == hecl::ProjectPath::Type::File)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const urde::SObjectTag* ProjectResourceFactoryBase::GetResourceIdByName(const char* name) const
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lk(((ProjectResourceFactoryBase*)this)->m_backgroundIndexMutex);
|
|
|
|
auto search = m_catalogNameToTag.find(name);
|
|
|
|
if (search == m_catalogNameToTag.end())
|
|
|
|
{
|
|
|
|
if (m_backgroundRunning)
|
|
|
|
{
|
|
|
|
while (m_backgroundRunning)
|
|
|
|
{
|
|
|
|
lk.unlock();
|
|
|
|
lk.lock();
|
|
|
|
search = m_catalogNameToTag.find(name);
|
|
|
|
if (search != m_catalogNameToTag.end())
|
|
|
|
break;
|
|
|
|
}
|
2016-03-28 21:38:48 +00:00
|
|
|
if (search == m_catalogNameToTag.end())
|
|
|
|
return nullptr;
|
2016-03-26 00:51:59 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return &search->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ProjectResourceFactoryBase::AsyncIdle()
|
|
|
|
{
|
2016-03-28 04:36:55 +00:00
|
|
|
/* Consume completed transactions, they will be processed this cycle at the latest */
|
|
|
|
std::list<std::unique_ptr<hecl::ClientProcess::Transaction>> completed;
|
|
|
|
m_clientProc.swapCompletedQueue(completed);
|
|
|
|
|
|
|
|
/* Begin self-profiling loop */
|
2016-03-26 00:51:59 +00:00
|
|
|
std::chrono::steady_clock::time_point start = std::chrono::steady_clock::now();
|
2016-03-28 04:36:55 +00:00
|
|
|
for (auto it=m_asyncLoadList.begin() ; it != m_asyncLoadList.end() ;)
|
2016-03-26 00:51:59 +00:00
|
|
|
{
|
|
|
|
/* Allow 8 milliseconds (roughly 1/2 frame-time) for each async build cycle */
|
|
|
|
if (std::chrono::duration_cast<std::chrono::milliseconds>(
|
|
|
|
std::chrono::steady_clock::now() - start).count() > 8)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Ensure requested resource is in the index */
|
|
|
|
std::unique_lock<std::mutex> lk(m_backgroundIndexMutex);
|
2016-03-28 21:38:48 +00:00
|
|
|
AsyncTask& task = it->second;
|
|
|
|
auto search = m_tagToPath.find(task.x0_tag);
|
2016-03-26 00:51:59 +00:00
|
|
|
if (search == m_tagToPath.end())
|
|
|
|
{
|
|
|
|
if (!m_backgroundRunning)
|
|
|
|
{
|
|
|
|
Log.report(logvisor::Error, _S("unable to find async load resource (%s, %08X)"),
|
2016-03-28 21:38:48 +00:00
|
|
|
task.x0_tag.type.toString().c_str(), task.x0_tag.id);
|
2016-03-26 00:51:59 +00:00
|
|
|
it = m_asyncLoadList.erase(it);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2016-03-28 21:38:48 +00:00
|
|
|
task.EnsurePath(search->second);
|
2016-03-26 00:51:59 +00:00
|
|
|
|
2016-03-28 04:36:55 +00:00
|
|
|
/* Pump load pipeline (cooking if needed) */
|
2016-03-28 21:38:48 +00:00
|
|
|
if (task.AsyncPump())
|
2016-03-28 04:36:55 +00:00
|
|
|
{
|
2016-03-28 21:38:48 +00:00
|
|
|
if (task.m_complete)
|
|
|
|
{
|
|
|
|
/* Load complete, build resource */
|
|
|
|
athena::io::MemoryReader mr(task.x10_loadBuffer.get(), task.x14_resSize);
|
|
|
|
*task.xc_targetPtr = m_factoryMgr.MakeObject(task.x0_tag, mr, task.x18_cvXfer).release();
|
|
|
|
}
|
2016-03-28 04:36:55 +00:00
|
|
|
it = m_asyncLoadList.erase(it);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
++it;
|
2016-03-26 00:51:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|