2012-07-18 21:59:03 +03:00
|
|
|
#pragma once
|
2023-04-01 06:18:41 +03:00
|
|
|
///@file
|
2006-11-30 22:13:59 +02:00
|
|
|
|
2022-03-25 06:39:57 +02:00
|
|
|
#include "common-protocol.hh"
|
2020-10-08 18:36:51 +03: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
|
|
|
|
|
2022-12-26 22:21:08 +02:00
|
|
|
#define PROTOCOL_VERSION (1 << 8 | 35)
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
2023-05-26 18:07:25 +03:00
|
|
|
// items being serialised
|
2022-03-09 00:03:03 +02:00
|
|
|
struct DerivedPath;
|
|
|
|
struct BuildResult;
|
|
|
|
struct KeyedBuildResult;
|
2022-03-09 01:09:26 +02:00
|
|
|
struct ValidPathInfo;
|
2022-03-09 00:03:03 +02:00
|
|
|
enum TrustedFlag : bool;
|
|
|
|
|
|
|
|
|
2023-03-27 04:12:25 +03:00
|
|
|
/**
|
2023-05-26 18:07:25 +03:00
|
|
|
* The "worker protocol", used by unix:// and ssh-ng:// stores.
|
2023-03-27 04:12:25 +03:00
|
|
|
*
|
2023-05-26 18:07:25 +03:00
|
|
|
* This `struct` is basically just a `namespace`; We use a type rather
|
|
|
|
* than a namespace just so we can use it as a template argument.
|
2023-03-27 04:12:25 +03:00
|
|
|
*/
|
2023-05-26 18:07:25 +03:00
|
|
|
struct WorkerProto
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Enumeration of all the request types for the protocol.
|
|
|
|
*/
|
|
|
|
enum struct Op : uint64_t;
|
|
|
|
|
2023-10-17 18:15:36 +03:00
|
|
|
/**
|
|
|
|
* Version type for the protocol.
|
|
|
|
*
|
|
|
|
* @todo Convert to struct with separate major vs minor fields.
|
|
|
|
*/
|
|
|
|
using Version = unsigned int;
|
|
|
|
|
2023-04-17 20:40:46 +03:00
|
|
|
/**
|
|
|
|
* A unidirectional read connection, to be used by the read half of the
|
|
|
|
* canonical serializers below.
|
|
|
|
*/
|
|
|
|
struct ReadConn {
|
|
|
|
Source & from;
|
2022-03-25 06:40:49 +02:00
|
|
|
Version version;
|
2023-04-17 20:40:46 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A unidirectional write connection, to be used by the write half of the
|
|
|
|
* canonical serializers below.
|
|
|
|
*/
|
|
|
|
struct WriteConn {
|
|
|
|
Sink & to;
|
2022-03-25 06:40:49 +02:00
|
|
|
Version version;
|
2023-04-17 20:40:46 +03:00
|
|
|
};
|
|
|
|
|
2023-05-26 18:07:25 +03:00
|
|
|
/**
|
|
|
|
* Data type for canonical pairs of serialisers for the worker protocol.
|
|
|
|
*
|
|
|
|
* See https://en.cppreference.com/w/cpp/language/adl for the broader
|
|
|
|
* concept of what is going on here.
|
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
struct Serialise;
|
|
|
|
// This is the definition of `Serialise` we *want* to put here, but
|
|
|
|
// do not do so.
|
|
|
|
//
|
|
|
|
// The problem is that if we do so, C++ will think we have
|
|
|
|
// seralisers for *all* types. We don't, of course, but that won't
|
|
|
|
// cause an error until link time. That makes for long debug cycles
|
|
|
|
// when there is a missing serialiser.
|
|
|
|
//
|
|
|
|
// By not defining it globally, and instead letting individual
|
|
|
|
// serialisers specialise the type, we get back the compile-time
|
|
|
|
// errors we would like. When no serialiser exists, C++ sees an
|
|
|
|
// abstract "incomplete" type with no definition, and any attempt to
|
|
|
|
// use `to` or `from` static methods is a compile-time error because
|
|
|
|
// they don't exist on an incomplete type.
|
|
|
|
//
|
|
|
|
// This makes for a quicker debug cycle, as desired.
|
|
|
|
#if 0
|
|
|
|
{
|
2023-04-17 20:40:46 +03:00
|
|
|
static T read(const Store & store, ReadConn conn);
|
|
|
|
static void write(const Store & store, WriteConn conn, const T & t);
|
2023-05-26 18:07:25 +03:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper function around `WorkerProto::Serialise<T>::write` that allows us to
|
|
|
|
* infer the type instead of having to write it down explicitly.
|
|
|
|
*/
|
|
|
|
template<typename T>
|
2023-04-17 20:40:46 +03:00
|
|
|
static void write(const Store & store, WriteConn conn, const T & t)
|
2023-05-26 18:07:25 +03:00
|
|
|
{
|
2023-04-17 20:40:46 +03:00
|
|
|
WorkerProto::Serialise<T>::write(store, conn, t);
|
2023-05-26 18:07:25 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
enum struct WorkerProto::Op : uint64_t
|
|
|
|
{
|
|
|
|
IsValidPath = 1,
|
|
|
|
HasSubstitutes = 3,
|
|
|
|
QueryPathHash = 4, // obsolete
|
|
|
|
QueryReferences = 5, // obsolete
|
|
|
|
QueryReferrers = 6,
|
|
|
|
AddToStore = 7,
|
|
|
|
AddTextToStore = 8, // obsolete since 1.25, Nix 3.0. Use WorkerProto::Op::AddToStore
|
|
|
|
BuildPaths = 9,
|
|
|
|
EnsurePath = 10,
|
|
|
|
AddTempRoot = 11,
|
|
|
|
AddIndirectRoot = 12,
|
|
|
|
SyncWithGC = 13,
|
|
|
|
FindRoots = 14,
|
|
|
|
ExportPath = 16, // obsolete
|
|
|
|
QueryDeriver = 18, // obsolete
|
|
|
|
SetOptions = 19,
|
|
|
|
CollectGarbage = 20,
|
|
|
|
QuerySubstitutablePathInfo = 21,
|
|
|
|
QueryDerivationOutputs = 22, // obsolete
|
|
|
|
QueryAllValidPaths = 23,
|
|
|
|
QueryFailedPaths = 24,
|
|
|
|
ClearFailedPaths = 25,
|
|
|
|
QueryPathInfo = 26,
|
|
|
|
ImportPaths = 27, // obsolete
|
|
|
|
QueryDerivationOutputNames = 28, // obsolete
|
|
|
|
QueryPathFromHashPart = 29,
|
|
|
|
QuerySubstitutablePathInfos = 30,
|
|
|
|
QueryValidPaths = 31,
|
|
|
|
QuerySubstitutablePaths = 32,
|
|
|
|
QueryValidDerivers = 33,
|
|
|
|
OptimiseStore = 34,
|
|
|
|
VerifyStore = 35,
|
|
|
|
BuildDerivation = 36,
|
|
|
|
AddSignatures = 37,
|
|
|
|
NarFromPath = 38,
|
|
|
|
AddToStoreNar = 39,
|
|
|
|
QueryMissing = 40,
|
|
|
|
QueryDerivationOutputMap = 41,
|
|
|
|
RegisterDrvOutput = 42,
|
|
|
|
QueryRealisation = 43,
|
|
|
|
AddMultipleToStore = 44,
|
|
|
|
AddBuildLog = 45,
|
|
|
|
BuildPathsWithResults = 46,
|
2023-05-18 05:04:59 +03:00
|
|
|
};
|
2020-09-30 03:39:06 +03:00
|
|
|
|
2023-05-18 05:04:59 +03:00
|
|
|
/**
|
2023-05-26 18:07:25 +03:00
|
|
|
* Convenience for sending operation codes.
|
|
|
|
*
|
|
|
|
* @todo Switch to using `WorkerProto::Serialise` instead probably. But
|
|
|
|
* this was not done at this time so there would be less churn.
|
2023-05-18 05:04:59 +03:00
|
|
|
*/
|
2023-05-26 18:07:25 +03:00
|
|
|
inline Sink & operator << (Sink & sink, WorkerProto::Op op)
|
|
|
|
{
|
|
|
|
return sink << (uint64_t) op;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience for debugging.
|
|
|
|
*
|
|
|
|
* @todo Perhaps render known opcodes more nicely.
|
|
|
|
*/
|
|
|
|
inline std::ostream & operator << (std::ostream & s, WorkerProto::Op op)
|
2023-05-18 05:04:59 +03:00
|
|
|
{
|
2023-05-26 18:07:25 +03:00
|
|
|
return s << (uint64_t) op;
|
2023-05-18 05:04:59 +03:00
|
|
|
}
|
2020-09-30 03:39:06 +03:00
|
|
|
|
2023-05-18 05:04:59 +03:00
|
|
|
/**
|
2023-05-26 18:07:25 +03:00
|
|
|
* Declare a canonical serialiser pair for the worker protocol.
|
2023-05-18 05:04:59 +03:00
|
|
|
*
|
2023-05-26 18:07:25 +03:00
|
|
|
* We specialise the struct merely to indicate that we are implementing
|
2023-05-18 05:04:59 +03:00
|
|
|
* the function for the given type.
|
|
|
|
*
|
|
|
|
* Some sort of `template<...>` must be used with the caller for this to
|
|
|
|
* be legal specialization syntax. See below for what that looks like in
|
|
|
|
* practice.
|
|
|
|
*/
|
2022-03-25 06:39:57 +02:00
|
|
|
#define DECLARE_WORKER_SERIALISER(T) \
|
|
|
|
struct WorkerProto::Serialise< T > \
|
|
|
|
{ \
|
2023-04-17 20:40:46 +03:00
|
|
|
static T read(const Store & store, WorkerProto::ReadConn conn); \
|
|
|
|
static void write(const Store & store, WorkerProto::WriteConn conn, const T & t); \
|
2023-05-18 05:04:59 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2022-03-25 06:39:57 +02:00
|
|
|
DECLARE_WORKER_SERIALISER(DerivedPath);
|
2023-05-18 05:04:59 +03:00
|
|
|
template<>
|
2022-03-25 06:39:57 +02:00
|
|
|
DECLARE_WORKER_SERIALISER(BuildResult);
|
2023-05-18 05:04:59 +03:00
|
|
|
template<>
|
2022-03-25 06:39:57 +02:00
|
|
|
DECLARE_WORKER_SERIALISER(KeyedBuildResult);
|
2023-05-18 05:04:59 +03:00
|
|
|
template<>
|
2022-03-25 06:39:57 +02:00
|
|
|
DECLARE_WORKER_SERIALISER(std::optional<TrustedFlag>);
|
2020-09-30 03:39:06 +03:00
|
|
|
|
2023-05-18 05:04:59 +03:00
|
|
|
template<typename T>
|
2022-03-25 06:39:57 +02:00
|
|
|
DECLARE_WORKER_SERIALISER(std::vector<T>);
|
2023-05-18 05:04:59 +03:00
|
|
|
template<typename T>
|
2022-03-25 06:39:57 +02:00
|
|
|
DECLARE_WORKER_SERIALISER(std::set<T>);
|
2023-09-05 01:15:32 +03:00
|
|
|
template<typename... Ts>
|
2022-03-25 06:39:57 +02:00
|
|
|
DECLARE_WORKER_SERIALISER(std::tuple<Ts...>);
|
2020-08-07 01:04:13 +03:00
|
|
|
|
2022-03-25 06:39:57 +02:00
|
|
|
#define COMMA_ ,
|
2023-05-18 05:04:59 +03:00
|
|
|
template<typename K, typename V>
|
2022-03-25 06:39:57 +02:00
|
|
|
DECLARE_WORKER_SERIALISER(std::map<K COMMA_ V>);
|
|
|
|
#undef COMMA_
|
2020-10-07 15:48:35 +03:00
|
|
|
|
2022-03-09 01:09:26 +02:00
|
|
|
/* These are a non-standard form for historical reasons. */
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct WorkerProto::Serialise<ValidPathInfo>
|
|
|
|
{
|
|
|
|
static ValidPathInfo read(const Store & store, WorkerProto::ReadConn conn);
|
|
|
|
static ValidPathInfo read(const Store & store, WorkerProto::ReadConn conn, StorePath && path);
|
|
|
|
|
|
|
|
static void write(const Store & store, WriteConn conn, const ValidPathInfo & pathInfo, bool includePath = true);
|
|
|
|
};
|
|
|
|
|
2020-09-30 03:39:06 +03:00
|
|
|
}
|