1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#pragma once
///@file
#include "lix/libutil/error.hh"
#include "lix/libutil/json-fwd.hh"
#include "lix/libutil/types.hh"
#include <type_traits>
namespace nix {
/**
* The list of available experimental features.
*/
enum struct ExperimentalFeature {
#include "lix/libutil/experimental-features.gen.inc"
NumXpFeatures, // number of available experimental features, do not use
};
template<>
struct json::avoids_null<ExperimentalFeature> : std::true_type
{};
enum struct ExperimentalFeatures {};
inline ExperimentalFeatures operator| (ExperimentalFeatures a, ExperimentalFeatures b) {
return static_cast<ExperimentalFeatures>(static_cast<size_t>(a) | static_cast<size_t>(b));
}
inline ExperimentalFeatures operator| (ExperimentalFeatures a, ExperimentalFeature b) {
return a | static_cast<ExperimentalFeatures>(1 << static_cast<size_t>(b));
}
inline ExperimentalFeatures operator& (ExperimentalFeatures a, ExperimentalFeature b) {
return static_cast<ExperimentalFeatures>(static_cast<size_t>(a) & (1 << static_cast<size_t>(b)));
}
/**
* Just because writing `ExperimentalFeature::CaDerivations` is way too long
*/
using Xp = ExperimentalFeature;
/**
* Parse an experimental feature (enum value) from its name. Experimental
* feature flag names are hyphenated and do not contain spaces.
*/
const std::optional<ExperimentalFeature> parseExperimentalFeature(
const std::string_view & name);
/**
* Show the name of an experimental feature. This is the opposite of
* parseExperimentalFeature().
*/
std::string_view showExperimentalFeature(const ExperimentalFeature);
/**
* Shorthand for `str << showExperimentalFeature(feature)`.
*/
std::ostream & operator<<(
std::ostream & str,
const ExperimentalFeature & feature);
/**
* Parse a set of strings to the corresponding set of experimental
* features, ignoring (but warning for) any unknown feature.
*/
ExperimentalFeatures parseFeatures(const std::set<std::string> &);
/**
* Compute the documentation of all experimental features.
*
* See `doc/manual` for how this information is used.
*/
JSON documentExperimentalFeatures();
/**
* Semi-magic conversion to and from json.
* See the nlohmann/json readme for more details.
*/
void to_json(JSON &, const ExperimentalFeature &);
void from_json(const JSON &, ExperimentalFeature &);
void to_json(JSON &, const ExperimentalFeatures &);
void from_json(const JSON &, ExperimentalFeatures &);
/**
* An experimental feature was required for some (experimental)
* operation, but was not enabled.
*/
class MissingExperimentalFeature : public Error
{
public:
/**
* The experimental feature that was required but not enabled.
*/
ExperimentalFeature missingFeature;
MissingExperimentalFeature(ExperimentalFeature missingFeature);
};
}
|