2020-03-30 14:04:18 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.hh"
|
|
|
|
|
|
|
|
#include <variant>
|
|
|
|
|
|
|
|
#include <nlohmann/json_fwd.hpp>
|
|
|
|
|
|
|
|
namespace nix::fetchers {
|
|
|
|
|
|
|
|
/* Wrap bools to prevent string literals (i.e. 'char *') from being
|
|
|
|
cast to a bool in Attr. */
|
|
|
|
template<typename T>
|
|
|
|
struct Explicit {
|
|
|
|
T t;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::variant<std::string, int64_t, Explicit<bool>> Attr;
|
|
|
|
typedef std::map<std::string, Attr> Attrs;
|
|
|
|
|
|
|
|
Attrs jsonToAttrs(const nlohmann::json & json);
|
|
|
|
|
|
|
|
nlohmann::json attrsToJson(const Attrs & attrs);
|
|
|
|
|
|
|
|
std::optional<std::string> maybeGetStrAttr(const Attrs & attrs, const std::string & name);
|
|
|
|
|
|
|
|
std::string getStrAttr(const Attrs & attrs, const std::string & name);
|
|
|
|
|
|
|
|
std::optional<int64_t> maybeGetIntAttr(const Attrs & attrs, const std::string & name);
|
|
|
|
|
|
|
|
int64_t getIntAttr(const Attrs & attrs, const std::string & name);
|
|
|
|
|
|
|
|
std::optional<bool> maybeGetBoolAttr(const Attrs & attrs, const std::string & name);
|
|
|
|
|
|
|
|
bool getBoolAttr(const Attrs & attrs, const std::string & name);
|
|
|
|
|
2020-04-02 12:56:20 +00:00
|
|
|
std::map<std::string, std::string> attrsToQuery(const Attrs & attrs);
|
|
|
|
|
2020-03-30 14:04:18 +00:00
|
|
|
}
|