2012-07-18 20:59:03 +02:00
|
|
|
|
#pragma once
|
2003-07-04 17:42:03 +02:00
|
|
|
|
|
2011-02-05 17:29:10 +01:00
|
|
|
|
#include "util.hh"
|
2003-07-04 17:42:03 +02:00
|
|
|
|
|
2006-12-04 18:17:13 +01:00
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
2014-02-17 14:48:50 +01:00
|
|
|
|
#include <locale>
|
|
|
|
|
|
2003-07-04 17:42:03 +02:00
|
|
|
|
|
2014-08-13 03:50:44 +02:00
|
|
|
|
namespace nix {
|
2003-12-01 16:55:05 +01:00
|
|
|
|
|
2014-08-13 03:50:44 +02:00
|
|
|
|
MakeError(UsageError, nix::Error);
|
2003-07-04 17:42:03 +02:00
|
|
|
|
|
2014-08-13 03:50:44 +02:00
|
|
|
|
class Exit : public std::exception
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
int status;
|
|
|
|
|
Exit() : status(0) { }
|
|
|
|
|
Exit(int status) : status(status) { }
|
|
|
|
|
};
|
2003-12-01 16:55:05 +01:00
|
|
|
|
|
2014-08-13 03:50:44 +02:00
|
|
|
|
class StoreAPI;
|
2006-09-04 23:06:23 +02:00
|
|
|
|
|
2014-08-13 03:50:44 +02:00
|
|
|
|
int handleExceptions(const string & programName, std::function<void()> fun);
|
2006-09-04 23:06:23 +02:00
|
|
|
|
|
2014-08-13 03:50:44 +02:00
|
|
|
|
void initNix();
|
2006-09-04 23:06:23 +02:00
|
|
|
|
|
2014-08-13 03:50:44 +02:00
|
|
|
|
void parseCmdLine(int argc, char * * argv,
|
|
|
|
|
std::function<bool(Strings::iterator & arg, const Strings::iterator & end)> parseArg);
|
2009-11-24 13:26:25 +01:00
|
|
|
|
|
2014-08-13 03:50:44 +02:00
|
|
|
|
void printVersion(const string & programName);
|
2011-08-31 23:11:50 +02:00
|
|
|
|
|
2005-02-01 13:36:25 +01:00
|
|
|
|
/* Ugh. No better place to put this. */
|
|
|
|
|
void printGCWarning();
|
|
|
|
|
|
2011-08-31 23:11:50 +02:00
|
|
|
|
void printMissing(StoreAPI & store, const PathSet & paths);
|
2008-08-04 15:44:46 +02:00
|
|
|
|
|
2012-11-20 00:27:25 +01:00
|
|
|
|
void printMissing(const PathSet & willBuild,
|
|
|
|
|
const PathSet & willSubstitute, const PathSet & unknown,
|
|
|
|
|
unsigned long long downloadSize, unsigned long long narSize);
|
|
|
|
|
|
2014-08-13 03:50:44 +02:00
|
|
|
|
string getArg(const string & opt,
|
|
|
|
|
Strings::iterator & i, const Strings::iterator & end);
|
|
|
|
|
|
2009-11-24 13:26:25 +01:00
|
|
|
|
template<class N> N getIntArg(const string & opt,
|
2014-02-17 14:48:50 +01:00
|
|
|
|
Strings::iterator & i, const Strings::iterator & end, bool allowUnit)
|
2009-11-24 13:26:25 +01:00
|
|
|
|
{
|
|
|
|
|
++i;
|
2014-08-20 17:00:17 +02:00
|
|
|
|
if (i == end) throw UsageError(format("‘%1%’ requires an argument") % opt);
|
2014-02-17 14:48:50 +01: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;
|
2014-08-20 17:00:17 +02:00
|
|
|
|
else throw UsageError(format("invalid unit specifier ‘%1%’") % u);
|
2014-02-17 14:48:50 +01:00
|
|
|
|
s.resize(s.size() - 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-11-24 13:26:25 +01:00
|
|
|
|
N n;
|
2014-02-17 14:48:50 +01:00
|
|
|
|
if (!string2Int(s, n))
|
2014-08-20 17:00:17 +02:00
|
|
|
|
throw UsageError(format("‘%1%’ requires an integer argument") % opt);
|
2014-02-17 14:48:50 +01:00
|
|
|
|
return n * multiplier;
|
2009-11-24 13:26:25 +01:00
|
|
|
|
}
|
2008-06-18 16:20:16 +02:00
|
|
|
|
|
2012-10-03 22:37:06 +02:00
|
|
|
|
/* Show the manual page for the specified program. */
|
|
|
|
|
void showManPage(const string & name);
|
|
|
|
|
|
2014-08-20 15:12:58 +02:00
|
|
|
|
/* The constructor of this class starts a pager if stdout is a
|
|
|
|
|
terminal and $PAGER is set. Stdout is redirected to the pager. */
|
|
|
|
|
class RunPager
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
RunPager();
|
|
|
|
|
~RunPager();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Pid pid;
|
|
|
|
|
};
|
|
|
|
|
|
2006-12-04 18:17:13 +01:00
|
|
|
|
extern volatile ::sig_atomic_t blockInt;
|
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
|
}
|