metaforce/hecl/driver/ToolInit.hpp

91 lines
2.5 KiB
C++
Raw Normal View History

2015-06-10 02:40:03 +00:00
#ifndef CTOOL_INIT
#define CTOOL_INIT
#include "ToolBase.hpp"
#include <stdio.h>
class ToolInit final : public ToolBase
{
const HECL::SystemString* m_dir = NULL;
public:
ToolInit(const ToolPassInfo& info)
: ToolBase(info)
{
2015-06-11 09:41:10 +00:00
struct stat theStat;
const HECL::SystemString* dir;
2015-06-10 02:40:03 +00:00
if (info.args.size())
2015-06-11 09:41:10 +00:00
dir = &info.args[0];
else
dir = &info.cwd;
if (HECL::Stat(dir->c_str(), &theStat))
{
throw HECL::Exception(_S("unable to stat '") + *dir + _S("'"));
return;
}
if (!S_ISDIR(theStat.st_mode))
2015-06-10 02:40:03 +00:00
{
2015-06-11 09:41:10 +00:00
throw HECL::Exception(_S("'") + *dir + _S("' is not a directory"));
return;
}
2015-06-10 02:40:03 +00:00
2015-06-12 04:02:23 +00:00
HECL::SystemString testPath = *dir + _S("/.hecl/beacon");
2015-06-11 09:41:10 +00:00
if (!HECL::Stat(testPath.c_str(), &theStat))
{
throw HECL::Exception(_S("project already exists at '") + *dir + _S("'"));
return;
2015-06-10 02:40:03 +00:00
}
2015-06-11 09:41:10 +00:00
m_dir = dir;
2015-06-10 02:40:03 +00:00
}
int run()
{
2015-06-11 09:41:10 +00:00
if (!m_dir)
return -1;
try
{
2015-06-12 09:08:49 +00:00
HECL::Database::Project proj((HECL::ProjectRootPath(*m_dir)));
proj.enableDataSpecs({_S("hecl-little")});
2015-06-11 09:41:10 +00:00
}
catch (HECL::Exception& e)
{
2015-07-05 06:27:24 +00:00
LogModule.report(LogVisor::Error, _S("unable to init project: '%s'\n"), e.swhat());
2015-06-11 09:41:10 +00:00
return -1;
}
2015-07-05 06:27:24 +00:00
LogModule.report(LogVisor::Info, _S("initialized project at '%s/.hecl'\n"), m_dir->c_str());
2015-06-10 02:40:03 +00:00
return 0;
}
static void Help(HelpOutput& help)
{
help.secHead(_S("NAME"));
help.beginWrap();
help.wrap(_S("hecl-init - Initialize a brand-new project database\n"));
help.endWrap();
help.secHead(_S("SYNOPSIS"));
help.beginWrap();
help.wrap(_S("hecl init [<dir>]\n"));
help.endWrap();
help.secHead(_S("DESCRIPTION"));
help.beginWrap();
help.wrap(_S("Creates a "));
help.wrapBold(_S(".hecl"));
help.wrap(_S(" directory within the selected directory with an initialized database index. "
"This constitutes an empty HECL project, ready for making stuff!!\n"));
help.endWrap();
help.secHead(_S("OPTIONS"));
help.optionHead(_S("<dir>"), _S("group directory path"));
help.beginWrap();
help.wrap(_S("Directory to create new project database in. If not specified, current directory is used.\n"));
help.endWrap();
}
HECL::SystemString toolName() const {return _S("init");}
};
#endif // CTOOL_INIT