metaforce/hecl/driver/main.cpp

277 lines
7.6 KiB
C++
Raw Normal View History

2015-07-22 12:14:50 -07:00
#if _WIN32
#define WIN_PAUSE 1
#endif
2015-05-15 15:39:43 -07:00
#include <stdio.h>
#include <string.h>
2015-05-25 21:42:20 -07:00
#include <stdlib.h>
2015-07-25 19:52:02 -07:00
#include <stdarg.h>
2015-08-16 16:01:35 -07:00
#include <signal.h>
2015-05-19 22:22:32 -07:00
#include <regex>
2015-05-25 21:42:20 -07:00
#include <list>
#include "HECL/Database.hpp"
2015-07-27 19:25:33 -07:00
#include "../blender/BlenderConnection.hpp"
2015-07-04 23:27:24 -07:00
#include "LogVisor/LogVisor.hpp"
LogVisor::LogModule LogModule("HECLDriver");
2015-05-16 21:55:29 -07:00
2015-06-09 19:40:03 -07:00
#include "ToolBase.hpp"
#include "ToolInit.hpp"
#include "ToolSpec.hpp"
2015-06-12 02:08:49 -07:00
#include "ToolExtract.hpp"
2015-06-09 19:40:03 -07:00
#include "ToolAdd.hpp"
#include "ToolRemove.hpp"
#include "ToolGroup.hpp"
#include "ToolCook.hpp"
#include "ToolClean.hpp"
#include "ToolPackage.hpp"
#include "ToolHelp.hpp"
2015-05-15 15:39:43 -07:00
2015-07-25 16:01:02 -07:00
/* Static reference to dataspec additions
* (used by MSVC to definitively link DataSpecs) */
2015-07-22 12:14:50 -07:00
#include "../DataSpecRegistry.hpp"
2015-05-25 21:42:20 -07:00
bool XTERM_COLOR = false;
2015-07-04 23:27:24 -07:00
2015-06-11 02:41:10 -07:00
/*
2015-06-09 19:40:03 -07:00
#define HECL_GIT 1234567
#define HECL_GIT_S "1234567"
#define HECL_BRANCH master
#define HECL_BRANCH_S "master"
2015-06-11 02:41:10 -07:00
*/
2015-06-09 19:40:03 -07:00
2015-05-19 22:22:32 -07:00
/* Main usage message */
2015-06-09 19:40:03 -07:00
static void printHelp(const HECL::SystemChar* pname)
2015-05-15 15:39:43 -07:00
{
2015-07-22 12:14:50 -07:00
#if _WIN32
HECL::Printf(_S("HECL"));
#else
2015-05-25 21:42:20 -07:00
if (XTERM_COLOR)
2015-06-09 19:40:03 -07:00
HECL::Printf(_S("" BOLD "HECL" NORMAL ""));
2015-05-25 21:42:20 -07:00
else
2015-06-09 19:40:03 -07:00
HECL::Printf(_S("HECL"));
2015-07-22 12:14:50 -07:00
#endif
2015-05-19 22:22:32 -07:00
#if HECL_GIT
2015-06-09 19:40:03 -07:00
HECL::Printf(_S(" Commit " HECL_GIT_S " " HECL_BRANCH_S "\nUsage: %s init|add|remove|group|cook|clean|package|help\n"), pname);
2015-05-19 22:22:32 -07:00
#elif HECL_VER
2015-06-09 19:40:03 -07:00
HECL::Printf(_S(" Version " HECL_VER_S "\nUsage: %s init|add|remove|group|cook|clean|package|help\n"), pname);
2015-05-19 22:22:32 -07:00
#else
2015-06-09 19:40:03 -07:00
HECL::Printf(_S("\nUsage: %s init|add|remove|group|cook|clean|package|help\n"), pname);
2015-05-19 22:22:32 -07:00
#endif
}
/* Regex patterns */
static const HECL::SystemRegex regOPEN(_S("-o([^\"]*|\\S*)"), std::regex::ECMAScript|std::regex::optimize);
2015-06-09 19:40:03 -07:00
static const HECL::SystemRegex regVERBOSE(_S("-v(v*)"), std::regex::ECMAScript|std::regex::optimize);
static const HECL::SystemRegex regFORCE(_S("-f"), std::regex::ECMAScript|std::regex::optimize);
2015-08-16 16:01:35 -07:00
/* SIGINT will gracefully close blender connections and delete blends in progress */
static void SIGINTHandler(int sig)
{
HECL::BlenderConnection::Shutdown();
exit(1);
}
2015-07-25 19:52:02 -07:00
static LogVisor::LogModule AthenaLog("Athena");
static void AthenaExc(const Athena::error::Level& level, const char* file,
const char*, int line, const char* fmt, ...)
{
va_list ap;
va_start(ap, fmt);
2015-07-27 19:25:33 -07:00
AthenaLog.reportSource(LogVisor::Level(level), file, line, fmt, ap);
2015-07-25 19:52:02 -07:00
va_end(ap);
}
2015-06-09 19:40:03 -07:00
#if HECL_UCS2
int wmain(int argc, const wchar_t** argv)
#else
int main(int argc, const char** argv)
2015-06-09 19:40:03 -07:00
#endif
{
2015-05-25 21:42:20 -07:00
/* Xterm check */
const char* term = getenv("TERM");
if (term && !strncmp(term, "xterm", 5))
2015-05-25 21:42:20 -07:00
XTERM_COLOR = true;
2015-08-16 16:01:35 -07:00
signal(SIGINT, SIGINTHandler);
LogVisor::RegisterConsoleLogger();
2015-07-25 19:52:02 -07:00
atSetExceptionHandler(AthenaExc);
2015-05-19 22:22:32 -07:00
/* Basic usage check */
if (argc == 1)
{
printHelp(argv[0]);
2015-07-22 12:14:50 -07:00
#if WIN_PAUSE
system("PAUSE");
#endif
return 0;
}
else if (argc == 0)
{
2015-06-09 19:40:03 -07:00
printHelp(_S("hecl"));
2015-07-22 12:14:50 -07:00
#if WIN_PAUSE
system("PAUSE");
#endif
return 0;
}
/* Prepare DataSpecs */
HECLRegisterDataSpecs();
2015-05-19 22:22:32 -07:00
/* Assemble common tool pass info */
2015-06-09 19:40:03 -07:00
ToolPassInfo info;
2015-05-19 22:22:32 -07:00
info.pname = argv[0];
2015-07-22 12:14:50 -07:00
HECL::SystemChar cwdbuf[1024];
if (HECL::Getcwd(cwdbuf, 1024))
2015-05-27 02:09:05 -07:00
info.cwd = cwdbuf;
2015-05-19 22:22:32 -07:00
/* Concatenate args */
2015-06-09 19:40:03 -07:00
std::list<HECL::SystemString> args;
2015-05-19 22:22:32 -07:00
for (int i=2 ; i<argc ; ++i)
2015-06-09 19:40:03 -07:00
args.push_back(HECL::SystemString(argv[i]));
2015-05-19 22:22:32 -07:00
if (!args.empty())
{
/* Extract output argument */
2015-06-09 19:40:03 -07:00
for (std::list<HECL::SystemString>::const_iterator it = args.begin() ; it != args.end() ;)
2015-05-19 22:22:32 -07:00
{
2015-06-09 19:40:03 -07:00
const HECL::SystemString& arg = *it;
HECL::SystemRegexMatch oMatch;
2015-05-25 21:42:20 -07:00
if (std::regex_search(arg, oMatch, regOPEN))
{
2015-06-09 19:40:03 -07:00
const HECL::SystemString& token = oMatch[1].str();
2015-05-25 21:42:20 -07:00
if (token.size())
{
if (info.output.empty())
info.output = oMatch[1].str();
it = args.erase(it);
}
else
{
it = args.erase(it);
if (it == args.end())
break;
if (info.output.empty())
info.output = *it;
it = args.erase(it);
}
continue;
}
++it;
2015-05-19 22:22:32 -07:00
}
/* Count verbosity */
2015-06-09 19:40:03 -07:00
for (std::list<HECL::SystemString>::const_iterator it = args.begin() ; it != args.end() ;)
2015-05-19 22:22:32 -07:00
{
2015-06-09 19:40:03 -07:00
const HECL::SystemString& arg = *it;
HECL::SystemRegexMatch vMatch;
2015-05-25 21:42:20 -07:00
if (std::regex_search(arg, vMatch, regVERBOSE))
{
++info.verbosityLevel;
info.verbosityLevel += vMatch[1].str().size();
it = args.erase(it);
continue;
}
++it;
2015-05-19 22:22:32 -07:00
}
/* Check force argument */
2015-06-09 19:40:03 -07:00
for (std::list<HECL::SystemString>::const_iterator it = args.begin() ; it != args.end() ;)
2015-05-19 22:22:32 -07:00
{
2015-06-09 19:40:03 -07:00
const HECL::SystemString& arg = *it;
2015-05-25 21:42:20 -07:00
if (std::regex_search(arg, regFORCE))
{
info.force = true;
it = args.erase(it);
continue;
}
++it;
2015-05-19 22:22:32 -07:00
}
/* Gather remaining args */
2015-06-09 19:40:03 -07:00
for (const HECL::SystemString& arg : args)
2015-05-25 21:42:20 -07:00
info.args.push_back(arg);
2015-05-19 22:22:32 -07:00
}
2015-06-10 21:55:06 -07:00
/* Attempt to find hecl project */
2015-06-11 21:02:23 -07:00
std::unique_ptr<HECL::ProjectRootPath> rootPath = HECL::SearchForProject(info.cwd);
2015-06-10 21:55:06 -07:00
std::unique_ptr<HECL::Database::Project> project;
2015-06-11 14:04:15 -07:00
if (rootPath.get())
2015-06-10 21:55:06 -07:00
{
2015-07-25 19:52:02 -07:00
size_t ErrorRef = LogVisor::ErrorCount;
HECL::Database::Project* newProj = new HECL::Database::Project(*rootPath);
if (LogVisor::ErrorCount > ErrorRef)
2015-06-10 21:55:06 -07:00
{
2015-07-22 12:14:50 -07:00
#if WIN_PAUSE
system("PAUSE");
#endif
2015-07-25 19:52:02 -07:00
delete newProj;
2015-06-10 21:55:06 -07:00
return -1;
}
2015-07-25 19:52:02 -07:00
project.reset(newProj);
info.project = newProj;
2015-06-10 21:55:06 -07:00
}
2015-05-19 22:22:32 -07:00
/* Construct selected tool */
2015-06-09 19:40:03 -07:00
HECL::SystemString toolName(argv[1]);
2015-06-10 21:55:06 -07:00
HECL::ToLower(toolName);
std::unique_ptr<ToolBase> tool;
2015-07-25 19:52:02 -07:00
size_t ErrorRef = LogVisor::ErrorCount;
if (toolName == _S("init"))
tool.reset(new ToolInit(info));
else if (toolName == _S("spec"))
tool.reset(new ToolSpec(info));
else if (toolName == _S("extract"))
tool.reset(new ToolExtract(info));
else if (toolName == _S("add"))
tool.reset(new ToolAdd(info));
else if (toolName == _S("remove") || toolName == _S("rm"))
tool.reset(new ToolRemove(info));
else if (toolName == _S("group"))
tool.reset(new ToolGroup(info));
else if (toolName == _S("cook"))
tool.reset(new ToolCook(info));
else if (toolName == _S("clean"))
tool.reset(new ToolClean(info));
else if (toolName == _S("package") || toolName == _S("pack"))
tool.reset(new ToolPackage(info));
else if (toolName == _S("help"))
tool.reset(new ToolHelp(info));
else
LogModule.report(LogVisor::Error, _S("unrecognized tool '%s'"), toolName.c_str());
if (LogVisor::ErrorCount > ErrorRef)
2015-05-19 22:22:32 -07:00
{
2015-07-22 12:14:50 -07:00
#if WIN_PAUSE
system("PAUSE");
2015-07-15 19:03:38 -07:00
#endif
2015-05-19 22:22:32 -07:00
return -1;
}
if (info.verbosityLevel)
2015-07-04 23:27:24 -07:00
LogModule.report(LogVisor::Info, _S("Constructed tool '%s' %d\n"),
tool->toolName().c_str(), info.verbosityLevel);
2015-05-19 22:22:32 -07:00
/* Run tool */
2015-07-25 19:52:02 -07:00
ErrorRef = LogVisor::ErrorCount;
int retval = tool->run();
if (LogVisor::ErrorCount > ErrorRef)
2015-05-19 22:22:32 -07:00
{
2015-07-27 19:25:33 -07:00
HECL::BlenderConnection::Shutdown();
2015-07-22 12:14:50 -07:00
#if WIN_PAUSE
system("PAUSE");
2015-07-15 19:03:38 -07:00
#endif
2015-05-19 22:22:32 -07:00
return -1;
}
2015-07-27 19:25:33 -07:00
HECL::BlenderConnection::Shutdown();
2015-07-22 12:14:50 -07:00
#if WIN_PAUSE
system("PAUSE");
#endif
2015-05-19 22:22:32 -07:00
return retval;
2015-05-15 15:39:43 -07:00
}