2006-11-30 18:35:50 +00:00
|
|
|
#ifndef __REMOTE_STORE_H
|
|
|
|
#define __REMOTE_STORE_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2006-11-30 19:54:43 +00:00
|
|
|
class Pipe;
|
|
|
|
class Pid;
|
|
|
|
struct FdSink;
|
|
|
|
struct FdSource;
|
|
|
|
|
|
|
|
|
2006-11-30 18:35:50 +00:00
|
|
|
class RemoteStore : public StoreAPI
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
RemoteStore();
|
|
|
|
|
|
|
|
~RemoteStore();
|
|
|
|
|
|
|
|
/* Implementations of abstract store API methods. */
|
|
|
|
|
|
|
|
bool isValidPath(const Path & path);
|
|
|
|
|
2008-01-29 18:17:36 +00:00
|
|
|
PathSet queryValidPaths();
|
|
|
|
|
2006-11-30 18:35:50 +00:00
|
|
|
Hash queryPathHash(const Path & path);
|
|
|
|
|
2006-11-30 22:43:55 +00:00
|
|
|
void queryReferences(const Path & path, PathSet & references);
|
2006-11-30 18:35:50 +00:00
|
|
|
|
2006-11-30 22:43:55 +00:00
|
|
|
void queryReferrers(const Path & path, PathSet & referrers);
|
2006-11-30 18:35:50 +00:00
|
|
|
|
2007-06-12 16:53:44 +00:00
|
|
|
Path queryDeriver(const Path & path);
|
|
|
|
|
2010-02-22 12:44:36 +00:00
|
|
|
PathSet queryDerivationOutputs(const Path & path);
|
|
|
|
|
2007-08-12 00:29:28 +00:00
|
|
|
bool hasSubstitutes(const Path & path);
|
|
|
|
|
2008-08-02 12:54:35 +00:00
|
|
|
bool querySubstitutablePathInfo(const Path & path,
|
|
|
|
SubstitutablePathInfo & info);
|
|
|
|
|
2008-12-03 15:06:30 +00:00
|
|
|
Path addToStore(const Path & srcPath,
|
2008-12-03 16:10:17 +00:00
|
|
|
bool recursive = true, HashType hashAlgo = htSHA256,
|
2006-12-12 23:05:01 +00:00
|
|
|
PathFilter & filter = defaultPathFilter);
|
2006-11-30 18:35:50 +00:00
|
|
|
|
2008-12-03 15:06:30 +00:00
|
|
|
Path addTextToStore(const string & name, const string & s,
|
2006-11-30 18:35:50 +00:00
|
|
|
const PathSet & references);
|
|
|
|
|
2007-02-20 23:17:20 +00:00
|
|
|
void exportPath(const Path & path, bool sign,
|
|
|
|
Sink & sink);
|
|
|
|
|
2007-02-21 15:45:32 +00:00
|
|
|
Path importPath(bool requireSignature, Source & source);
|
|
|
|
|
2006-11-30 18:35:50 +00:00
|
|
|
void buildDerivations(const PathSet & drvPaths);
|
|
|
|
|
2006-11-30 22:43:55 +00:00
|
|
|
void ensurePath(const Path & path);
|
2006-11-30 18:35:50 +00:00
|
|
|
|
2006-12-02 16:41:36 +00:00
|
|
|
void addTempRoot(const Path & path);
|
|
|
|
|
2006-12-04 23:29:16 +00:00
|
|
|
void addIndirectRoot(const Path & path);
|
|
|
|
|
2006-12-02 16:41:36 +00:00
|
|
|
void syncWithGC();
|
|
|
|
|
2006-12-05 01:31:45 +00:00
|
|
|
Roots findRoots();
|
2006-12-05 02:18:46 +00:00
|
|
|
|
2008-06-18 09:34:17 +00:00
|
|
|
void collectGarbage(const GCOptions & options, GCResults & results);
|
2006-12-05 01:31:45 +00:00
|
|
|
|
2006-11-30 18:35:50 +00:00
|
|
|
private:
|
2006-12-04 14:21:39 +00:00
|
|
|
AutoCloseFD fdSocket;
|
2006-11-30 19:54:43 +00:00
|
|
|
FdSink to;
|
|
|
|
FdSource from;
|
|
|
|
Pid child;
|
2007-11-16 16:15:26 +00:00
|
|
|
unsigned int daemonVersion;
|
2008-12-11 14:30:25 +00:00
|
|
|
bool initialised;
|
|
|
|
|
|
|
|
void openConnection();
|
2006-12-03 02:08:13 +00:00
|
|
|
|
2007-02-21 17:34:02 +00:00
|
|
|
void processStderr(Sink * sink = 0, Source * source = 0);
|
2006-12-04 13:28:14 +00:00
|
|
|
|
|
|
|
void forkSlave();
|
2006-12-04 14:21:39 +00:00
|
|
|
|
|
|
|
void connectToDaemon();
|
2007-09-18 09:11:20 +00:00
|
|
|
|
|
|
|
void setOptions();
|
2006-11-30 18:35:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__REMOTE_STORE_H */
|