about summary refs log tree commit diff
path: root/src/store.hh
blob: 7f6b2456903869c3d54679bce570fc5a7fb73e9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef __STORE_H
#define __STORE_H

#include <string>

#include "hash.hh"
#include "db.hh"

using namespace std;


typedef Hash FSId;

typedef set<FSId> FSIdSet;


/* Copy a path recursively. */
void copyPath(string src, string dst);

/* Register a substitute. */
void registerSubstitute(const FSId & srcId, const FSId & subId);

/* Register a path keyed on its id. */
void registerPath(const Transaction & txn,
    const string & path, const FSId & id);

/* Query the id of a path. */
bool queryPathId(const string & path, FSId & id);

/* Return a path whose contents have the given hash.  If target is
   not empty, ensure that such a path is realised in target (if
   necessary by copying from another location).  If prefix is not
   empty, only return a path that is an descendent of prefix.

   The list of pending ids are those that already being expanded.
   This prevents infinite recursion for ids realised through a
   substitute (since when we build the substitute, we would first try
   to expand the id... kaboom!). */
string expandId(const FSId & id, const string & target = "",
    const string & prefix = "/", FSIdSet pending = FSIdSet(),
    bool ignoreSubstitutes = false);

/* Copy a file to the nixStore directory and register it in dbRefs.
   Return the hash code of the value. */
void addToStore(string srcPath, string & dstPath, FSId & id,
    bool deterministicName = false);

/* Delete a value from the nixStore directory. */
void deleteFromStore(const string & path);

void verifyStore();


#endif /* !__STORE_H */