2003-06-16 15:33:38 +02:00
|
|
|
#include "globals.hh"
|
|
|
|
|
2005-02-01 23:07:48 +01:00
|
|
|
#include <map>
|
|
|
|
|
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
string nixStore = "/UNINIT";
|
2003-07-10 15:41:28 +02:00
|
|
|
string nixDataDir = "/UNINIT";
|
2003-06-16 15:33:38 +02:00
|
|
|
string nixLogDir = "/UNINIT";
|
2003-11-19 18:27:16 +01:00
|
|
|
string nixStateDir = "/UNINIT";
|
2003-07-31 15:47:13 +02:00
|
|
|
string nixDBPath = "/UNINIT";
|
2005-02-01 23:07:48 +01:00
|
|
|
string nixConfDir = "/UNINIT";
|
2003-07-31 15:47:13 +02:00
|
|
|
|
2003-08-19 11:04:47 +02:00
|
|
|
bool keepFailed = false;
|
2004-06-25 17:36:09 +02:00
|
|
|
bool keepGoing = false;
|
2004-06-28 12:42:57 +02:00
|
|
|
bool tryFallback = false;
|
2004-08-18 14:19:06 +02:00
|
|
|
Verbosity buildVerbosity = lvlInfo;
|
2004-05-12 16:20:32 +02:00
|
|
|
unsigned int maxBuildJobs = 1;
|
2004-10-25 16:38:23 +02:00
|
|
|
bool readOnlyMode = false;
|
2005-09-21 14:19:39 +02:00
|
|
|
bool buildAllowRoot = true;
|
|
|
|
list<string> buildUsers;
|
2005-02-01 23:07:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
static bool settingsRead = false;
|
|
|
|
|
|
|
|
static map<string, string> settings;
|
|
|
|
|
|
|
|
|
|
|
|
static void readSettings()
|
|
|
|
{
|
|
|
|
Path settingsFile = (format("%1%/%2%") % nixConfDir % "nix.conf").str();
|
|
|
|
if (!pathExists(settingsFile)) return;
|
|
|
|
string contents = readFile(settingsFile);
|
|
|
|
|
|
|
|
unsigned int pos = 0;
|
|
|
|
|
|
|
|
while (pos < contents.size()) {
|
|
|
|
string line;
|
|
|
|
while (pos < contents.size() && contents[pos] != '\n')
|
|
|
|
line += contents[pos++];
|
|
|
|
pos++;
|
|
|
|
|
|
|
|
unsigned int hash = line.find('#');
|
|
|
|
if (hash != string::npos)
|
|
|
|
line = string(line, 0, hash);
|
|
|
|
|
|
|
|
if (line.find_first_not_of(" ") == string::npos) continue;
|
|
|
|
|
|
|
|
istringstream is(line);
|
|
|
|
string name, sep, value;
|
|
|
|
is >> name >> sep >> value;
|
|
|
|
if (sep != "=" || !is)
|
2005-02-14 14:07:09 +01:00
|
|
|
throw Error(format("illegal configuration line `%1%' in `%2%'") % line % settingsFile);
|
2005-02-01 23:07:48 +01:00
|
|
|
|
|
|
|
settings[name] = value;
|
|
|
|
};
|
|
|
|
|
|
|
|
settingsRead = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string querySetting(const string & name, const string & def)
|
|
|
|
{
|
|
|
|
if (!settingsRead) readSettings();
|
|
|
|
map<string, string>::iterator i = settings.find(name);
|
|
|
|
return i == settings.end() ? def : i->second;
|
|
|
|
}
|
2005-02-14 14:07:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
bool queryBoolSetting(const string & name, bool def)
|
|
|
|
{
|
|
|
|
string value = querySetting(name, def ? "true" : "false");
|
|
|
|
if (value == "true") return true;
|
|
|
|
else if (value == "false") return false;
|
|
|
|
else throw Error(format("configuration option `%1%' should be either `true' or `false', not `%2%'")
|
|
|
|
% name % value);
|
|
|
|
}
|