alert when no config file is found

This commit is contained in:
skilion 2015-09-24 18:59:17 +02:00
parent 53d5d57678
commit 3489827431

View file

@ -6,10 +6,15 @@ struct Config
this(string[] filenames...)
{
bool found = false;
foreach (filename; filenames) {
if (exists(filename)) {
found = true;
load(filename);
}
}
if (!found) throw new Exception("No config file found");
}
string get(string key)
{
@ -23,7 +28,6 @@ struct Config
private void load(string filename)
{
if (exists(filename)) {
auto file = File(filename, "r");
auto r = regex("(?:^\\s*)(\\w+)(?:\\s*=\\s*\")(.*)(?:\"\\s*$)");
foreach (line; file.byLine()) {
@ -38,7 +42,6 @@ struct Config
}
}
}
}
}
unittest
@ -46,3 +49,12 @@ unittest
auto cfg = Config("empty", "onedrive.conf");
assert(cfg.get("sync_dir") == "~/OneDrive");
}
unittest
{
try {
auto cfg = Config("empty");
assert(0);
} catch (Exception e) {
}
}