2020-10-06 11:18:44 +03:00
|
|
|
#pragma once
|
|
|
|
|
2016-04-13 12:15:45 +03:00
|
|
|
#include "eval.hh"
|
|
|
|
|
|
|
|
#include <tuple>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct RegisterPrimOp
|
|
|
|
{
|
2020-06-17 17:54:32 +03:00
|
|
|
struct Info
|
|
|
|
{
|
|
|
|
std::string name;
|
2020-08-24 14:11:56 +03:00
|
|
|
std::vector<std::string> args;
|
|
|
|
size_t arity = 0;
|
|
|
|
const char * doc;
|
|
|
|
PrimOpFun fun;
|
2022-03-25 15:04:18 +02:00
|
|
|
std::optional<ExperimentalFeature> experimentalFeature;
|
2020-06-17 17:54:32 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<Info> PrimOps;
|
2016-04-13 12:15:45 +03:00
|
|
|
static PrimOps * primOps;
|
2020-06-17 17:54:32 +03:00
|
|
|
|
2018-02-08 20:00:53 +02:00
|
|
|
/* You can register a constant by passing an arity of 0. fun
|
|
|
|
will get called during EvalState initialization, so there
|
|
|
|
may be primops not yet added and builtins is not yet sorted. */
|
2020-06-17 17:54:32 +03:00
|
|
|
RegisterPrimOp(
|
|
|
|
std::string name,
|
|
|
|
size_t arity,
|
2021-09-28 23:12:41 +03:00
|
|
|
PrimOpFun fun);
|
2020-08-24 14:11:56 +03:00
|
|
|
|
|
|
|
RegisterPrimOp(Info && info);
|
2016-04-13 12:15:45 +03:00
|
|
|
};
|
|
|
|
|
2018-04-09 17:26:50 +03:00
|
|
|
/* These primops are disabled without enableNativeCode, but plugins
|
|
|
|
may wish to use them in limited contexts without globally enabling
|
|
|
|
them. */
|
2022-03-25 15:04:18 +02:00
|
|
|
|
2018-04-09 17:26:50 +03:00
|
|
|
/* Load a ValueInitializer from a DSO and return whatever it initializes */
|
2022-03-04 20:31:59 +02:00
|
|
|
void prim_importNative(EvalState & state, const PosIdx pos, Value * * args, Value & v);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
2018-04-09 17:26:50 +03:00
|
|
|
/* Execute a program and parse its output */
|
2022-03-04 20:31:59 +02:00
|
|
|
void prim_exec(EvalState & state, const PosIdx pos, Value * * args, Value & v);
|
2018-04-09 17:26:50 +03:00
|
|
|
|
2016-04-13 12:15:45 +03:00
|
|
|
}
|