forked from lix-project/lix
f5b6fa5256
This is not entirely trivial since this introduces the possibility of mutual recursion. * Made normal forms self-contained. * Use unique ids, not content hashes, for content referencing.
24 lines
451 B
C++
24 lines
451 B
C++
#include "globals.hh"
|
|
#include "db.hh"
|
|
|
|
|
|
string dbPath2Id = "path2id";
|
|
string dbId2Paths = "id2paths";
|
|
string dbSuccessors = "successors";
|
|
string dbSubstitutes = "substitutes";
|
|
|
|
|
|
string nixStore = "/UNINIT";
|
|
string nixDataDir = "/UNINIT";
|
|
string nixLogDir = "/UNINIT";
|
|
string nixDB = "/UNINIT";
|
|
|
|
|
|
void initDB()
|
|
{
|
|
createDB(nixDB, dbPath2Id);
|
|
createDB(nixDB, dbId2Paths);
|
|
createDB(nixDB, dbSuccessors);
|
|
createDB(nixDB, dbSubstitutes);
|
|
}
|