2003-06-16 15:33:38 +02:00
|
|
|
#include "globals.hh"
|
|
|
|
|
2005-02-01 23:07:48 +01:00
|
|
|
#include <map>
|
2005-09-22 17:43:22 +02:00
|
|
|
#include <algorithm>
|
2005-02-01 23:07:48 +01:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2005-09-22 17:43:22 +02:00
|
|
|
static map<string, Strings> settings;
|
|
|
|
|
|
|
|
|
|
|
|
template<class T, class A> A & genericAt(T & container, unsigned int n)
|
|
|
|
{
|
|
|
|
class T::iterator i = container.begin();
|
|
|
|
advance(i, n);
|
|
|
|
return *i;
|
|
|
|
}
|
2005-02-01 23:07:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2005-09-22 17:43:22 +02:00
|
|
|
Strings tokens = tokenizeString(line);
|
|
|
|
if (tokens.empty()) continue;
|
2005-02-01 23:07:48 +01:00
|
|
|
|
2005-09-22 17:43:22 +02:00
|
|
|
if (tokens.size() < 2 || genericAt<Strings, string>(tokens, 1) != "=")
|
2005-02-14 14:07:09 +01:00
|
|
|
throw Error(format("illegal configuration line `%1%' in `%2%'") % line % settingsFile);
|
2005-09-22 17:43:22 +02:00
|
|
|
|
|
|
|
string name = genericAt<Strings, string>(tokens, 0);
|
|
|
|
|
|
|
|
Strings::iterator i = tokens.begin();
|
|
|
|
advance(i, 2);
|
|
|
|
settings[name] = Strings(i, tokens.end());
|
2005-02-01 23:07:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
settingsRead = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-22 17:43:22 +02:00
|
|
|
Strings querySetting(const string & name, const Strings & def)
|
2005-02-01 23:07:48 +01:00
|
|
|
{
|
|
|
|
if (!settingsRead) readSettings();
|
2005-09-22 17:43:22 +02:00
|
|
|
map<string, Strings>::iterator i = settings.find(name);
|
2005-02-01 23:07:48 +01:00
|
|
|
return i == settings.end() ? def : i->second;
|
|
|
|
}
|
2005-02-14 14:07:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
bool queryBoolSetting(const string & name, bool def)
|
|
|
|
{
|
2005-09-22 17:43:22 +02:00
|
|
|
Strings defs;
|
|
|
|
if (def) defs.push_back("true"); else defs.push_back("false");
|
|
|
|
|
|
|
|
Strings value = querySetting(name, defs);
|
|
|
|
if (value.size() != 1)
|
|
|
|
throw Error(format("configuration option `%1%' should be either `true' or `false', not a list")
|
|
|
|
% name);
|
|
|
|
|
|
|
|
string v = value.front();
|
|
|
|
if (v == "true") return true;
|
|
|
|
else if (v == "false") return false;
|
2005-02-14 14:07:09 +01:00
|
|
|
else throw Error(format("configuration option `%1%' should be either `true' or `false', not `%2%'")
|
2005-09-22 17:43:22 +02:00
|
|
|
% name % v);
|
2005-02-14 14:07:09 +01:00
|
|
|
}
|