metaforce/hecl/driver/ToolPackage.hpp

181 lines
6.9 KiB
C++
Raw Normal View History

2018-10-07 03:38:44 +00:00
#pragma once
2015-06-10 02:40:03 +00:00
#include <vector>
#include <string>
#include "ToolBase.hpp"
2017-12-29 07:56:31 +00:00
#include <cstdio>
2015-06-10 02:40:03 +00:00
2018-12-08 05:18:42 +00:00
class ToolPackage final : public ToolBase {
std::vector<hecl::ProjectPath> m_selectedItems;
std::unique_ptr<hecl::Database::Project> m_fallbackProj;
hecl::Database::Project* m_useProj;
const hecl::Database::DataSpecEntry* m_spec = nullptr;
bool m_fast = false;
void AddSelectedItem(const hecl::ProjectPath& path) {
for (const hecl::ProjectPath& item : m_selectedItems)
if (item == path)
return;
m_selectedItems.push_back(path);
}
void CheckFile(const hecl::ProjectPath& path) {
2019-10-01 07:23:35 +00:00
auto lastComp = path.getLastComponent();
if (hecl::StringUtils::BeginsWith(lastComp, _SYS_STR("!world_")) &&
hecl::StringUtils::EndsWith(lastComp, _SYS_STR(".blend")))
2018-12-08 05:18:42 +00:00
AddSelectedItem(path);
}
2017-10-27 10:10:08 +00:00
2018-12-08 05:18:42 +00:00
void FindSelectedItems(const hecl::ProjectPath& path, bool checkGeneral) {
if (path.isFile()) {
CheckFile(path);
return;
}
2017-10-25 07:46:32 +00:00
2018-12-08 05:18:42 +00:00
size_t origSize = m_selectedItems.size();
hecl::DirectoryEnumerator dEnum(path.getAbsolutePath(), hecl::DirectoryEnumerator::Mode::DirsThenFilesSorted, false,
false, true);
for (const auto& ent : dEnum) {
hecl::ProjectPath childPath(path, ent.m_name);
if (ent.m_isDir)
FindSelectedItems(childPath, checkGeneral && childPath.getPathComponents().size() <= 2);
else
CheckFile(childPath);
}
2017-10-25 07:46:32 +00:00
2018-12-08 05:18:42 +00:00
/* Directory with 2 components not "Shared" or macOS app bundle
* and no nested !world.blend files == General PAK */
if (checkGeneral && origSize == m_selectedItems.size()) {
auto pathComps = path.getPathComponents();
if (pathComps.size() == 2 && pathComps[0] != _SYS_STR("out") && pathComps[1] != _SYS_STR("Shared") &&
pathComps[0].find(_SYS_STR(".app")) == hecl::SystemString::npos)
AddSelectedItem(path);
2017-10-25 07:46:32 +00:00
}
2018-12-08 05:18:42 +00:00
}
2017-10-25 07:46:32 +00:00
2015-06-10 02:40:03 +00:00
public:
explicit ToolPackage(const ToolPassInfo& info) : ToolBase(info), m_useProj(info.project) {
2018-12-08 05:18:42 +00:00
if (!info.project)
2019-07-20 04:22:58 +00:00
LogModule.report(logvisor::Fatal, fmt("hecl package must be ran within a project directory"));
2018-12-08 05:18:42 +00:00
/* Scan args */
if (info.args.size()) {
/* See if project path is supplied via args and use that over the getcwd one */
m_selectedItems.reserve(info.args.size());
for (const hecl::SystemString& arg : info.args) {
if (arg.empty())
continue;
2019-10-01 07:23:35 +00:00
else if (arg == _SYS_STR("--fast")) {
2018-12-08 05:18:42 +00:00
m_fast = true;
continue;
} else if (arg.size() >= 8 && !arg.compare(0, 7, _SYS_STR("--spec="))) {
hecl::SystemString specName(arg.begin() + 7, arg.end());
for (const hecl::Database::DataSpecEntry* spec : hecl::Database::DATA_SPEC_REGISTRY) {
if (!hecl::StrCaseCmp(spec->m_name.data(), specName.c_str())) {
m_spec = spec;
break;
2017-10-25 07:46:32 +00:00
}
2018-12-08 05:18:42 +00:00
}
if (!m_spec)
2019-07-28 01:19:48 +00:00
LogModule.report(logvisor::Fatal, fmt(_SYS_STR("unable to find data spec '{}'")), specName);
2018-12-08 05:18:42 +00:00
continue;
} else if (arg.size() >= 2 && arg[0] == _SYS_STR('-') && arg[1] == _SYS_STR('-'))
continue;
hecl::SystemString subPath;
hecl::ProjectRootPath root = hecl::SearchForProject(MakePathArgAbsolute(arg, info.cwd), subPath);
if (root) {
if (!m_fallbackProj) {
m_fallbackProj.reset(new hecl::Database::Project(root));
m_useProj = m_fallbackProj.get();
} else if (m_fallbackProj->getProjectRootPath() != root)
2017-10-25 07:46:32 +00:00
LogModule.report(logvisor::Fatal,
2019-07-20 04:22:58 +00:00
fmt(_SYS_STR("hecl package can only process multiple items in the same project; ")
_SYS_STR("'{}' and '{}' are different projects")),
m_fallbackProj->getProjectRootPath().getAbsolutePath(),
root.getAbsolutePath());
2017-10-25 07:46:32 +00:00
2018-12-08 05:18:42 +00:00
FindSelectedItems({*m_useProj, subPath}, true);
}
}
2015-06-10 02:40:03 +00:00
}
2018-12-08 05:18:42 +00:00
if (!m_useProj)
LogModule.report(logvisor::Fatal,
2019-07-20 04:22:58 +00:00
fmt("hecl package must be ran within a project directory or "
"provided a path within a project"));
2018-12-08 05:18:42 +00:00
/* Default case: recursive at root */
if (m_selectedItems.empty())
FindSelectedItems({*m_useProj, _SYS_STR("")}, true);
}
static void Help(HelpOutput& help) {
help.secHead(_SYS_STR("NAME"));
help.beginWrap();
help.wrap(_SYS_STR("hecl-pack\n") _SYS_STR("hecl-package - Package objects within the project database\n"));
help.endWrap();
help.secHead(_SYS_STR("SYNOPSIS"));
help.beginWrap();
help.wrap(_SYS_STR("hecl package [--spec=<spec>] [<input-dir>]\n"));
help.endWrap();
help.secHead(_SYS_STR("DESCRIPTION"));
help.beginWrap();
help.wrap(_SYS_STR("This command initiates a packaging pass on the project database. Packaging ")
_SYS_STR("is analogous to linking in software development. All objects necessary to ") _SYS_STR(
"generate a complete package are gathered, grouped, and indexed within a .upak file.\n"));
help.endWrap();
help.secHead(_SYS_STR("OPTIONS"));
help.optionHead(_SYS_STR("--spec=<spec>"), _SYS_STR("data specification"));
help.beginWrap();
help.wrap(_SYS_STR("Specifies a DataSpec to use when cooking and generating the package. ")
2018-10-14 20:09:15 +00:00
_SYS_STR("This build of hecl supports the following values of <spec>:\n"));
2018-12-08 05:18:42 +00:00
for (const hecl::Database::DataSpecEntry* spec : hecl::Database::DATA_SPEC_REGISTRY) {
if (!spec->m_factory)
continue;
help.wrap(_SYS_STR(" "));
help.wrapBold(spec->m_name.data());
help.wrap(_SYS_STR("\n"));
}
help.endWrap();
2015-06-10 02:40:03 +00:00
2018-12-08 05:18:42 +00:00
help.secHead(_SYS_STR("OPTIONS"));
help.optionHead(_SYS_STR("<input-dir>"), _SYS_STR("input directory"));
help.beginWrap();
help.wrap(_SYS_STR("Specifies a project subdirectory to root the resulting package from. ")
2018-10-14 20:09:15 +00:00
_SYS_STR("If any dependent files fall outside this subdirectory, they will be implicitly ")
2018-12-08 05:18:42 +00:00
_SYS_STR("gathered and packaged.\n"));
help.endWrap();
}
2020-04-10 03:19:33 +00:00
hecl::SystemStringView toolName() const override { return _SYS_STR("package"sv); }
2018-12-08 05:18:42 +00:00
int run() override {
2018-12-08 05:18:42 +00:00
if (XTERM_COLOR)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("" GREEN BOLD "ABOUT TO PACKAGE:" NORMAL "\n")));
2018-12-08 05:18:42 +00:00
else
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("ABOUT TO PACKAGE:\n")));
2018-12-08 05:18:42 +00:00
for (auto& item : m_selectedItems)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR(" {}\n")), item.getRelativePath());
2018-12-08 05:18:42 +00:00
fflush(stdout);
if (continuePrompt()) {
hecl::MultiProgressPrinter printer(true);
hecl::ClientProcess cp(&printer);
for (const hecl::ProjectPath& path : m_selectedItems) {
if (!m_useProj->packagePath(path, printer, m_fast, m_spec, &cp))
2019-07-20 04:22:58 +00:00
LogModule.report(logvisor::Error, fmt(_SYS_STR("Unable to package {}")), path.getAbsolutePath());
2018-12-08 05:18:42 +00:00
}
cp.waitUntilComplete();
2015-06-10 02:40:03 +00:00
}
2018-12-08 05:18:42 +00:00
return 0;
}
void cancel() override { m_useProj->interruptCook(); }
2015-06-10 02:40:03 +00:00
};