2015-06-30 06:46:19 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "NODLib.hpp"
|
|
|
|
|
2015-06-30 19:38:51 +00:00
|
|
|
static void printHelp()
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Usage:\n"
|
|
|
|
" nodlib extract [-f] <image-in> [<dir-out>]\n"
|
|
|
|
" nodlib make <dir-in> [<image-out>]\n");
|
|
|
|
}
|
|
|
|
|
2015-06-30 06:46:19 +00:00
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2015-06-30 19:38:51 +00:00
|
|
|
if (argc < 3)
|
2015-06-30 06:46:19 +00:00
|
|
|
{
|
2015-06-30 19:38:51 +00:00
|
|
|
printHelp();
|
2015-06-30 06:46:19 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-06-30 19:38:51 +00:00
|
|
|
const char* inDir = nullptr;
|
|
|
|
const char* outDir = ".";
|
|
|
|
bool force = false;
|
|
|
|
for (int a=2 ; a<argc ; ++a)
|
|
|
|
{
|
|
|
|
if (argv[a][0] == '-' && argv[a][1] == 'f')
|
|
|
|
force = true;
|
|
|
|
else if (!inDir)
|
|
|
|
inDir = argv[a];
|
|
|
|
else
|
|
|
|
outDir = argv[a];
|
|
|
|
}
|
2015-06-30 06:46:19 +00:00
|
|
|
|
2015-06-30 19:38:51 +00:00
|
|
|
if (!strcasecmp(argv[1], "extract"))
|
|
|
|
{
|
|
|
|
std::unique_ptr<NOD::DiscBase> disc = NOD::OpenDiscFromImage(inDir);
|
|
|
|
if (!disc)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
NOD::DiscBase::IPartition* dataPart = disc->getDataPartition();
|
|
|
|
if (!dataPart)
|
|
|
|
return -1;
|
2015-06-30 06:46:19 +00:00
|
|
|
|
2015-06-30 19:38:51 +00:00
|
|
|
dataPart->extractToDirectory(outDir, force);
|
|
|
|
}
|
|
|
|
else if (!strcasecmp(argv[1], "make"))
|
2015-06-30 06:46:19 +00:00
|
|
|
{
|
2015-06-30 19:38:51 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printHelp();
|
|
|
|
return -1;
|
2015-06-30 06:46:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|