2019-04-19 12:43:56 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
#include "types.hh"
|
|
|
|
#include "hash.hh"
|
2020-01-31 20:16:40 +02:00
|
|
|
#include "fetchers/fetchers.hh"
|
2019-02-12 19:23:11 +02:00
|
|
|
|
|
|
|
#include <variant>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
class Store;
|
2019-02-12 19:23:11 +02:00
|
|
|
|
|
|
|
typedef std::string FlakeId;
|
|
|
|
|
|
|
|
struct FlakeRef
|
|
|
|
{
|
2020-01-21 17:27:53 +02:00
|
|
|
std::shared_ptr<const fetchers::Input> input;
|
2019-02-12 19:23:11 +02:00
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
Path subdir;
|
2019-02-12 19:23:11 +02:00
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
bool operator==(const FlakeRef & other) const;
|
2019-04-08 20:03:00 +03:00
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
FlakeRef(const std::shared_ptr<const fetchers::Input> & input, const Path & subdir)
|
|
|
|
: input(input), subdir(subdir)
|
2019-04-08 20:03:00 +03:00
|
|
|
{
|
2020-01-21 17:27:53 +02:00
|
|
|
assert(input);
|
2019-04-08 20:03:00 +03:00
|
|
|
}
|
2019-02-21 07:53:01 +02:00
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
// FIXME: change to operator <<.
|
|
|
|
std::string to_string() const;
|
|
|
|
|
2020-03-17 21:54:36 +02:00
|
|
|
fetchers::Attrs toAttrs() const;
|
2020-01-31 20:16:40 +02:00
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
FlakeRef resolve(ref<Store> store) const;
|
2020-01-31 20:16:40 +02:00
|
|
|
|
2020-03-17 21:54:36 +02:00
|
|
|
static FlakeRef fromAttrs(const fetchers::Attrs & attrs);
|
2020-02-02 12:31:58 +02:00
|
|
|
|
|
|
|
std::pair<fetchers::Tree, FlakeRef> fetchTree(ref<Store> store) const;
|
2019-03-10 08:05:05 +02:00
|
|
|
};
|
2019-04-19 12:43:56 +03:00
|
|
|
|
|
|
|
std::ostream & operator << (std::ostream & str, const FlakeRef & flakeRef);
|
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
FlakeRef parseFlakeRef(
|
|
|
|
const std::string & url, const std::optional<Path> & baseDir = {});
|
|
|
|
|
|
|
|
std::optional<FlakeRef> maybeParseFlake(
|
|
|
|
const std::string & url, const std::optional<Path> & baseDir = {});
|
|
|
|
|
|
|
|
std::pair<FlakeRef, std::string> parseFlakeRefWithFragment(
|
|
|
|
const std::string & url, const std::optional<Path> & baseDir = {});
|
2019-05-31 21:53:23 +03:00
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
std::optional<std::pair<FlakeRef, std::string>> maybeParseFlakeRefWithFragment(
|
|
|
|
const std::string & url, const std::optional<Path> & baseDir = {});
|
2019-05-31 21:53:23 +03:00
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
}
|