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 {
|
|
|
|
|
|
|
|
|
2006-11-30 21:13:59 +01:00
|
|
|
#define WORKER_MAGIC_1 0x6e697864
|
|
|
|
#define WORKER_MAGIC_2 0x6478696e
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
2006-11-30 21:45:20 +01:00
|
|
|
wopQuit,
|
|
|
|
wopIsValidPath,
|
|
|
|
wopQuerySubstitutes,
|
2006-11-30 23:43:55 +01:00
|
|
|
wopHasSubstitutes,
|
|
|
|
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,
|
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
|
|
|
|
|
|
|
|
|
2006-12-04 15:21:39 +01:00
|
|
|
/* The default location of the daemon socket, relative to
|
|
|
|
nixStateDir. */
|
|
|
|
#define DEFAULT_SOCKET_PATH "/daemon.socket"
|
|
|
|
|
|
|
|
|
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 */
|