2006-11-30 20:13:59 +00:00
|
|
|
#ifndef __WORKER_PROTOCOL_H
|
|
|
|
#define __WORKER_PROTOCOL_H
|
|
|
|
|
|
|
|
|
2006-12-05 01:31:45 +00:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2007-09-18 09:11:20 +00:00
|
|
|
#define WORKER_MAGIC_1 0x6e697863
|
|
|
|
#define WORKER_MAGIC_2 0x6478696f
|
|
|
|
|
2012-05-30 02:59:12 +00:00
|
|
|
#define PROTOCOL_VERSION 0x10b
|
2007-09-18 09:11:20 +00:00
|
|
|
#define GET_PROTOCOL_MAJOR(x) ((x) & 0xff00)
|
2007-11-16 16:15:26 +00:00
|
|
|
#define GET_PROTOCOL_MINOR(x) ((x) & 0x00ff)
|
2006-11-30 20:13:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
2007-08-13 11:15:13 +00:00
|
|
|
wopQuit = 0,
|
2008-06-18 09:34:17 +00:00
|
|
|
wopIsValidPath = 1,
|
2007-08-13 11:15:13 +00:00
|
|
|
wopHasSubstitutes = 3,
|
2008-06-18 09:34:17 +00:00
|
|
|
wopQueryPathHash = 4,
|
|
|
|
wopQueryReferences = 5,
|
|
|
|
wopQueryReferrers = 6,
|
|
|
|
wopAddToStore = 7,
|
|
|
|
wopAddTextToStore = 8,
|
2012-06-27 20:58:15 +00:00
|
|
|
wopBuildPaths = 9,
|
2008-06-18 09:34:17 +00:00
|
|
|
wopEnsurePath = 10,
|
|
|
|
wopAddTempRoot = 11,
|
|
|
|
wopAddIndirectRoot = 12,
|
|
|
|
wopSyncWithGC = 13,
|
|
|
|
wopFindRoots = 14,
|
|
|
|
wopExportPath = 16,
|
|
|
|
wopQueryDeriver = 18,
|
|
|
|
wopSetOptions = 19,
|
|
|
|
wopCollectGarbage = 20,
|
2008-08-04 11:44:50 +00:00
|
|
|
wopQuerySubstitutablePathInfo = 21,
|
2010-02-25 15:52:22 +00:00
|
|
|
wopQueryDerivationOutputs = 22,
|
2010-02-26 12:05:01 +00:00
|
|
|
wopQueryValidPaths = 23,
|
2010-05-04 10:45:10 +00:00
|
|
|
wopQueryFailedPaths = 24,
|
|
|
|
wopClearFailedPaths = 25,
|
2010-11-17 12:08:01 +00:00
|
|
|
wopQueryPathInfo = 26,
|
2011-12-16 22:31:25 +00:00
|
|
|
wopImportPaths = 27,
|
2011-12-16 23:33:01 +00:00
|
|
|
wopQueryDerivationOutputNames = 28,
|
2006-11-30 20:13:59 +00:00
|
|
|
} WorkerOp;
|
|
|
|
|
|
|
|
|
2006-12-03 02:08:13 +00:00
|
|
|
#define STDERR_NEXT 0x6f6c6d67
|
2007-02-21 17:34:02 +00:00
|
|
|
#define STDERR_READ 0x64617461 // data needed from source
|
|
|
|
#define STDERR_WRITE 0x64617416 // data for sink
|
2006-12-03 02:08:13 +00:00
|
|
|
#define STDERR_LAST 0x616c7473
|
|
|
|
#define STDERR_ERROR 0x63787470
|
|
|
|
|
|
|
|
|
2007-08-30 09:50:44 +00:00
|
|
|
/* The default location of the daemon socket, relative to nixStateDir.
|
|
|
|
The socket is in a directory to allow you to control access to the
|
|
|
|
Nix daemon by setting the mode/ownership of the directory
|
|
|
|
appropriately. (This wouldn't work on the socket itself since it
|
|
|
|
must be deleted and recreated on startup.) */
|
|
|
|
#define DEFAULT_SOCKET_PATH "/daemon-socket/socket"
|
2006-12-04 14:21:39 +00:00
|
|
|
|
|
|
|
|
2006-12-05 01:31:45 +00:00
|
|
|
Path readStorePath(Source & from);
|
2011-12-16 22:31:25 +00:00
|
|
|
template<class T> T readStorePaths(Source & from);
|
2006-12-05 01:31:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 20:13:59 +00:00
|
|
|
#endif /* !__WORKER_PROTOCOL_H */
|