2003-06-16 15:33:38 +02:00
|
|
|
#ifndef __GLOBALS_H
|
|
|
|
#define __GLOBALS_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
|
|
/* Database names. */
|
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
/* dbRefs :: Hash -> Path
|
|
|
|
|
|
|
|
Maintains a mapping from hashes to paths. This is what we use to
|
|
|
|
resolve CHash(hash) content descriptors. */
|
2003-06-16 15:33:38 +02:00
|
|
|
extern string dbRefs;
|
|
|
|
|
2003-07-04 14:18:06 +02:00
|
|
|
/* dbSuccessors :: Hash -> Hash
|
2003-06-16 15:33:38 +02:00
|
|
|
|
2003-07-04 14:18:06 +02:00
|
|
|
Each pair (h1, h2) in this mapping records the fact that a
|
|
|
|
successor of an fstate expression with hash h1 is stored in a file
|
|
|
|
with hash h2.
|
2003-06-17 17:45:43 +02:00
|
|
|
|
2003-07-04 14:18:06 +02:00
|
|
|
Note that a term $y$ is successor of $x$ iff there exists a
|
|
|
|
sequence of rewrite steps that rewrites $x$ into $y$. */
|
|
|
|
extern string dbSuccessors;
|
2003-06-16 15:33:38 +02:00
|
|
|
|
|
|
|
/* dbNetSources :: Hash -> URL
|
|
|
|
|
|
|
|
Each pair (hash, url) in this mapping states that the value
|
|
|
|
identified by hash can be obtained by fetching the value pointed
|
|
|
|
to by url.
|
|
|
|
|
|
|
|
TODO: this should be Hash -> [URL]
|
|
|
|
|
|
|
|
TODO: factor this out into a separate tool? */
|
|
|
|
extern string dbNetSources;
|
|
|
|
|
|
|
|
|
|
|
|
/* Path names. */
|
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
/* nixStore is the directory where we generally store atomic and
|
|
|
|
derived files. */
|
|
|
|
extern string nixStore;
|
2003-06-16 15:33:38 +02:00
|
|
|
|
2003-06-27 15:55:12 +02:00
|
|
|
/* nixLogDir is the directory where we log various operations. */
|
2003-06-16 15:33:38 +02:00
|
|
|
extern string nixLogDir;
|
|
|
|
|
|
|
|
/* nixDB is the file name of the Berkeley DB database where we
|
|
|
|
maintain the dbXXX mappings. */
|
|
|
|
extern string nixDB;
|
|
|
|
|
|
|
|
|
|
|
|
/* Initialize the databases. */
|
|
|
|
void initDB();
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__GLOBALS_H */
|