2012-07-18 21:59:03 +03:00
|
|
|
#pragma once
|
2006-11-30 22:13:59 +02:00
|
|
|
|
2006-12-05 03:31:45 +02:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2007-09-18 12:11:20 +03:00
|
|
|
#define WORKER_MAGIC_1 0x6e697863
|
|
|
|
#define WORKER_MAGIC_2 0x6478696f
|
|
|
|
|
2020-09-17 20:27:11 +03:00
|
|
|
#define PROTOCOL_VERSION 0x119
|
2007-09-18 12:11:20 +03:00
|
|
|
#define GET_PROTOCOL_MAJOR(x) ((x) & 0xff00)
|
2007-11-16 18:15:26 +02:00
|
|
|
#define GET_PROTOCOL_MINOR(x) ((x) & 0x00ff)
|
2006-11-30 22:13:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
2008-06-18 12:34:17 +03:00
|
|
|
wopIsValidPath = 1,
|
2007-08-13 14:15:13 +03:00
|
|
|
wopHasSubstitutes = 3,
|
2016-04-19 19:50:15 +03:00
|
|
|
wopQueryPathHash = 4, // obsolete
|
|
|
|
wopQueryReferences = 5, // obsolete
|
2008-06-18 12:34:17 +03:00
|
|
|
wopQueryReferrers = 6,
|
|
|
|
wopAddToStore = 7,
|
|
|
|
wopAddTextToStore = 8,
|
2012-06-27 23:58:15 +03:00
|
|
|
wopBuildPaths = 9,
|
2008-06-18 12:34:17 +03:00
|
|
|
wopEnsurePath = 10,
|
|
|
|
wopAddTempRoot = 11,
|
|
|
|
wopAddIndirectRoot = 12,
|
|
|
|
wopSyncWithGC = 13,
|
|
|
|
wopFindRoots = 14,
|
2016-05-04 14:36:54 +03:00
|
|
|
wopExportPath = 16, // obsolete
|
2016-04-19 19:50:15 +03:00
|
|
|
wopQueryDeriver = 18, // obsolete
|
2008-06-18 12:34:17 +03:00
|
|
|
wopSetOptions = 19,
|
|
|
|
wopCollectGarbage = 20,
|
2008-08-04 14:44:50 +03:00
|
|
|
wopQuerySubstitutablePathInfo = 21,
|
2020-06-10 12:20:52 +03:00
|
|
|
wopQueryDerivationOutputs = 22, // obsolete
|
2012-07-11 17:49:04 +03:00
|
|
|
wopQueryAllValidPaths = 23,
|
2010-05-04 13:45:10 +03:00
|
|
|
wopQueryFailedPaths = 24,
|
|
|
|
wopClearFailedPaths = 25,
|
2010-11-17 14:08:01 +02:00
|
|
|
wopQueryPathInfo = 26,
|
2016-05-04 14:36:54 +03:00
|
|
|
wopImportPaths = 27, // obsolete
|
2020-06-12 13:46:33 +03:00
|
|
|
wopQueryDerivationOutputNames = 28, // obsolete
|
2012-07-18 01:55:39 +03:00
|
|
|
wopQueryPathFromHashPart = 29,
|
2012-07-18 17:47:59 +03:00
|
|
|
wopQuerySubstitutablePathInfos = 30,
|
|
|
|
wopQueryValidPaths = 31,
|
|
|
|
wopQuerySubstitutablePaths = 32,
|
2012-12-20 19:41:44 +02:00
|
|
|
wopQueryValidDerivers = 33,
|
2015-06-02 00:20:11 +03:00
|
|
|
wopOptimiseStore = 34,
|
2015-09-03 13:56:59 +03:00
|
|
|
wopVerifyStore = 35,
|
|
|
|
wopBuildDerivation = 36,
|
2016-04-05 16:30:22 +03:00
|
|
|
wopAddSignatures = 37,
|
2016-09-02 21:33:58 +03:00
|
|
|
wopNarFromPath = 38,
|
2017-04-06 19:40:19 +03:00
|
|
|
wopAddToStoreNar = 39,
|
|
|
|
wopQueryMissing = 40,
|
2020-06-10 12:20:52 +03:00
|
|
|
wopQueryDerivationOutputMap = 41,
|
2006-11-30 22:13:59 +02:00
|
|
|
} WorkerOp;
|
|
|
|
|
|
|
|
|
2006-12-03 04:08:13 +02:00
|
|
|
#define STDERR_NEXT 0x6f6c6d67
|
2007-02-21 19:34:02 +02:00
|
|
|
#define STDERR_READ 0x64617461 // data needed from source
|
|
|
|
#define STDERR_WRITE 0x64617416 // data for sink
|
2006-12-03 04:08:13 +02:00
|
|
|
#define STDERR_LAST 0x616c7473
|
|
|
|
#define STDERR_ERROR 0x63787470
|
2017-08-28 19:49:42 +03:00
|
|
|
#define STDERR_START_ACTIVITY 0x53545254
|
|
|
|
#define STDERR_STOP_ACTIVITY 0x53544f50
|
|
|
|
#define STDERR_RESULT 0x52534c54
|
2006-12-03 04:08:13 +02:00
|
|
|
|
|
|
|
|
2018-09-24 14:53:44 +03:00
|
|
|
class Store;
|
2019-10-30 21:38:02 +02:00
|
|
|
struct Source;
|
2018-09-24 14:53:44 +03:00
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
template<class T> T readStorePaths(const Store & store, Source & from);
|
|
|
|
|
|
|
|
void writeStorePaths(const Store & store, Sink & out, const StorePathSet & paths);
|
2006-12-05 03:31:45 +02:00
|
|
|
|
2020-07-25 00:02:51 +03:00
|
|
|
/* To guide overloading */
|
|
|
|
template<typename T>
|
2020-08-05 22:44:08 +03:00
|
|
|
struct Phantom {};
|
2020-07-25 00:02:51 +03:00
|
|
|
|
2020-08-05 23:37:48 +03:00
|
|
|
|
|
|
|
namespace worker_proto {
|
|
|
|
/* FIXME maybe move more stuff inside here */
|
|
|
|
|
2020-08-06 00:49:45 +03:00
|
|
|
StorePath read(const Store & store, Source & from, Phantom<StorePath> _);
|
|
|
|
void write(const Store & store, Sink & out, const StorePath & storePath);
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
std::map<std::string, T> read(const Store & store, Source & from, Phantom<std::map<std::string, T>> _);
|
|
|
|
template<typename T>
|
|
|
|
void write(const Store & store, Sink & out, const std::map<string, T> & resMap);
|
|
|
|
template<typename T>
|
|
|
|
std::optional<T> read(const Store & store, Source & from, Phantom<std::optional<T>> _);
|
|
|
|
template<typename T>
|
|
|
|
void write(const Store & store, Sink & out, const std::optional<T> & optVal);
|
|
|
|
|
2020-08-07 20:05:14 +03:00
|
|
|
/* Specialization which uses and empty string for the empty case, taking
|
|
|
|
advantage of the fact StorePaths always serialize to a non-empty string.
|
|
|
|
This is done primarily for backwards compatability, so that StorePath <=
|
|
|
|
std::optional<StorePath>, where <= is the compatability partial order.
|
|
|
|
*/
|
|
|
|
template<>
|
|
|
|
void write(const Store & store, Sink & out, const std::optional<StorePath> & optVal);
|
2020-08-06 00:49:45 +03:00
|
|
|
|
2020-07-25 00:02:51 +03:00
|
|
|
template<typename T>
|
2020-08-05 22:44:08 +03:00
|
|
|
std::map<std::string, T> read(const Store & store, Source & from, Phantom<std::map<std::string, T>> _)
|
2020-07-25 00:02:51 +03:00
|
|
|
{
|
|
|
|
std::map<string, T> resMap;
|
|
|
|
auto size = (size_t)readInt(from);
|
|
|
|
while (size--) {
|
|
|
|
auto thisKey = readString(from);
|
2020-08-05 23:37:48 +03:00
|
|
|
resMap.insert_or_assign(std::move(thisKey), nix::worker_proto::read(store, from, Phantom<T> {}));
|
2020-07-25 00:02:51 +03:00
|
|
|
}
|
|
|
|
return resMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void write(const Store & store, Sink & out, const std::map<string, T> & resMap)
|
|
|
|
{
|
|
|
|
out << resMap.size();
|
|
|
|
for (auto & i : resMap) {
|
|
|
|
out << i.first;
|
2020-08-05 23:37:48 +03:00
|
|
|
nix::worker_proto::write(store, out, i.second);
|
2020-07-25 00:02:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
2020-08-05 22:44:08 +03:00
|
|
|
std::optional<T> read(const Store & store, Source & from, Phantom<std::optional<T>> _)
|
2020-07-25 00:02:51 +03:00
|
|
|
{
|
|
|
|
auto tag = readNum<uint8_t>(from);
|
|
|
|
switch (tag) {
|
|
|
|
case 0:
|
|
|
|
return std::nullopt;
|
|
|
|
case 1:
|
2020-08-05 23:37:48 +03:00
|
|
|
return nix::worker_proto::read(store, from, Phantom<T> {});
|
2020-07-25 00:02:51 +03:00
|
|
|
default:
|
|
|
|
throw Error("got an invalid tag bit for std::optional: %#04x", tag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void write(const Store & store, Sink & out, const std::optional<T> & optVal)
|
|
|
|
{
|
|
|
|
out << (optVal ? 1 : 0);
|
|
|
|
if (optVal)
|
2020-08-05 23:37:48 +03:00
|
|
|
nix::worker_proto::write(store, out, *optVal);
|
2020-07-25 00:02:51 +03:00
|
|
|
}
|
|
|
|
|
2012-07-31 00:13:25 +03:00
|
|
|
|
2020-08-05 23:37:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-22 20:08:11 +03:00
|
|
|
StorePathCAMap readStorePathCAMap(const Store & store, Source & from);
|
2020-06-20 01:06:19 +03:00
|
|
|
|
|
|
|
void writeStorePathCAMap(const Store & store, Sink & out, const StorePathCAMap & paths);
|
|
|
|
|
2006-12-05 03:31:45 +02:00
|
|
|
}
|