nix-super/src/globals.hh

53 lines
1.3 KiB
C++
Raw Normal View History

#ifndef __GLOBALS_H
#define __GLOBALS_H
#include <string>
using namespace std;
/* Database names. */
/* dbHash2Paths :: Hash -> [Path]
Maintains a mapping from hashes to lists of paths. This is what we
use to resolve Hash(hash) content descriptors. */
extern string dbHash2Paths;
2003-07-04 15:18:06 +03:00
/* dbSuccessors :: Hash -> Hash
2003-07-04 15:18:06 +03: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 18:45:43 +03:00
2003-07-04 15:18:06 +03:00
Note that a term $y$ is successor of $x$ iff there exists a
2003-07-04 18:29:58 +03:00
sequence of rewrite steps that rewrites $x$ into $y$.
Also note that instead of a successor, $y$ can be any term
equivalent to $x$, that is, reducing to the same result, as long as
$x$ is equal to or a successor of $y$. (This is useful, e.g., for
shared derivate caching over the network).
*/
2003-07-04 15:18:06 +03:00
extern string dbSuccessors;
/* Path names. */
/* nixStore is the directory where we generally store atomic and
derived files. */
extern string nixStore;
/* nixLogDir is the directory where we log various operations. */
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 */