refactor(3p/nix/libexpr): Back Nix lists with std::vector
This change does away with the previous special-casing of lists of certain element sizes, and the use of raw C-style arrays. Lists are now backed by a std::vector of nix::Value*, which uses the traceable GC allocator. This change is unfortunately quite noisy because the accessor methods were updated/removed accordingly, so all callsites of Nix-related lists have changed. For some operations in primops.cc where keeping the previous code structure would have been more difficult with a "proper" vector, the implementation has been replaced with std::vector methods. For example, list concatenation now uses appropriate range inserts. Anecdotally the performance of this is about equal, to even slightly better, than the previous implementation. All language tests pass and the depot paths I've used for testing still evaluate. Change-Id: Ib5eca6c0207429cb323a330c838c3a2200b2c693 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1266 Tested-by: BuildkiteCI Reviewed-by: isomer <isomer@tvl.fyi> Reviewed-by: Kane York <rikingcoding@gmail.com> Reviewed-by: glittershark <grfn@gws.fyi>
This commit is contained in:
parent
56614c75e4
commit
cdc1a0bb6e
16 changed files with 163 additions and 231 deletions
|
|
@ -50,8 +50,7 @@ std::string resolveMirrorUri(EvalState& state, std::string uri) {
|
|||
throw Error(format("mirror URI '%1%' did not expand to anything") % uri);
|
||||
}
|
||||
|
||||
std::string mirror =
|
||||
state.forceString(*mirrorList->second.value->listElems()[0]);
|
||||
std::string mirror = state.forceString(*(*mirrorList->second.value->list)[0]);
|
||||
return mirror + (absl::EndsWith(mirror, "/") ? "" : "/") +
|
||||
std::string(s, p + 1);
|
||||
}
|
||||
|
|
@ -137,7 +136,7 @@ static int _main(int argc, char** argv) {
|
|||
if (attr->second.value->listSize() < 1) {
|
||||
throw Error("'urls' list is empty");
|
||||
}
|
||||
uri = state->forceString(*attr->second.value->listElems()[0]);
|
||||
uri = state->forceString(*(*attr->second.value->list)[0]);
|
||||
|
||||
/* Extract the hash mode. */
|
||||
attr = v.attrs->find(state->symbols.Create("outputHashMode"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue