2012-07-18 20:59:03 +02:00
|
|
|
#pragma once
|
2006-11-30 21:13:59 +01:00
|
|
|
|
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
|
|
|
|
|
2016-04-20 15:28:07 +02:00
|
|
|
#define PROTOCOL_VERSION 0x111
|
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 {
|
2008-06-18 11:34:17 +02:00
|
|
|
wopIsValidPath = 1,
|
2007-08-13 13:15:13 +02:00
|
|
|
wopHasSubstitutes = 3,
|
2016-04-19 18:50:15 +02:00
|
|
|
wopQueryPathHash = 4, // obsolete
|
|
|
|
wopQueryReferences = 5, // obsolete
|
2008-06-18 11:34:17 +02:00
|
|
|
wopQueryReferrers = 6,
|
|
|
|
wopAddToStore = 7,
|
|
|
|
wopAddTextToStore = 8,
|
2012-06-27 22:58:15 +02:00
|
|
|
wopBuildPaths = 9,
|
2008-06-18 11:34:17 +02:00
|
|
|
wopEnsurePath = 10,
|
|
|
|
wopAddTempRoot = 11,
|
|
|
|
wopAddIndirectRoot = 12,
|
|
|
|
wopSyncWithGC = 13,
|
|
|
|
wopFindRoots = 14,
|
2016-05-04 13:36:54 +02:00
|
|
|
wopExportPath = 16, // obsolete
|
2016-04-19 18:50:15 +02:00
|
|
|
wopQueryDeriver = 18, // obsolete
|
2008-06-18 11:34:17 +02:00
|
|
|
wopSetOptions = 19,
|
|
|
|
wopCollectGarbage = 20,
|
2008-08-04 13:44:50 +02:00
|
|
|
wopQuerySubstitutablePathInfo = 21,
|
2010-02-25 16:52:22 +01:00
|
|
|
wopQueryDerivationOutputs = 22,
|
2012-07-11 16:49:04 +02:00
|
|
|
wopQueryAllValidPaths = 23,
|
2010-05-04 12:45:10 +02:00
|
|
|
wopQueryFailedPaths = 24,
|
|
|
|
wopClearFailedPaths = 25,
|
2010-11-17 13:08:01 +01:00
|
|
|
wopQueryPathInfo = 26,
|
2016-05-04 13:36:54 +02:00
|
|
|
wopImportPaths = 27, // obsolete
|
2011-12-17 00:33:01 +01:00
|
|
|
wopQueryDerivationOutputNames = 28,
|
2012-07-18 00:55:39 +02:00
|
|
|
wopQueryPathFromHashPart = 29,
|
2012-07-18 16:47:59 +02:00
|
|
|
wopQuerySubstitutablePathInfos = 30,
|
|
|
|
wopQueryValidPaths = 31,
|
|
|
|
wopQuerySubstitutablePaths = 32,
|
2012-12-20 18:41:44 +01:00
|
|
|
wopQueryValidDerivers = 33,
|
2015-06-01 23:20:11 +02:00
|
|
|
wopOptimiseStore = 34,
|
2015-09-03 12:56:59 +02:00
|
|
|
wopVerifyStore = 35,
|
|
|
|
wopBuildDerivation = 36,
|
2016-04-05 15:30:22 +02:00
|
|
|
wopAddSignatures = 37,
|
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-05 02:31:45 +01:00
|
|
|
Path readStorePath(Source & from);
|
2011-12-16 23:31:25 +01:00
|
|
|
template<class T> T readStorePaths(Source & from);
|
2006-12-05 02:31:45 +01:00
|
|
|
|
2012-07-30 23:13:25 +02:00
|
|
|
|
2006-12-05 02:31:45 +01:00
|
|
|
}
|