From 1fc9ba4885f5a16e263bcc5e58bef68e3aa32cea Mon Sep 17 00:00:00 2001 From: Kane York Date: Thu, 13 Aug 2020 16:40:27 -0700 Subject: refactor(tvix): always pass Bindings by ptr, use shared/unique_ptr Value now carries a shared_ptr, and all Bindings constructors return a unique_ptr. The test that wanted to compare two Bindings by putting them into Values has been modified to use the new Equal() method on Bindings (extracted from EvalState). Change-Id: I8dfb60e65fdabb717e3b3e5d56d5b3fc82f70883 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1744 Tested-by: BuildkiteCI Reviewed-by: glittershark Reviewed-by: tazjin --- third_party/nix/src/nix-env/nix-env.cc | 15 ++++++++------- third_party/nix/src/nix-env/user-env.cc | 4 ++-- 2 files changed, 10 insertions(+), 9 deletions(-) (limited to 'third_party/nix/src/nix-env') diff --git a/third_party/nix/src/nix-env/nix-env.cc b/third_party/nix/src/nix-env/nix-env.cc index 396f65d0d6c7..7502a648d8c1 100644 --- a/third_party/nix/src/nix-env/nix-env.cc +++ b/third_party/nix/src/nix-env/nix-env.cc @@ -46,7 +46,7 @@ struct InstallSourceInfo { Path nixExprPath; /* for srcNixExprDrvs, srcNixExprs */ Path profile; /* for srcProfile */ std::string systemFilter; /* for srcNixExprDrvs */ - Bindings* autoArgs; + std::unique_ptr autoArgs; }; struct Globals { @@ -170,7 +170,7 @@ static void loadSourceExpr(EvalState& state, const Path& path, Value& v) { } static void loadDerivations(EvalState& state, const Path& nixExprPath, - const std::string& systemFilter, Bindings& autoArgs, + const std::string& systemFilter, Bindings* autoArgs, const std::string& pathPrefix, DrvInfos& elems) { Value vRoot; loadSourceExpr(state, nixExprPath, vRoot); @@ -333,7 +333,7 @@ static void queryInstSources(EvalState& state, InstallSourceInfo& instSource, Nix expression. */ DrvInfos allElems; loadDerivations(state, instSource.nixExprPath, instSource.systemFilter, - *instSource.autoArgs, "", allElems); + instSource.autoArgs.get(), "", allElems); elems = filterBySelector(state, allElems, args, newestOnly); @@ -356,7 +356,7 @@ static void queryInstSources(EvalState& state, InstallSourceInfo& instSource, Value vTmp; state.eval(eFun, vFun); mkApp(vTmp, vFun, vArg); - getDerivations(state, vTmp, "", *instSource.autoArgs, elems, true); + getDerivations(state, vTmp, "", instSource.autoArgs.get(), elems, true); } break; @@ -410,8 +410,9 @@ static void queryInstSources(EvalState& state, InstallSourceInfo& instSource, Value vRoot; loadSourceExpr(state, instSource.nixExprPath, vRoot); for (auto& i : args) { - Value& v(*findAlongAttrPath(state, i, *instSource.autoArgs, vRoot)); - getDerivations(state, v, "", *instSource.autoArgs, elems, true); + Value& v( + *findAlongAttrPath(state, i, instSource.autoArgs.get(), vRoot)); + getDerivations(state, v, "", instSource.autoArgs.get(), elems, true); } break; } @@ -959,7 +960,7 @@ static void opQuery(Globals& globals, Strings opFlags, Strings opArgs) { if (source == sAvailable || compareVersions) { loadDerivations(*globals.state, globals.instSource.nixExprPath, globals.instSource.systemFilter, - *globals.instSource.autoArgs, attrPath, availElems); + globals.instSource.autoArgs.get(), attrPath, availElems); } DrvInfos elems_ = filterBySelector( diff --git a/third_party/nix/src/nix-env/user-env.cc b/third_party/nix/src/nix-env/user-env.cc index 0cb921c8249d..dac0c52a81b7 100644 --- a/third_party/nix/src/nix-env/user-env.cc +++ b/third_party/nix/src/nix-env/user-env.cc @@ -20,8 +20,8 @@ DrvInfos queryInstalled(EvalState& state, const Path& userEnv) { if (pathExists(manifestFile)) { Value v; state.evalFile(manifestFile, v); - Bindings& bindings(*Bindings::NewGC()); - getDerivations(state, v, "", bindings, elems, false); + std::unique_ptr bindings(Bindings::New()); + getDerivations(state, v, "", bindings.get(), elems, false); } return elems; } -- cgit 1.4.1