112 lines
2.3 KiB
C++
112 lines
2.3 KiB
C++
/*
|
|
* BuildInstaller.cpp
|
|
* stepmania
|
|
*
|
|
* Created by Steve Checkoway on Sun Sep 07 2003.
|
|
* Copyright (c) 2003 Steve Checkoway. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
using namespace std;
|
|
|
|
#include "StdString.h"
|
|
#include "InstallerFile.h"
|
|
#include "Processor.h"
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <stack>
|
|
#include <map>
|
|
|
|
void HandleFile(const char *file, const char *archivePath, bool overwrite)
|
|
{
|
|
static bool archiveMade = false;
|
|
CString command;
|
|
|
|
if (archiveMade)
|
|
command = "tar rfP '";
|
|
else
|
|
{
|
|
archiveMade = true;
|
|
command = "tar cfP '";
|
|
}
|
|
command += archivePath;
|
|
command += "' '";
|
|
command += file;
|
|
command += "'";
|
|
|
|
system(command);
|
|
|
|
printf("%s\n", file);
|
|
}
|
|
|
|
void PrintUsage(int err)
|
|
{
|
|
printf("usage: BuildInstaller config [dir]\n\n"
|
|
"config: The configuration file for the installer.\n"
|
|
"dir: The output directory. It is created if it doesn't exist\n");
|
|
exit(err);
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
CString inFile, outDir;
|
|
|
|
switch (argc)
|
|
{
|
|
case 1:
|
|
printf("BuildInstaller needs to be run with at least one argument.\n");
|
|
PrintUsage(1);
|
|
|
|
case 2:
|
|
inFile = argv[1];
|
|
outDir = ".";
|
|
break;
|
|
|
|
case 3:
|
|
inFile = argv[1];
|
|
outDir = argv[2];
|
|
break;
|
|
|
|
default:
|
|
printf("BuildInstaller takes at most 2 arguments.\n");
|
|
PrintUsage(2);
|
|
}
|
|
|
|
if (inFile == "help" || inFile == "-h" || inFile == "--help")
|
|
PrintUsage(0);
|
|
|
|
|
|
InstallerFile config(inFile);
|
|
unsigned nextLine = 0;
|
|
|
|
if (!config.ReadFile())
|
|
{
|
|
printf("Couldn't read config file, \"%s\".\n", inFile.c_str());
|
|
return 3;
|
|
}
|
|
|
|
/* Create the directory--the lazy man's way */
|
|
CString command = "mkdir -p '" + outDir + "'";
|
|
|
|
if (system(command))
|
|
{
|
|
printf("The system(\"%s\") call failed.\n", command.c_str());
|
|
return 4;
|
|
}
|
|
|
|
CString archivePath = outDir + "/archive.tar";
|
|
|
|
Processor p(archivePath, HandleFile, NULL, false);
|
|
|
|
while (nextLine < config.GetNumLines())
|
|
p.ProcessLine(config.GetLine(nextLine), nextLine);
|
|
|
|
if (!config.WriteFile(outDir + "/config"))
|
|
{
|
|
printf("%s\n", strerror(errno));
|
|
return 6;
|
|
}
|
|
|
|
return 0;
|
|
}
|