about summary refs log blame commit diff
path: root/src/globals.cc
blob: 1edb38f7483e64479004ed85484e977cfa2376d9 (plain) (tree)
1
2
3
4
5
6
7
8
9



                     

                               
                                   

                                     
 
                            
                              





                             

                                
                                  
                                   
 
#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);
}