nix-gh/src/libstore/globals.cc

101 lines
2.4 KiB
C++
Raw Normal View History

#include "globals.hh"
#include <map>
2005-09-22 17:43:22 +02:00
#include <algorithm>
string nixStore = "/UNINIT";
string nixDataDir = "/UNINIT";
string nixLogDir = "/UNINIT";
string nixStateDir = "/UNINIT";
string nixDBPath = "/UNINIT";
string nixConfDir = "/UNINIT";
string nixLibexecDir = "/UNINIT";
bool keepFailed = false;
bool keepGoing = false;
bool tryFallback = false;
Verbosity buildVerbosity = lvlInfo;
unsigned int maxBuildJobs = 1;
bool readOnlyMode = false;
string thisSystem = "unset";
static bool settingsRead = false;
2005-09-22 17:43:22 +02:00
static map<string, Strings> settings;
2005-09-22 19:23:43 +02:00
string & at(Strings & ss, unsigned int n)
2005-09-22 17:43:22 +02:00
{
Strings::iterator i = ss.begin();
2005-09-22 17:43:22 +02:00
advance(i, n);
return *i;
}
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++;
string::size_type 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-09-22 19:23:43 +02:00
if (tokens.size() < 2 || at(tokens, 1) != "=")
throw Error(format("illegal configuration line `%1%' in `%2%'") % line % settingsFile);
2005-09-22 17:43:22 +02:00
2005-09-22 19:23:43 +02:00
string name = at(tokens, 0);
2005-09-22 17:43:22 +02:00
Strings::iterator i = tokens.begin();
advance(i, 2);
settings[name] = Strings(i, tokens.end());
};
settingsRead = true;
}
2005-09-22 17:43:22 +02:00
Strings querySetting(const string & name, const Strings & def)
{
if (!settingsRead) readSettings();
2005-09-22 17:43:22 +02:00
map<string, Strings>::iterator i = settings.find(name);
return i == settings.end() ? def : i->second;
}
string querySetting(const string & name, const string & def)
{
2005-09-22 17:43:22 +02:00
Strings defs;
defs.push_back(def);
2005-09-22 17:43:22 +02:00
Strings value = querySetting(name, defs);
if (value.size() != 1)
throw Error(format("configuration option `%1%' should not be a list") % name);
return value.front();
}
bool queryBoolSetting(const string & name, bool def)
{
string v = querySetting(name, def ? "true" : "false");
2005-09-22 17:43:22 +02:00
if (v == "true") return true;
else if (v == "false") return false;
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);
}