2006-11-30 21:13:59 +01:00
|
|
|
#ifndef __WORKER_PROTOCOL_H
|
|
|
|
#define __WORKER_PROTOCOL_H
|
|
|
|
|
|
|
|
|
2006-12-05 02:31:45 +01:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2007-09-18 11:11:20 +02:00
|
|
|
#define WORKER_MAGIC_1 0x6e697863
|
|
|
|
#define WORKER_MAGIC_2 0x6478696f
|
|
|
|
|
2007-11-16 17:15:26 +01:00
|
|
|
#define PROTOCOL_VERSION 0x102
|
2007-09-18 11:11:20 +02:00
|
|
|
#define GET_PROTOCOL_MAJOR(x) ((x) & 0xff00)
|
2007-11-16 17:15:26 +01:00
|
|
|
#define GET_PROTOCOL_MINOR(x) ((x) & 0x00ff)
|
2006-11-30 21:13:59 +01:00
|
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
2007-08-13 13:15:13 +02:00
|
|
|
wopQuit = 0,
|
2006-11-30 21:45:20 +01:00
|
|
|
wopIsValidPath,
|
2007-08-13 13:15:13 +02:00
|
|
|
wopHasSubstitutes = 3,
|
2006-11-30 23:43:55 +01:00
|
|
|
wopQueryPathHash,
|
|
|
|
wopQueryReferences,
|
|
|
|
wopQueryReferrers,
|
2006-11-30 21:45:20 +01:00
|
|
|
wopAddToStore,
|
|
|
|
wopAddTextToStore,
|
2006-11-30 23:43:55 +01:00
|
|
|
wopBuildDerivations,
|
|
|
|
wopEnsurePath,
|
2006-12-02 17:41:36 +01:00
|
|
|
wopAddTempRoot,
|
2006-12-05 00:29:16 +01:00
|
|
|
wopAddIndirectRoot,
|
|
|
|
wopSyncWithGC,
|
2006-12-05 02:31:45 +01:00
|
|
|
wopFindRoots,
|
2006-12-05 03:18:46 +01:00
|
|
|
wopCollectGarbage,
|
2007-02-21 17:34:00 +01:00
|
|
|
wopExportPath,
|
|
|
|
wopImportPath,
|
2007-06-12 18:53:44 +02:00
|
|
|
wopQueryDeriver,
|
2007-09-18 11:11:20 +02:00
|
|
|
wopSetOptions,
|
2006-11-30 21:13:59 +01:00
|
|
|
} WorkerOp;
|
|
|
|
|
|
|
|
|
2006-12-03 03:08:13 +01:00
|
|
|
#define STDERR_NEXT 0x6f6c6d67
|
2007-02-21 18:34:02 +01:00
|
|
|
#define STDERR_READ 0x64617461 // data needed from source
|
|
|
|
#define STDERR_WRITE 0x64617416 // data for sink
|
2006-12-03 03:08:13 +01:00
|
|
|
#define STDERR_LAST 0x616c7473
|
|
|
|
#define STDERR_ERROR 0x63787470
|
|
|
|
|
|
|
|
|
2007-08-30 11:50:44 +02: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 15:21:39 +01:00
|
|
|
|
|
|
|
|
2006-12-05 02:31:45 +01:00
|
|
|
Path readStorePath(Source & from);
|
|
|
|
PathSet readStorePaths(Source & from);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 21:13:59 +01:00
|
|
|
#endif /* !__WORKER_PROTOCOL_H */
|