1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libexpr/flake/flakeref.hh

56 lines
1.3 KiB
C++
Raw Normal View History

#pragma once
2019-02-12 12:23:11 -05:00
#include "types.hh"
#include "hash.hh"
#include "fetchers/fetchers.hh"
2019-02-12 12:23:11 -05:00
#include <variant>
namespace nix {
class Store;
2019-02-12 12:23:11 -05:00
typedef std::string FlakeId;
struct FlakeRef
{
std::shared_ptr<const fetchers::Input> input;
2019-02-12 12:23:11 -05:00
Path subdir;
2019-02-12 12:23:11 -05:00
bool operator==(const FlakeRef & other) const;
2019-04-08 13:03:00 -04:00
FlakeRef(const std::shared_ptr<const fetchers::Input> & input, const Path & subdir)
: input(input), subdir(subdir)
2019-04-08 13:03:00 -04:00
{
assert(input);
2019-04-08 13:03:00 -04:00
}
2019-02-12 12:23:11 -05:00
// FIXME: change to operator <<.
std::string to_string() const;
fetchers::Input::Attrs toAttrs() const;
FlakeRef resolve(ref<Store> store) const;
static FlakeRef fromAttrs(const fetchers::Input::Attrs & attrs);
2020-02-02 05:31:58 -05:00
std::pair<fetchers::Tree, FlakeRef> fetchTree(ref<Store> store) const;
2019-03-10 01:05:05 -05:00
};
std::ostream & operator << (std::ostream & str, const FlakeRef & flakeRef);
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 = {});
std::optional<std::pair<FlakeRef, std::string>> maybeParseFlakeRefWithFragment(
const std::string & url, const std::optional<Path> & baseDir = {});
2019-02-12 12:23:11 -05:00
}