-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7744 from obsidiansystems/split-installable-store…
…-path Factor out `InstallableStorePath` to its own file, dedup
- Loading branch information
Showing
4 changed files
with
104 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#include "installable-derived-path.hh" | ||
#include "derivations.hh" | ||
|
||
namespace nix { | ||
|
||
std::string InstallableDerivedPath::what() const | ||
{ | ||
return derivedPath.to_string(*store); | ||
} | ||
|
||
DerivedPathsWithInfo InstallableDerivedPath::toDerivedPaths() | ||
{ | ||
return {{.path = derivedPath, .info = {} }}; | ||
} | ||
|
||
std::optional<StorePath> InstallableDerivedPath::getStorePath() | ||
{ | ||
return std::visit(overloaded { | ||
[&](const DerivedPath::Built & bfd) { | ||
return bfd.drvPath; | ||
}, | ||
[&](const DerivedPath::Opaque & bo) { | ||
return bo.path; | ||
}, | ||
}, derivedPath.raw()); | ||
} | ||
|
||
InstallableDerivedPath InstallableDerivedPath::parse( | ||
ref<Store> store, | ||
std::string_view prefix, | ||
ExtendedOutputsSpec extendedOutputsSpec) | ||
{ | ||
auto derivedPath = std::visit(overloaded { | ||
// If the user did not use ^, we treat the output more liberally. | ||
[&](const ExtendedOutputsSpec::Default &) -> DerivedPath { | ||
// First, we accept a symlink chain or an actual store path. | ||
auto storePath = store->followLinksToStorePath(prefix); | ||
// Second, we see if the store path ends in `.drv` to decide what sort | ||
// of derived path they want. | ||
// | ||
// This handling predates the `^` syntax. The `^*` in | ||
// `/nix/store/hash-foo.drv^*` unambiguously means "do the | ||
// `DerivedPath::Built` case", so plain `/nix/store/hash-foo.drv` could | ||
// also unambiguously mean "do the DerivedPath::Opaque` case". | ||
// | ||
// Issue #7261 tracks reconsidering this `.drv` dispatching. | ||
return storePath.isDerivation() | ||
? (DerivedPath) DerivedPath::Built { | ||
.drvPath = std::move(storePath), | ||
.outputs = OutputsSpec::All {}, | ||
} | ||
: (DerivedPath) DerivedPath::Opaque { | ||
.path = std::move(storePath), | ||
}; | ||
}, | ||
// If the user did use ^, we just do exactly what is written. | ||
[&](const ExtendedOutputsSpec::Explicit & outputSpec) -> DerivedPath { | ||
return DerivedPath::Built { | ||
.drvPath = store->parseStorePath(prefix), | ||
.outputs = outputSpec, | ||
}; | ||
}, | ||
}, extendedOutputsSpec.raw()); | ||
return InstallableDerivedPath { | ||
store, | ||
std::move(derivedPath), | ||
}; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#pragma once | ||
|
||
#include "installables.hh" | ||
|
||
namespace nix { | ||
|
||
struct InstallableDerivedPath : Installable | ||
{ | ||
ref<Store> store; | ||
DerivedPath derivedPath; | ||
|
||
InstallableDerivedPath(ref<Store> store, DerivedPath && derivedPath) | ||
: store(store), derivedPath(std::move(derivedPath)) | ||
{ } | ||
|
||
std::string what() const override; | ||
|
||
DerivedPathsWithInfo toDerivedPaths() override; | ||
|
||
std::optional<StorePath> getStorePath() override; | ||
|
||
static InstallableDerivedPath parse( | ||
ref<Store> store, | ||
std::string_view prefix, | ||
ExtendedOutputsSpec extendedOutputsSpec); | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters