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;
|
|
|
|
|
2020-09-28 19:37:26 +03:00
|
|
|
/* A flake reference specifies how to fetch a flake or raw source
|
|
|
|
* (e.g. from a Git repository). It is created from a URL-like syntax
|
|
|
|
* (e.g. 'github:NixOS/patchelf'), an attrset representation (e.g. '{
|
|
|
|
* type="github"; owner = "NixOS"; repo = "patchelf"; }'), or a local
|
|
|
|
* path.
|
|
|
|
*
|
|
|
|
* Each flake will have a number of FlakeRef objects: one for each
|
|
|
|
* input to the flake.
|
|
|
|
*
|
|
|
|
* The normal method of constructing a FlakeRef is by starting with an
|
|
|
|
* input description (usually the attrs or a url from the flake file),
|
|
|
|
* locating a fetcher for that input, and then capturing the Input
|
|
|
|
* object that fetcher generates (usually via
|
|
|
|
* FlakeRef::fromAttrs(attrs) or parseFlakeRef(url) calls).
|
|
|
|
*
|
|
|
|
* The actual fetch not have been performed yet (i.e. a FlakeRef may
|
|
|
|
* be lazy), but the fetcher can be invoked at any time via the
|
|
|
|
* FlakeRef to ensure the store is populated with this input.
|
|
|
|
*/
|
2020-09-27 00:32:58 +03:00
|
|
|
|
2019-02-12 19:23:11 +02:00
|
|
|
struct FlakeRef
|
|
|
|
{
|
2020-09-28 19:37:26 +03:00
|
|
|
/* fetcher-specific representation of the input, sufficient to
|
|
|
|
perform the fetch operation. */
|
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-09-28 19:37:26 +03:00
|
|
|
/* sub-path within the fetched input that represents this input */
|
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
|
|
|
}
|