2012-07-18 18:59:03 +00:00
|
|
|
#pragma once
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2011-02-05 16:29:10 +00:00
|
|
|
#include "util.hh"
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2006-12-04 17:17:13 +00:00
|
|
|
#include <signal.h>
|
|
|
|
|
2014-02-17 13:48:50 +00:00
|
|
|
#include <locale>
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
/* These are not implemented here, but must be implemented by a
|
|
|
|
program linking against libmain. */
|
|
|
|
|
|
|
|
/* Main program. Called by main() after the ATerm library has been
|
|
|
|
initialised and some default arguments have been processed (and
|
|
|
|
removed from `args'). main() will catch all exceptions. */
|
2006-09-04 21:06:23 +00:00
|
|
|
void run(nix::Strings args);
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
/* Should print a help message to stdout and return. */
|
|
|
|
void printHelp();
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
extern std::string programId;
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2009-11-24 12:26:25 +00:00
|
|
|
MakeError(UsageError, nix::Error);
|
|
|
|
|
2011-08-31 21:11:50 +00:00
|
|
|
class StoreAPI;
|
|
|
|
|
2005-02-01 12:36:25 +00:00
|
|
|
/* Ugh. No better place to put this. */
|
|
|
|
void printGCWarning();
|
|
|
|
|
2011-08-31 21:11:50 +00:00
|
|
|
void printMissing(StoreAPI & store, const PathSet & paths);
|
2008-08-04 13:44:46 +00:00
|
|
|
|
2012-11-19 23:27:25 +00:00
|
|
|
void printMissing(const PathSet & willBuild,
|
|
|
|
const PathSet & willSubstitute, const PathSet & unknown,
|
|
|
|
unsigned long long downloadSize, unsigned long long narSize);
|
|
|
|
|
2009-11-24 12:26:25 +00:00
|
|
|
template<class N> N getIntArg(const string & opt,
|
2014-02-17 13:48:50 +00:00
|
|
|
Strings::iterator & i, const Strings::iterator & end, bool allowUnit)
|
2009-11-24 12:26:25 +00:00
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i == end) throw UsageError(format("`%1%' requires an argument") % opt);
|
2014-02-17 13:48:50 +00:00
|
|
|
string s = *i;
|
|
|
|
N multiplier = 1;
|
|
|
|
if (allowUnit && !s.empty()) {
|
|
|
|
char u = std::toupper(*s.rbegin());
|
|
|
|
if (std::isalpha(u)) {
|
|
|
|
if (u == 'K') multiplier = 1ULL << 10;
|
|
|
|
else if (u == 'M') multiplier = 1ULL << 20;
|
|
|
|
else if (u == 'G') multiplier = 1ULL << 30;
|
|
|
|
else if (u == 'T') multiplier = 1ULL << 40;
|
|
|
|
else throw UsageError(format("invalid unit specifier `%1%'") % u);
|
|
|
|
s.resize(s.size() - 1);
|
|
|
|
}
|
|
|
|
}
|
2009-11-24 12:26:25 +00:00
|
|
|
N n;
|
2014-02-17 13:48:50 +00:00
|
|
|
if (!string2Int(s, n))
|
2009-11-24 12:26:25 +00:00
|
|
|
throw UsageError(format("`%1%' requires an integer argument") % opt);
|
2014-02-17 13:48:50 +00:00
|
|
|
return n * multiplier;
|
2009-11-24 12:26:25 +00:00
|
|
|
}
|
2008-06-18 14:20:16 +00:00
|
|
|
|
2012-10-03 20:37:06 +00:00
|
|
|
/* Show the manual page for the specified program. */
|
|
|
|
void showManPage(const string & name);
|
|
|
|
|
2006-12-04 17:17:13 +00:00
|
|
|
extern volatile ::sig_atomic_t blockInt;
|
|
|
|
|
2011-09-06 12:06:30 +00:00
|
|
|
/* Exit code of the program. */
|
|
|
|
extern int exitCode;
|
|
|
|
|
2012-03-05 18:19:29 +00:00
|
|
|
extern char * * argvSaved;
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
}
|