nix-super/src/globals.cc

33 lines
528 B
C++
Raw Normal View History

#include "globals.hh"
#include "db.hh"
Database nixDB;
string dbPath2Id = "path2id";
string dbId2Paths = "id2paths";
2003-07-04 15:18:06 +03:00
string dbSuccessors = "successors";
string dbSubstitutes = "substitutes";
string nixStore = "/UNINIT";
string nixDataDir = "/UNINIT";
string nixLogDir = "/UNINIT";
string nixDBPath = "/UNINIT";
void openDB()
{
nixDB.open(nixDBPath);
}
void initDB()
{
nixDB.createTable(dbPath2Id);
nixDB.createTable(dbId2Paths);
nixDB.createTable(dbSuccessors);
nixDB.createTable(dbSubstitutes);
}