2007-03-30 16:24:35 +03:00
|
|
|
#include "config.h"
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "shared.hh"
|
|
|
|
#include "globals.hh"
|
2006-11-30 19:43:04 +02:00
|
|
|
#include "store-api.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "util.hh"
|
2008-08-04 16:44:46 +03:00
|
|
|
#include "misc.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
|
2003-07-04 18:42:03 +03:00
|
|
|
#include <iostream>
|
2003-07-24 11:53:43 +03:00
|
|
|
#include <cctype>
|
2007-05-01 18:16:17 +03:00
|
|
|
#include <exception>
|
2003-07-04 18:42:03 +03:00
|
|
|
|
2012-12-11 12:49:42 +02:00
|
|
|
#include <sys/time.h>
|
2004-03-27 19:58:04 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
2013-07-31 00:25:37 +03:00
|
|
|
#include <signal.h>
|
2004-03-27 19:58:04 +02:00
|
|
|
|
2003-07-04 18:42:03 +03:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
namespace nix {
|
2003-07-04 18:42:03 +03:00
|
|
|
|
|
|
|
|
2004-05-11 21:05:44 +03:00
|
|
|
volatile sig_atomic_t blockInt = 0;
|
|
|
|
|
|
|
|
|
2006-03-11 00:27:26 +02:00
|
|
|
static void sigintHandler(int signo)
|
2004-01-15 22:23:55 +02:00
|
|
|
{
|
2004-05-11 21:05:44 +03:00
|
|
|
if (!blockInt) {
|
|
|
|
_isInterrupted = 1;
|
|
|
|
blockInt = 1;
|
|
|
|
}
|
2004-01-15 22:23:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-20 14:19:10 +02:00
|
|
|
static bool gcWarning = true;
|
|
|
|
|
2005-02-01 14:36:25 +02:00
|
|
|
void printGCWarning()
|
|
|
|
{
|
2013-12-20 14:19:10 +02:00
|
|
|
if (!gcWarning) return;
|
2006-08-29 18:40:49 +03:00
|
|
|
static bool haveWarned = false;
|
2012-07-31 00:13:25 +03:00
|
|
|
warnOnce(haveWarned,
|
2006-12-05 02:34:42 +02:00
|
|
|
"you did not specify `--add-root'; "
|
2006-08-29 18:40:49 +03:00
|
|
|
"the result might be removed by the garbage collector");
|
2005-02-01 14:36:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-01 00:11:50 +03:00
|
|
|
void printMissing(StoreAPI & store, const PathSet & paths)
|
2008-08-04 16:44:46 +03:00
|
|
|
{
|
2010-11-17 16:31:42 +02:00
|
|
|
unsigned long long downloadSize, narSize;
|
2008-08-04 16:44:46 +03:00
|
|
|
PathSet willBuild, willSubstitute, unknown;
|
2011-09-01 00:11:50 +03:00
|
|
|
queryMissing(store, paths, willBuild, willSubstitute, unknown, downloadSize, narSize);
|
2012-11-20 01:27:25 +02:00
|
|
|
printMissing(willBuild, willSubstitute, unknown, downloadSize, narSize);
|
|
|
|
}
|
|
|
|
|
2008-08-04 16:44:46 +03:00
|
|
|
|
2012-11-20 01:27:25 +02:00
|
|
|
void printMissing(const PathSet & willBuild,
|
|
|
|
const PathSet & willSubstitute, const PathSet & unknown,
|
|
|
|
unsigned long long downloadSize, unsigned long long narSize)
|
|
|
|
{
|
2008-08-04 16:44:46 +03:00
|
|
|
if (!willBuild.empty()) {
|
2010-11-17 16:31:42 +02:00
|
|
|
printMsg(lvlInfo, format("these derivations will be built:"));
|
2008-08-04 16:44:46 +03:00
|
|
|
foreach (PathSet::iterator, i, willBuild)
|
|
|
|
printMsg(lvlInfo, format(" %1%") % *i);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!willSubstitute.empty()) {
|
2011-11-29 15:00:41 +02:00
|
|
|
printMsg(lvlInfo, format("these paths will be fetched (%.2f MiB download, %.2f MiB unpacked):")
|
2010-11-17 16:31:42 +02:00
|
|
|
% (downloadSize / (1024.0 * 1024.0))
|
|
|
|
% (narSize / (1024.0 * 1024.0)));
|
2008-08-04 16:44:46 +03:00
|
|
|
foreach (PathSet::iterator, i, willSubstitute)
|
|
|
|
printMsg(lvlInfo, format(" %1%") % *i);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!unknown.empty()) {
|
2010-11-17 16:31:42 +02:00
|
|
|
printMsg(lvlInfo, format("don't know how to build these paths%1%:")
|
2012-07-31 02:55:41 +03:00
|
|
|
% (settings.readOnlyMode ? " (may be caused by read-only store access)" : ""));
|
2008-08-04 16:44:46 +03:00
|
|
|
foreach (PathSet::iterator, i, unknown)
|
|
|
|
printMsg(lvlInfo, format(" %1%") % *i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-11 00:27:26 +02:00
|
|
|
static void setLogType(string lt)
|
2004-03-22 22:53:49 +02:00
|
|
|
{
|
|
|
|
if (lt == "pretty") logType = ltPretty;
|
|
|
|
else if (lt == "escapes") logType = ltEscapes;
|
|
|
|
else if (lt == "flat") logType = ltFlat;
|
|
|
|
else throw UsageError("unknown log type");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
string getArg(const string & opt,
|
|
|
|
Strings::iterator & i, const Strings::iterator & end)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i == end) throw UsageError(format("`%1%' requires an argument") % opt);
|
|
|
|
return *i;
|
|
|
|
}
|
|
|
|
|
2012-10-03 23:37:06 +03:00
|
|
|
|
2013-07-31 00:25:37 +03:00
|
|
|
void detectStackOverflow();
|
|
|
|
|
|
|
|
|
2003-07-04 18:42:03 +03:00
|
|
|
/* Initialize and reorder arguments, then call the actual argument
|
|
|
|
processor. */
|
|
|
|
static void initAndRun(int argc, char * * argv)
|
|
|
|
{
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.processEnvironment();
|
|
|
|
settings.loadConfFile();
|
2012-07-31 00:13:25 +03:00
|
|
|
|
2004-01-15 22:23:55 +02:00
|
|
|
/* Catch SIGINT. */
|
2010-01-12 14:22:38 +02:00
|
|
|
struct sigaction act;
|
2004-01-15 22:23:55 +02:00
|
|
|
act.sa_handler = sigintHandler;
|
2014-03-29 21:20:14 +02:00
|
|
|
sigemptyset(&act.sa_mask);
|
2004-01-15 22:23:55 +02:00
|
|
|
act.sa_flags = 0;
|
2010-01-12 14:22:38 +02:00
|
|
|
if (sigaction(SIGINT, &act, 0))
|
2004-01-15 22:23:55 +02:00
|
|
|
throw SysError("installing handler for SIGINT");
|
2010-01-12 14:22:38 +02:00
|
|
|
if (sigaction(SIGTERM, &act, 0))
|
2005-11-04 17:34:09 +02:00
|
|
|
throw SysError("installing handler for SIGTERM");
|
2010-01-12 14:22:38 +02:00
|
|
|
if (sigaction(SIGHUP, &act, 0))
|
2005-11-04 17:34:09 +02:00
|
|
|
throw SysError("installing handler for SIGHUP");
|
2004-01-15 22:23:55 +02:00
|
|
|
|
2004-05-13 22:14:49 +03:00
|
|
|
/* Ignore SIGPIPE. */
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
act.sa_flags = 0;
|
2010-01-12 14:22:38 +02:00
|
|
|
if (sigaction(SIGPIPE, &act, 0))
|
2004-05-13 22:14:49 +03:00
|
|
|
throw SysError("ignoring SIGPIPE");
|
|
|
|
|
2010-01-12 14:22:38 +02:00
|
|
|
/* Reset SIGCHLD to its default. */
|
|
|
|
act.sa_handler = SIG_DFL;
|
|
|
|
act.sa_flags = 0;
|
|
|
|
if (sigaction(SIGCHLD, &act, 0))
|
|
|
|
throw SysError("resetting SIGCHLD");
|
|
|
|
|
2013-07-31 00:25:37 +03:00
|
|
|
/* Register a SIGSEGV handler to detect stack overflows. */
|
|
|
|
detectStackOverflow();
|
|
|
|
|
2004-09-09 17:16:02 +03:00
|
|
|
/* There is no privacy in the Nix system ;-) At least not for
|
|
|
|
now. In particular, store objects should be readable by
|
2012-10-04 00:30:45 +03:00
|
|
|
everybody. */
|
2004-09-09 17:16:02 +03:00
|
|
|
umask(0022);
|
|
|
|
|
2012-12-11 12:49:42 +02:00
|
|
|
/* Initialise the PRNG. */
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, 0);
|
|
|
|
srandom(tv.tv_usec);
|
|
|
|
|
2004-03-22 22:53:49 +02:00
|
|
|
/* Process the NIX_LOG_TYPE environment variable. */
|
2004-05-04 15:15:30 +03:00
|
|
|
string lt = getEnv("NIX_LOG_TYPE");
|
|
|
|
if (lt != "") setLogType(lt);
|
2004-03-22 22:53:49 +02:00
|
|
|
|
2003-07-04 18:42:03 +03:00
|
|
|
/* Put the arguments in a vector. */
|
2003-12-01 17:55:05 +02:00
|
|
|
Strings args, remaining;
|
2003-07-04 18:42:03 +03:00
|
|
|
while (argc--) args.push_back(*argv++);
|
|
|
|
args.erase(args.begin());
|
2012-07-31 00:13:25 +03:00
|
|
|
|
2003-11-03 20:21:53 +02:00
|
|
|
/* Expand compound dash options (i.e., `-qlf' -> `-q -l -f'), and
|
|
|
|
ignore options for the ATerm library. */
|
2003-12-01 17:55:05 +02:00
|
|
|
for (Strings::iterator i = args.begin(); i != args.end(); ++i) {
|
|
|
|
string arg = *i;
|
2011-09-06 15:06:30 +03:00
|
|
|
if (arg.length() > 2 && arg[0] == '-' && arg[1] != '-' && !isdigit(arg[1])) {
|
2003-12-01 17:55:05 +02:00
|
|
|
for (unsigned int j = 1; j < arg.length(); j++)
|
|
|
|
if (isalpha(arg[j]))
|
|
|
|
remaining.push_back((string) "-" + arg[j]);
|
2011-09-06 15:06:30 +03:00
|
|
|
else {
|
2003-12-01 17:55:05 +02:00
|
|
|
remaining.push_back(string(arg, j));
|
2003-07-24 11:53:43 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-12-01 17:55:05 +02:00
|
|
|
} else remaining.push_back(arg);
|
2003-07-04 18:42:03 +03:00
|
|
|
}
|
2003-12-01 17:55:05 +02:00
|
|
|
args = remaining;
|
|
|
|
remaining.clear();
|
2003-07-04 18:42:03 +03:00
|
|
|
|
2003-12-01 17:55:05 +02:00
|
|
|
/* Process default options. */
|
|
|
|
for (Strings::iterator i = args.begin(); i != args.end(); ++i) {
|
|
|
|
string arg = *i;
|
2013-03-08 02:24:59 +02:00
|
|
|
if (arg == "--verbose" || arg == "-v") verbosity = (Verbosity) (verbosity + 1);
|
|
|
|
else if (arg == "--quiet") verbosity = verbosity > lvlError ? (Verbosity) (verbosity - 1) : lvlError;
|
2004-03-22 22:53:49 +02:00
|
|
|
else if (arg == "--log-type") {
|
2012-07-31 02:55:41 +03:00
|
|
|
string s = getArg(arg, i, args.end());
|
|
|
|
setLogType(s);
|
2004-05-12 17:20:32 +03:00
|
|
|
}
|
2004-08-18 15:19:06 +03:00
|
|
|
else if (arg == "--no-build-output" || arg == "-Q")
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.buildVerbosity = lvlVomit;
|
2008-11-12 13:08:27 +02:00
|
|
|
else if (arg == "--print-build-trace")
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.printBuildTrace = true;
|
2003-12-01 17:55:05 +02:00
|
|
|
else if (arg == "--help") {
|
|
|
|
printHelp();
|
|
|
|
return;
|
2004-05-12 17:20:32 +03:00
|
|
|
}
|
|
|
|
else if (arg == "--version") {
|
2012-11-27 14:29:55 +02:00
|
|
|
std::cout << format("%1% (Nix) %2%") % programId % nixVersion << std::endl;
|
2004-02-02 12:51:54 +02:00
|
|
|
return;
|
2004-05-12 17:20:32 +03:00
|
|
|
}
|
|
|
|
else if (arg == "--keep-failed" || arg == "-K")
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.keepFailed = true;
|
2004-06-25 18:36:09 +03:00
|
|
|
else if (arg == "--keep-going" || arg == "-k")
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.keepGoing = true;
|
2004-06-28 13:42:57 +03:00
|
|
|
else if (arg == "--fallback")
|
2012-08-01 00:56:02 +03:00
|
|
|
settings.set("build-fallback", "true");
|
2006-12-08 17:44:00 +02:00
|
|
|
else if (arg == "--max-jobs" || arg == "-j")
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.set("build-max-jobs", getArg(arg, i, args.end()));
|
2010-08-04 15:23:59 +03:00
|
|
|
else if (arg == "--cores")
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.set("build-cores", getArg(arg, i, args.end()));
|
2004-10-25 17:38:23 +03:00
|
|
|
else if (arg == "--readonly-mode")
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.readOnlyMode = true;
|
2006-12-08 17:44:00 +02:00
|
|
|
else if (arg == "--max-silent-time")
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.set("build-max-silent-time", getArg(arg, i, args.end()));
|
2011-06-30 18:19:13 +03:00
|
|
|
else if (arg == "--timeout")
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.set("build-timeout", getArg(arg, i, args.end()));
|
2007-11-16 18:15:26 +02:00
|
|
|
else if (arg == "--no-build-hook")
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.useBuildHook = false;
|
2009-06-30 16:28:29 +03:00
|
|
|
else if (arg == "--show-trace")
|
2013-11-12 13:51:59 +02:00
|
|
|
settings.showTrace = true;
|
2013-12-20 14:19:10 +02:00
|
|
|
else if (arg == "--no-gc-warning")
|
|
|
|
gcWarning = false;
|
2009-02-27 13:04:41 +02:00
|
|
|
else if (arg == "--option") {
|
|
|
|
++i; if (i == args.end()) throw UsageError("`--option' requires two arguments");
|
|
|
|
string name = *i;
|
|
|
|
++i; if (i == args.end()) throw UsageError("`--option' requires two arguments");
|
|
|
|
string value = *i;
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.set(name, value);
|
2009-02-27 13:04:41 +02:00
|
|
|
}
|
2014-05-23 15:43:55 +03:00
|
|
|
else if (arg == "--arg" || arg == "--argstr") {
|
|
|
|
remaining.push_back(arg);
|
|
|
|
++i; if (i == args.end()) throw UsageError(format("`%1%' requires two arguments") % arg);
|
|
|
|
remaining.push_back(*i);
|
|
|
|
++i; if (i == args.end()) throw UsageError(format("`%1%' requires two arguments") % arg);
|
|
|
|
remaining.push_back(*i);
|
|
|
|
}
|
2003-12-01 17:55:05 +02:00
|
|
|
else remaining.push_back(arg);
|
|
|
|
}
|
|
|
|
|
2014-02-08 07:05:46 +02:00
|
|
|
if (char *pack = getenv("_NIX_OPTIONS"))
|
|
|
|
settings.unpack(pack);
|
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.update();
|
|
|
|
|
2003-12-01 17:55:05 +02:00
|
|
|
run(remaining);
|
2006-03-01 18:36:35 +02:00
|
|
|
|
2006-11-30 19:43:04 +02:00
|
|
|
/* Close the Nix database. */
|
|
|
|
store.reset((StoreAPI *) 0);
|
2003-07-04 18:42:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-03 23:37:06 +03:00
|
|
|
void showManPage(const string & name)
|
|
|
|
{
|
|
|
|
string cmd = "man " + name;
|
|
|
|
if (system(cmd.c_str()) != 0)
|
|
|
|
throw Error(format("command `%1%' failed") % cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-06 15:06:30 +03:00
|
|
|
int exitCode = 0;
|
2012-03-05 20:19:29 +02:00
|
|
|
char * * argvSaved = 0;
|
2011-09-06 15:06:30 +03:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-16 19:29:57 +03:00
|
|
|
static char buf[1024];
|
|
|
|
|
2003-07-04 18:42:03 +03:00
|
|
|
int main(int argc, char * * argv)
|
|
|
|
{
|
2006-09-05 00:06:23 +03:00
|
|
|
using namespace nix;
|
2006-12-02 17:45:51 +02:00
|
|
|
|
2012-03-05 20:19:29 +02:00
|
|
|
argvSaved = argv;
|
|
|
|
|
2003-10-16 14:55:37 +03:00
|
|
|
/* Turn on buffering for cerr. */
|
2003-12-22 18:40:46 +02:00
|
|
|
#if HAVE_PUBSETBUF
|
2006-09-05 00:06:23 +03:00
|
|
|
std::cerr.rdbuf()->pubsetbuf(buf, sizeof(buf));
|
2003-12-22 18:40:46 +02:00
|
|
|
#endif
|
2003-10-16 14:55:37 +03:00
|
|
|
|
2006-11-18 20:56:30 +02:00
|
|
|
std::ios::sync_with_stdio(false);
|
|
|
|
|
2003-07-04 18:42:03 +03:00
|
|
|
try {
|
2004-05-11 21:05:44 +03:00
|
|
|
try {
|
|
|
|
initAndRun(argc, argv);
|
|
|
|
} catch (...) {
|
|
|
|
/* Subtle: we have to make sure that any `interrupted'
|
|
|
|
condition is discharged before we reach printMsg()
|
|
|
|
below, since otherwise it will throw an (uncaught)
|
|
|
|
exception. */
|
|
|
|
blockInt = 1; /* ignore further SIGINTs */
|
|
|
|
_isInterrupted = 0;
|
|
|
|
throw;
|
|
|
|
}
|
2003-07-04 18:42:03 +03:00
|
|
|
} catch (UsageError & e) {
|
2012-07-31 00:13:25 +03:00
|
|
|
printMsg(lvlError,
|
2003-07-24 11:53:43 +03:00
|
|
|
format(
|
|
|
|
"error: %1%\n"
|
|
|
|
"Try `%2% --help' for more information.")
|
|
|
|
% e.what() % programId);
|
2003-07-04 18:42:03 +03:00
|
|
|
return 1;
|
2007-08-12 03:29:28 +03:00
|
|
|
} catch (BaseError & e) {
|
2013-11-12 13:51:59 +02:00
|
|
|
printMsg(lvlError, format("error: %1%%2%") % (settings.showTrace ? e.prefix() : "") % e.msg());
|
|
|
|
if (e.prefix() != "" && !settings.showTrace)
|
2009-06-30 16:28:29 +03:00
|
|
|
printMsg(lvlError, "(use `--show-trace' to show detailed location information)");
|
2010-12-13 18:53:23 +02:00
|
|
|
return e.status;
|
2013-10-02 15:34:36 +03:00
|
|
|
} catch (std::bad_alloc & e) {
|
|
|
|
printMsg(lvlError, "error: out of memory");
|
|
|
|
return 1;
|
2006-09-05 00:06:23 +03:00
|
|
|
} catch (std::exception & e) {
|
2003-11-09 12:35:45 +02:00
|
|
|
printMsg(lvlError, format("error: %1%") % e.what());
|
2003-07-04 18:42:03 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-09-06 15:06:30 +03:00
|
|
|
return exitCode;
|
2003-07-04 18:42:03 +03:00
|
|
|
}
|