Nix/src/libstore/remote-store.hh

92 lines
1.7 KiB
C++
Raw Normal View History

2006-11-30 19:35:50 +01:00
#ifndef __REMOTE_STORE_H
#define __REMOTE_STORE_H
#include <string>
#include "store-api.hh"
namespace nix {
class Pipe;
class Pid;
struct FdSink;
struct FdSource;
2006-11-30 19:35:50 +01:00
class RemoteStore : public StoreAPI
{
public:
RemoteStore();
~RemoteStore();
/* Implementations of abstract store API methods. */
bool isValidPath(const Path & path);
PathSet queryValidPaths();
2006-11-30 19:35:50 +01:00
Hash queryPathHash(const Path & path);
void queryReferences(const Path & path, PathSet & references);
2006-11-30 19:35:50 +01:00
void queryReferrers(const Path & path, PathSet & referrers);
2006-11-30 19:35:50 +01:00
Path queryDeriver(const Path & path);
bool hasSubstitutes(const Path & path);
bool querySubstitutablePathInfo(const Path & path,
SubstitutablePathInfo & info);
Path addToStore(const Path & srcPath,
bool recursive = true, HashType hashAlgo = htSHA256,
PathFilter & filter = defaultPathFilter);
2006-11-30 19:35:50 +01:00
Path addTextToStore(const string & name, const string & s,
2006-11-30 19:35:50 +01:00
const PathSet & references);
void exportPath(const Path & path, bool sign,
Sink & sink);
Path importPath(bool requireSignature, Source & source);
2006-11-30 19:35:50 +01:00
void buildDerivations(const PathSet & drvPaths);
void ensurePath(const Path & path);
2006-11-30 19:35:50 +01:00
void addTempRoot(const Path & path);
void addIndirectRoot(const Path & path);
void syncWithGC();
Roots findRoots();
void collectGarbage(const GCOptions & options, GCResults & results);
2006-11-30 19:35:50 +01:00
private:
AutoCloseFD fdSocket;
FdSink to;
FdSource from;
Pid child;
unsigned int daemonVersion;
void processStderr(Sink * sink = 0, Source * source = 0);
2006-12-04 14:28:14 +01:00
void forkSlave();
void connectToDaemon();
void setOptions();
2006-11-30 19:35:50 +01:00
};
}
#endif /* !__REMOTE_STORE_H */