2021-10-25 13:53:01 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "comparator.hh"
|
|
|
|
|
#include "error.hh"
|
|
|
|
|
#include "nlohmann/json_fwd.hpp"
|
|
|
|
|
#include "types.hh"
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The list of available experimental features.
|
|
|
|
|
*
|
|
|
|
|
* If you update this, don’t forget to also change the map defining their
|
|
|
|
|
* string representation in the corresponding `.cc` file.
|
|
|
|
|
**/
|
|
|
|
|
enum struct ExperimentalFeature
|
|
|
|
|
{
|
|
|
|
|
CaDerivations,
|
2022-03-30 14:31:01 +00:00
|
|
|
|
ImpureDerivations,
|
2021-10-25 13:53:01 +00:00
|
|
|
|
Flakes,
|
|
|
|
|
NixCommand,
|
|
|
|
|
RecursiveNix,
|
2022-02-28 23:54:20 +00:00
|
|
|
|
NoUrlLiterals,
|
2022-03-24 20:33:20 +00:00
|
|
|
|
FetchClosure,
|
2022-05-20 12:20:00 +00:00
|
|
|
|
ReplFlake,
|
2022-02-28 23:54:20 +00:00
|
|
|
|
AutoAllocateUids,
|
2022-11-18 09:39:28 +00:00
|
|
|
|
Cgroups,
|
2022-09-23 21:30:29 +00:00
|
|
|
|
DiscardReferences,
|
2021-10-25 13:53:01 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Just because writing `ExperimentalFeature::CaDerivations` is way too long
|
|
|
|
|
*/
|
|
|
|
|
using Xp = ExperimentalFeature;
|
|
|
|
|
|
|
|
|
|
const std::optional<ExperimentalFeature> parseExperimentalFeature(
|
|
|
|
|
const std::string_view & name);
|
|
|
|
|
std::string_view showExperimentalFeature(const ExperimentalFeature);
|
|
|
|
|
|
|
|
|
|
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 unkwown feature.
|
|
|
|
|
*/
|
|
|
|
|
std::set<ExperimentalFeature> parseFeatures(const std::set<std::string> &);
|
|
|
|
|
|
|
|
|
|
class MissingExperimentalFeature : public Error
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ExperimentalFeature missingFeature;
|
|
|
|
|
|
|
|
|
|
MissingExperimentalFeature(ExperimentalFeature);
|
|
|
|
|
};
|
|
|
|
|
|
2022-04-20 13:41:01 +00:00
|
|
|
|
/**
|
|
|
|
|
* Semi-magic conversion to and from json.
|
|
|
|
|
* See the nlohmann/json readme for more details.
|
|
|
|
|
*/
|
2022-05-03 12:37:28 +00:00
|
|
|
|
void to_json(nlohmann::json &, const ExperimentalFeature &);
|
|
|
|
|
void from_json(const nlohmann::json &, ExperimentalFeature &);
|
2022-04-20 13:41:01 +00:00
|
|
|
|
|
2021-10-25 13:53:01 +00:00
|
|
|
|
}
|