forked from lix-project/lix
Record original flakerefs in the lock file again
If 'input.<name>.uri' changes, then the entry in the lockfile for input <name> should be considered stale. Also print some messages when lock file entries are added/updated.
This commit is contained in:
parent
092ee24627
commit
c67407172d
|
@ -2,9 +2,10 @@
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"inputs": {},
|
"inputs": {},
|
||||||
"narHash": "sha256-TrLhI3xPkTTznE9gcMHhkHirGNN7N02zM4DxJ/U3WRs=",
|
"narHash": "sha256-HGlE2VNbdEjCP76hWAS72kHBlMWhpvqWo58Obg1Vy6s=",
|
||||||
"uri": "github:edolstra/nixpkgs/24bf27fc215e8300877dfa1c426b9966bbfbd150"
|
"originalUri": "nixpkgs",
|
||||||
|
"uri": "github:edolstra/nixpkgs/13e1bce51f4aebdf3db58ce8c4a93e904a272bff"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"version": 2
|
"version": 3
|
||||||
}
|
}
|
||||||
|
|
|
@ -205,8 +205,10 @@ static void expectType(EvalState & state, ValueType type,
|
||||||
showType(type), showType(value.type), pos);
|
showType(type), showType(value.type), pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
Flake getFlake(EvalState & state, const FlakeRef & flakeRef)
|
Flake getFlake(EvalState & state, const FlakeRef & originalRef, bool allowLookup)
|
||||||
{
|
{
|
||||||
|
auto flakeRef = maybeLookupFlake(state, originalRef, allowLookup);
|
||||||
|
|
||||||
SourceInfo sourceInfo = fetchFlake(state, flakeRef);
|
SourceInfo sourceInfo = fetchFlake(state, flakeRef);
|
||||||
debug("got flake source '%s' with flakeref %s", sourceInfo.storePath, sourceInfo.resolvedRef.to_string());
|
debug("got flake source '%s' with flakeref %s", sourceInfo.storePath, sourceInfo.resolvedRef.to_string());
|
||||||
|
|
||||||
|
@ -223,7 +225,7 @@ Flake getFlake(EvalState & state, const FlakeRef & flakeRef)
|
||||||
if (!isInDir(realFlakeFile, state.store->toRealPath(sourceInfo.storePath)))
|
if (!isInDir(realFlakeFile, state.store->toRealPath(sourceInfo.storePath)))
|
||||||
throw Error("'flake.nix' file of flake '%s' escapes from '%s'", resolvedRef, sourceInfo.storePath);
|
throw Error("'flake.nix' file of flake '%s' escapes from '%s'", resolvedRef, sourceInfo.storePath);
|
||||||
|
|
||||||
Flake flake(flakeRef, sourceInfo);
|
Flake flake(originalRef, sourceInfo);
|
||||||
|
|
||||||
if (!pathExists(realFlakeFile))
|
if (!pathExists(realFlakeFile))
|
||||||
throw Error("source tree referenced by '%s' does not contain a '%s/flake.nix' file", resolvedRef, resolvedRef.subdir);
|
throw Error("source tree referenced by '%s' does not contain a '%s/flake.nix' file", resolvedRef, resolvedRef.subdir);
|
||||||
|
@ -358,6 +360,7 @@ bool allowedToUseRegistries(HandleLockFile handle, bool isTopRef)
|
||||||
Note that this is lazy: we only recursively fetch inputs that are
|
Note that this is lazy: we only recursively fetch inputs that are
|
||||||
not in the lockfile yet. */
|
not in the lockfile yet. */
|
||||||
static std::pair<Flake, LockedInput> updateLocks(
|
static std::pair<Flake, LockedInput> updateLocks(
|
||||||
|
const std::string & inputPath,
|
||||||
EvalState & state,
|
EvalState & state,
|
||||||
const Flake & flake,
|
const Flake & flake,
|
||||||
HandleLockFile handleLockFile,
|
HandleLockFile handleLockFile,
|
||||||
|
@ -366,23 +369,36 @@ static std::pair<Flake, LockedInput> updateLocks(
|
||||||
{
|
{
|
||||||
LockedInput newEntry(
|
LockedInput newEntry(
|
||||||
flake.sourceInfo.resolvedRef,
|
flake.sourceInfo.resolvedRef,
|
||||||
|
flake.originalRef,
|
||||||
flake.sourceInfo.narHash);
|
flake.sourceInfo.narHash);
|
||||||
|
|
||||||
for (auto & [id, input] : flake.inputs) {
|
for (auto & [id, input] : flake.inputs) {
|
||||||
|
auto inputPath2 = (inputPath.empty() ? "" : inputPath + "/") + id;
|
||||||
auto i = oldEntry.inputs.find(id);
|
auto i = oldEntry.inputs.find(id);
|
||||||
if (i != oldEntry.inputs.end()) {
|
if (i != oldEntry.inputs.end() && i->second.originalRef == input.ref) {
|
||||||
newEntry.inputs.insert_or_assign(id, i->second);
|
newEntry.inputs.insert_or_assign(id, i->second);
|
||||||
} else {
|
} else {
|
||||||
if (handleLockFile == AllPure || handleLockFile == TopRefUsesRegistries)
|
if (handleLockFile == AllPure || handleLockFile == TopRefUsesRegistries)
|
||||||
throw Error("cannot update flake input '%s' in pure mode", id);
|
throw Error("cannot update flake input '%s' in pure mode", id);
|
||||||
if (input.isFlake)
|
if (input.isFlake) {
|
||||||
|
auto actualInput = getFlake(state, input.ref,
|
||||||
|
allowedToUseRegistries(handleLockFile, false));
|
||||||
|
if (i == oldEntry.inputs.end())
|
||||||
|
printMsg(lvlWarn, "mapped flake input '%s' to '%s'",
|
||||||
|
inputPath2, actualInput.sourceInfo.resolvedRef);
|
||||||
|
else
|
||||||
|
printMsg(lvlWarn, "updated flake input '%s' from '%s' to '%s'",
|
||||||
|
inputPath2, i->second.originalRef, actualInput.sourceInfo.resolvedRef);
|
||||||
newEntry.inputs.insert_or_assign(id,
|
newEntry.inputs.insert_or_assign(id,
|
||||||
updateLocks(state,
|
updateLocks(inputPath2, state, actualInput, handleLockFile, {}, false).second);
|
||||||
getFlake(state, maybeLookupFlake(state, input.ref, allowedToUseRegistries(handleLockFile, false))),
|
} else {
|
||||||
handleLockFile, {}, false).second);
|
auto sourceInfo = getNonFlake(state,
|
||||||
else {
|
maybeLookupFlake(state, input.ref,
|
||||||
auto sourceInfo = getNonFlake(state, maybeLookupFlake(state, input.ref, allowedToUseRegistries(handleLockFile, false)));
|
allowedToUseRegistries(handleLockFile, false)));
|
||||||
newEntry.inputs.insert_or_assign(id, LockedInput(sourceInfo.resolvedRef, sourceInfo.narHash));
|
printMsg(lvlWarn, "mapped flake input '%s' to '%s'",
|
||||||
|
inputPath2, sourceInfo.resolvedRef);
|
||||||
|
newEntry.inputs.insert_or_assign(id,
|
||||||
|
LockedInput(sourceInfo.resolvedRef, input.ref, sourceInfo.narHash));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -394,7 +410,8 @@ static std::pair<Flake, LockedInput> updateLocks(
|
||||||
and optionally write it to file, it the flake is writable. */
|
and optionally write it to file, it the flake is writable. */
|
||||||
ResolvedFlake resolveFlake(EvalState & state, const FlakeRef & topRef, HandleLockFile handleLockFile)
|
ResolvedFlake resolveFlake(EvalState & state, const FlakeRef & topRef, HandleLockFile handleLockFile)
|
||||||
{
|
{
|
||||||
auto flake = getFlake(state, maybeLookupFlake(state, topRef, allowedToUseRegistries(handleLockFile, true)));
|
auto flake = getFlake(state, topRef,
|
||||||
|
allowedToUseRegistries(handleLockFile, true));
|
||||||
|
|
||||||
LockFile oldLockFile;
|
LockFile oldLockFile;
|
||||||
|
|
||||||
|
@ -407,7 +424,7 @@ ResolvedFlake resolveFlake(EvalState & state, const FlakeRef & topRef, HandleLoc
|
||||||
}
|
}
|
||||||
|
|
||||||
LockFile lockFile(updateLocks(
|
LockFile lockFile(updateLocks(
|
||||||
state, flake, handleLockFile, oldLockFile, true).second);
|
"", state, flake, handleLockFile, oldLockFile, true).second);
|
||||||
|
|
||||||
if (!(lockFile == oldLockFile)) {
|
if (!(lockFile == oldLockFile)) {
|
||||||
if (allowedToWrite(handleLockFile)) {
|
if (allowedToWrite(handleLockFile)) {
|
||||||
|
@ -476,7 +493,7 @@ static void prim_callFlake(EvalState & state, const Pos & pos, Value * * args, V
|
||||||
assert(lazyInput->lockedInput.ref.isImmutable());
|
assert(lazyInput->lockedInput.ref.isImmutable());
|
||||||
|
|
||||||
if (lazyInput->isFlake) {
|
if (lazyInput->isFlake) {
|
||||||
auto flake = getFlake(state, lazyInput->lockedInput.ref);
|
auto flake = getFlake(state, lazyInput->lockedInput.ref, false);
|
||||||
|
|
||||||
if (flake.sourceInfo.narHash != lazyInput->lockedInput.narHash)
|
if (flake.sourceInfo.narHash != lazyInput->lockedInput.narHash)
|
||||||
throw Error("the content hash of flake '%s' doesn't match the hash recorded in the referring lockfile", flake.sourceInfo.resolvedRef);
|
throw Error("the content hash of flake '%s' doesn't match the hash recorded in the referring lockfile", flake.sourceInfo.resolvedRef);
|
||||||
|
|
|
@ -78,7 +78,7 @@ struct Flake
|
||||||
: originalRef(origRef), sourceInfo(sourceInfo) {};
|
: originalRef(origRef), sourceInfo(sourceInfo) {};
|
||||||
};
|
};
|
||||||
|
|
||||||
Flake getFlake(EvalState &, const FlakeRef &);
|
Flake getFlake(EvalState & state, const FlakeRef & flakeRef, bool allowLookup);
|
||||||
|
|
||||||
/* If 'allowLookup' is true, then resolve 'flakeRef' using the
|
/* If 'allowLookup' is true, then resolve 'flakeRef' using the
|
||||||
registries. */
|
registries. */
|
||||||
|
|
|
@ -6,6 +6,7 @@ namespace nix::flake {
|
||||||
LockedInput::LockedInput(const nlohmann::json & json)
|
LockedInput::LockedInput(const nlohmann::json & json)
|
||||||
: LockedInputs(json)
|
: LockedInputs(json)
|
||||||
, ref(json["uri"])
|
, ref(json["uri"])
|
||||||
|
, originalRef(json["originalUri"])
|
||||||
, narHash(Hash((std::string) json["narHash"]))
|
, narHash(Hash((std::string) json["narHash"]))
|
||||||
{
|
{
|
||||||
if (!ref.isImmutable())
|
if (!ref.isImmutable())
|
||||||
|
@ -16,6 +17,7 @@ nlohmann::json LockedInput::toJson() const
|
||||||
{
|
{
|
||||||
auto json = LockedInputs::toJson();
|
auto json = LockedInputs::toJson();
|
||||||
json["uri"] = ref.to_string();
|
json["uri"] = ref.to_string();
|
||||||
|
json["originalUri"] = originalRef.to_string();
|
||||||
json["narHash"] = narHash.to_string(SRI);
|
json["narHash"] = narHash.to_string(SRI);
|
||||||
return json;
|
return json;
|
||||||
}
|
}
|
||||||
|
@ -54,7 +56,7 @@ bool LockedInputs::isDirty() const
|
||||||
nlohmann::json LockFile::toJson() const
|
nlohmann::json LockFile::toJson() const
|
||||||
{
|
{
|
||||||
auto json = LockedInputs::toJson();
|
auto json = LockedInputs::toJson();
|
||||||
json["version"] = 2;
|
json["version"] = 3;
|
||||||
return json;
|
return json;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,7 +66,7 @@ LockFile LockFile::read(const Path & path)
|
||||||
auto json = nlohmann::json::parse(readFile(path));
|
auto json = nlohmann::json::parse(readFile(path));
|
||||||
|
|
||||||
auto version = json.value("version", 0);
|
auto version = json.value("version", 0);
|
||||||
if (version != 2)
|
if (version != 3)
|
||||||
throw Error("lock file '%s' has unsupported version %d", path, version);
|
throw Error("lock file '%s' has unsupported version %d", path, version);
|
||||||
|
|
||||||
return LockFile(json);
|
return LockFile(json);
|
||||||
|
|
|
@ -30,11 +30,11 @@ struct LockedInputs
|
||||||
/* Lock file information about a flake input. */
|
/* Lock file information about a flake input. */
|
||||||
struct LockedInput : LockedInputs
|
struct LockedInput : LockedInputs
|
||||||
{
|
{
|
||||||
FlakeRef ref;
|
FlakeRef ref, originalRef;
|
||||||
Hash narHash;
|
Hash narHash;
|
||||||
|
|
||||||
LockedInput(const FlakeRef & ref, const Hash & narHash)
|
LockedInput(const FlakeRef & ref, const FlakeRef & originalRef, const Hash & narHash)
|
||||||
: ref(ref), narHash(narHash)
|
: ref(ref), originalRef(originalRef), narHash(narHash)
|
||||||
{
|
{
|
||||||
assert(ref.isImmutable());
|
assert(ref.isImmutable());
|
||||||
};
|
};
|
||||||
|
|
|
@ -38,8 +38,7 @@ public:
|
||||||
Flake getFlake()
|
Flake getFlake()
|
||||||
{
|
{
|
||||||
auto evalState = getEvalState();
|
auto evalState = getEvalState();
|
||||||
return flake::getFlake(*evalState,
|
return flake::getFlake(*evalState, getFlakeRef(), useRegistries);
|
||||||
maybeLookupFlake(*evalState, getFlakeRef(), useRegistries));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ResolvedFlake resolveFlake()
|
ResolvedFlake resolveFlake()
|
||||||
|
@ -500,13 +499,13 @@ struct CmdFlakePin : virtual Args, EvalCommand
|
||||||
FlakeRegistry userRegistry = *readRegistry(userRegistryPath);
|
FlakeRegistry userRegistry = *readRegistry(userRegistryPath);
|
||||||
auto it = userRegistry.entries.find(FlakeRef(alias));
|
auto it = userRegistry.entries.find(FlakeRef(alias));
|
||||||
if (it != userRegistry.entries.end()) {
|
if (it != userRegistry.entries.end()) {
|
||||||
it->second = getFlake(*evalState, maybeLookupFlake(*evalState, it->second, true)).sourceInfo.resolvedRef;
|
it->second = getFlake(*evalState, it->second, true).sourceInfo.resolvedRef;
|
||||||
writeRegistry(userRegistry, userRegistryPath);
|
writeRegistry(userRegistry, userRegistryPath);
|
||||||
} else {
|
} else {
|
||||||
std::shared_ptr<FlakeRegistry> globalReg = evalState->getGlobalFlakeRegistry();
|
std::shared_ptr<FlakeRegistry> globalReg = evalState->getGlobalFlakeRegistry();
|
||||||
it = globalReg->entries.find(FlakeRef(alias));
|
it = globalReg->entries.find(FlakeRef(alias));
|
||||||
if (it != globalReg->entries.end()) {
|
if (it != globalReg->entries.end()) {
|
||||||
auto newRef = getFlake(*evalState, maybeLookupFlake(*evalState, it->second, true)).sourceInfo.resolvedRef;
|
auto newRef = getFlake(*evalState, it->second, true).sourceInfo.resolvedRef;
|
||||||
userRegistry.entries.insert_or_assign(alias, newRef);
|
userRegistry.entries.insert_or_assign(alias, newRef);
|
||||||
writeRegistry(userRegistry, userRegistryPath);
|
writeRegistry(userRegistry, userRegistryPath);
|
||||||
} else
|
} else
|
||||||
|
|
Loading…
Reference in a new issue