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-03-30 15:03:28 +03:00
|
|
|
#include "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
|
|
|
|
{
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
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
|
|
|
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
FlakeRef(fetchers::Input && input, const Path & subdir)
|
|
|
|
: input(std::move(input)), subdir(subdir)
|
|
|
|
{ }
|
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(
|
2020-04-27 23:53:11 +03:00
|
|
|
const std::string & url, const std::optional<Path> & baseDir = {}, bool allowMissing = false);
|
2020-01-21 17:27:53 +02:00
|
|
|
|
|
|
|
std::optional<FlakeRef> maybeParseFlake(
|
|
|
|
const std::string & url, const std::optional<Path> & baseDir = {});
|
|
|
|
|
|
|
|
std::pair<FlakeRef, std::string> parseFlakeRefWithFragment(
|
2020-04-27 23:53:11 +03:00
|
|
|
const std::string & url, const std::optional<Path> & baseDir = {}, bool allowMissing = false);
|
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
|
|
|
}
|