2003-10-29 17:05:18 +02:00
|
|
|
#include "globals.hh"
|
2024-01-09 21:13:45 +02:00
|
|
|
#include "print-ambiguous.hh"
|
2003-10-29 17:05:18 +02:00
|
|
|
#include "shared.hh"
|
2003-10-30 18:48:26 +02:00
|
|
|
#include "eval.hh"
|
2012-02-04 15:50:25 +02:00
|
|
|
#include "eval-inline.hh"
|
2006-02-10 17:14:57 +02:00
|
|
|
#include "get-drvs.hh"
|
2006-07-26 18:05:15 +03:00
|
|
|
#include "attr-path.hh"
|
2024-01-09 21:13:45 +02:00
|
|
|
#include "signals.hh"
|
2010-04-07 16:59:45 +03:00
|
|
|
#include "value-to-xml.hh"
|
2014-06-24 00:30:22 +03:00
|
|
|
#include "value-to-json.hh"
|
2006-11-30 19:43:04 +02:00
|
|
|
#include "store-api.hh"
|
2020-10-09 23:18:08 +03:00
|
|
|
#include "local-fs-store.hh"
|
2017-10-24 13:45:11 +03:00
|
|
|
#include "common-eval-args.hh"
|
2021-01-26 13:22:24 +02:00
|
|
|
#include "legacy.hh"
|
2003-12-01 17:55:05 +02:00
|
|
|
|
2010-10-04 20:55:38 +03:00
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
|
2003-12-01 17:55:05 +02:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
using namespace nix;
|
|
|
|
|
|
|
|
|
2005-02-01 14:36:25 +02:00
|
|
|
static Path gcRoot;
|
|
|
|
static int rootNr = 0;
|
|
|
|
|
|
|
|
|
2014-06-27 12:36:23 +03:00
|
|
|
enum OutputKind { okPlain, okXML, okJSON };
|
|
|
|
|
2016-02-11 17:14:42 +02:00
|
|
|
void processExpr(EvalState & state, const Strings & attrPaths,
|
2010-10-22 17:47:42 +03:00
|
|
|
bool parseOnly, bool strict, Bindings & autoArgs,
|
2014-06-24 00:30:22 +03:00
|
|
|
bool evalOnly, OutputKind output, bool location, Expr * e)
|
2006-08-17 11:53:08 +03:00
|
|
|
{
|
2013-09-03 14:04:21 +03:00
|
|
|
if (parseOnly) {
|
2022-03-05 15:40:24 +02:00
|
|
|
e->show(state.symbols, std::cout);
|
|
|
|
std::cout << "\n";
|
2013-09-03 14:04:21 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-03 16:17:51 +03:00
|
|
|
Value vRoot;
|
|
|
|
state.eval(e, vRoot);
|
|
|
|
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : attrPaths) {
|
2020-02-07 15:08:24 +02:00
|
|
|
Value & v(*findAlongAttrPath(state, i, autoArgs, vRoot).first);
|
2023-12-11 16:48:24 +02:00
|
|
|
state.forceValue(v, v.determinePos(noPos));
|
2013-09-03 14:04:21 +03:00
|
|
|
|
Use `std::set<StringContextElem>` not `PathSet` for string contexts
Motivation
`PathSet` is not correct because string contexts have other forms
(`Built` and `DrvDeep`) that are not rendered as plain store paths.
Instead of wrongly using `PathSet`, or "stringly typed" using
`StringSet`, use `std::std<StringContextElem>`.
-----
In support of this change, `NixStringContext` is now defined as
`std::std<StringContextElem>` not `std:vector<StringContextElem>`. The
old definition was just used by a `getContext` method which was only
used by the eval cache. It can be deleted altogether since the types are
now unified and the preexisting `copyContext` function already suffices.
Summarizing the previous paragraph:
Old:
- `value/context.hh`: `NixStringContext = std::vector<StringContextElem>`
- `value.hh`: `NixStringContext Value::getContext(...)`
- `value.hh`: `copyContext(...)`
New:
- `value/context.hh`: `NixStringContext = std::set<StringContextElem>`
- `value.hh`: `copyContext(...)`
----
The string representation of string context elements no longer contains
the store dir. The diff of `src/libexpr/tests/value/context.cc` should
make clear what the new representation is, so we recommend reviewing
that file first. This was done for two reasons:
Less API churn:
`Value::mkString` and friends did not take a `Store` before. But if
`NixStringContextElem::{parse, to_string}` *do* take a store (as they
did before), then we cannot have the `Value` functions use them (in
order to work with the fully-structured `NixStringContext`) without
adding that argument.
That would have been a lot of churn of threading the store, and this
diff is already large enough, so the easier and less invasive thing to
do was simply make the element `parse` and `to_string` functions not
take the `Store` reference, and the easiest way to do that was to simply
drop the store dir.
Space usage:
Dropping the `/nix/store/` (or similar) from the internal representation
will safe space in the heap of the Nix programming being interpreted. If
the heap contains many strings with non-trivial contexts, the saving
could add up to something significant.
----
The eval cache version is bumped.
The eval cache serialization uses `NixStringContextElem::{parse,
to_string}`, and since those functions are changed per the above, that
means the on-disk representation is also changed.
This is simply done by changing the name of the used for the eval cache
from `eval-cache-v4` to eval-cache-v5`.
----
To avoid some duplication `EvalCache::mkPathString` is added to abstract
over the simple case of turning a store path to a string with just that
string in the context.
Context
This PR picks up where #7543 left off. That one introduced the fully
structured `NixStringContextElem` data type, but kept `PathSet context`
as an awkward middle ground between internal `char[][]` interpreter heap
string contexts and `NixStringContext` fully parsed string contexts.
The infelicity of `PathSet context` was specifically called out during
Nix team group review, but it was agreeing that fixing it could be left
as future work. This is that future work.
A possible follow-up step would be to get rid of the `char[][]`
evaluator heap representation, too, but it is not yet clear how to do
that. To use `NixStringContextElem` there we would need to get the STL
containers to GC pointers in the GC build, and I am not sure how to do
that.
----
PR #7543 effectively is writing the inverse of a `mkPathString`,
`mkOutputString`, and one more such function for the `DrvDeep` case. I
would like that PR to have property tests ensuring it is actually the
inverse as expected.
This PR sets things up nicely so that reworking that PR to be in that
more elegant and better tested way is possible.
Co-authored-by: Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>
2023-01-29 03:31:10 +02:00
|
|
|
NixStringContext context;
|
2014-05-13 13:54:28 +03:00
|
|
|
if (evalOnly) {
|
|
|
|
Value vRes;
|
|
|
|
if (autoArgs.empty())
|
|
|
|
vRes = v;
|
|
|
|
else
|
|
|
|
state.autoCallFunction(autoArgs, v, vRes);
|
2014-06-27 12:36:23 +03:00
|
|
|
if (output == okXML)
|
2021-11-14 03:29:31 +02:00
|
|
|
printValueAsXML(state, strict, location, vRes, std::cout, context, noPos);
|
2022-08-22 16:07:52 +03:00
|
|
|
else if (output == okJSON) {
|
2022-08-23 15:40:27 +03:00
|
|
|
printValueAsJSON(state, strict, vRes, v.determinePos(noPos), std::cout, context);
|
2022-08-22 16:07:52 +03:00
|
|
|
std::cout << std::endl;
|
|
|
|
} else {
|
2014-09-22 16:03:59 +03:00
|
|
|
if (strict) state.forceValueDeep(vRes);
|
2024-01-09 21:13:45 +02:00
|
|
|
std::set<const void *> seen;
|
|
|
|
printAmbiguous(vRes, state.symbols, std::cout, &seen, std::numeric_limits<int>::max());
|
2022-03-05 15:40:24 +02:00
|
|
|
std::cout << std::endl;
|
2013-09-03 14:04:21 +03:00
|
|
|
}
|
2014-05-13 13:54:28 +03:00
|
|
|
} else {
|
2024-01-16 16:25:04 +02:00
|
|
|
PackageInfos drvs;
|
2013-09-03 14:04:21 +03:00
|
|
|
getDerivations(state, v, "", autoArgs, drvs, false);
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : drvs) {
|
2022-03-02 11:57:19 +02:00
|
|
|
auto drvPath = i.requireDrvPath();
|
|
|
|
auto drvPathS = state.store->printStorePath(drvPath);
|
2013-09-03 14:04:21 +03:00
|
|
|
|
|
|
|
/* What output do we want? */
|
2022-02-25 17:00:00 +02:00
|
|
|
std::string outputName = i.queryOutputName();
|
2013-09-03 14:04:21 +03:00
|
|
|
if (outputName == "")
|
2022-03-02 11:57:19 +02:00
|
|
|
throw Error("derivation '%1%' lacks an 'outputName' attribute", drvPathS);
|
2013-09-03 14:04:21 +03:00
|
|
|
|
|
|
|
if (gcRoot == "")
|
|
|
|
printGCWarning();
|
|
|
|
else {
|
2020-09-03 12:22:00 +03:00
|
|
|
Path rootName = absPath(gcRoot);
|
2015-10-29 14:26:55 +02:00
|
|
|
if (++rootNr > 1) rootName += "-" + std::to_string(rootNr);
|
2016-06-02 14:33:49 +03:00
|
|
|
auto store2 = state.store.dynamic_pointer_cast<LocalFSStore>();
|
|
|
|
if (store2)
|
2022-03-02 11:57:19 +02:00
|
|
|
drvPathS = store2->addPermRoot(drvPath, rootName);
|
2010-04-07 18:47:06 +03:00
|
|
|
}
|
2022-03-02 11:57:19 +02:00
|
|
|
std::cout << fmt("%s%s\n", drvPathS, (outputName != "out" ? "!" + outputName : ""));
|
2010-03-31 18:38:03 +03:00
|
|
|
}
|
|
|
|
}
|
2013-09-03 14:04:21 +03:00
|
|
|
}
|
2006-08-17 11:53:08 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-06 14:36:55 +03:00
|
|
|
static int main_nix_instantiate(int argc, char * * argv)
|
2003-10-29 17:05:18 +02:00
|
|
|
{
|
2018-10-26 12:35:46 +03:00
|
|
|
{
|
2017-10-24 13:45:11 +03:00
|
|
|
Strings files;
|
2014-08-13 04:50:44 +03:00
|
|
|
bool readStdin = false;
|
|
|
|
bool fromArgs = false;
|
|
|
|
bool findFile = false;
|
|
|
|
bool evalOnly = false;
|
|
|
|
bool parseOnly = false;
|
|
|
|
OutputKind outputKind = okPlain;
|
|
|
|
bool xmlOutputSourceLocation = true;
|
|
|
|
bool strict = false;
|
|
|
|
Strings attrPaths;
|
|
|
|
bool wantsReadWrite = false;
|
|
|
|
|
2017-10-24 13:45:11 +03:00
|
|
|
struct MyArgs : LegacyArgs, MixEvalArgs
|
|
|
|
{
|
|
|
|
using LegacyArgs::LegacyArgs;
|
|
|
|
};
|
|
|
|
|
2019-12-05 20:11:09 +02:00
|
|
|
MyArgs myArgs(std::string(baseNameOf(argv[0])), [&](Strings::iterator & arg, const Strings::iterator & end) {
|
2014-08-13 04:50:44 +03:00
|
|
|
if (*arg == "--help")
|
|
|
|
showManPage("nix-instantiate");
|
|
|
|
else if (*arg == "--version")
|
|
|
|
printVersion("nix-instantiate");
|
|
|
|
else if (*arg == "-")
|
|
|
|
readStdin = true;
|
|
|
|
else if (*arg == "--expr" || *arg == "-E")
|
|
|
|
fromArgs = true;
|
|
|
|
else if (*arg == "--eval" || *arg == "--eval-only")
|
|
|
|
evalOnly = true;
|
|
|
|
else if (*arg == "--read-write-mode")
|
|
|
|
wantsReadWrite = true;
|
|
|
|
else if (*arg == "--parse" || *arg == "--parse-only")
|
|
|
|
parseOnly = evalOnly = true;
|
|
|
|
else if (*arg == "--find-file")
|
|
|
|
findFile = true;
|
|
|
|
else if (*arg == "--attr" || *arg == "-A")
|
|
|
|
attrPaths.push_back(getArg(*arg, arg, end));
|
|
|
|
else if (*arg == "--add-root")
|
|
|
|
gcRoot = getArg(*arg, arg, end);
|
|
|
|
else if (*arg == "--indirect")
|
2020-09-03 12:22:00 +03:00
|
|
|
;
|
2014-08-13 04:50:44 +03:00
|
|
|
else if (*arg == "--xml")
|
|
|
|
outputKind = okXML;
|
|
|
|
else if (*arg == "--json")
|
|
|
|
outputKind = okJSON;
|
|
|
|
else if (*arg == "--no-location")
|
|
|
|
xmlOutputSourceLocation = false;
|
|
|
|
else if (*arg == "--strict")
|
|
|
|
strict = true;
|
|
|
|
else if (*arg == "--dry-run")
|
|
|
|
settings.readOnlyMode = true;
|
|
|
|
else if (*arg != "" && arg->at(0) == '-')
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
files.push_back(*arg);
|
|
|
|
return true;
|
|
|
|
});
|
2003-10-29 17:05:18 +02:00
|
|
|
|
2017-10-24 13:45:11 +03:00
|
|
|
myArgs.parseCmdline(argvToStrings(argc, argv));
|
|
|
|
|
2015-05-05 18:09:42 +03:00
|
|
|
if (evalOnly && !wantsReadWrite)
|
|
|
|
settings.readOnlyMode = true;
|
|
|
|
|
Eliminate the "store" global variable
Also, move a few free-standing functions into StoreAPI and Derivation.
Also, introduce a non-nullable smart pointer, ref<T>, which is just a
wrapper around std::shared_ptr ensuring that the pointer is never
null. (For reference-counted values, this is better than passing a
"T&", because the latter doesn't maintain the refcount. Usually, the
caller will have a shared_ptr keeping the value alive, but that's not
always the case, e.g., when passing a reference to a std::thread via
std::bind.)
2016-02-04 15:28:26 +02:00
|
|
|
auto store = openStore();
|
2021-07-15 15:28:33 +03:00
|
|
|
auto evalStore = myArgs.evalStoreUrl ? openStore(*myArgs.evalStoreUrl) : store;
|
2015-05-05 18:09:42 +03:00
|
|
|
|
2024-07-01 20:37:30 +03:00
|
|
|
auto state = std::make_unique<EvalState>(myArgs.lookupPath, evalStore, fetchSettings, evalSettings, store);
|
2023-04-28 17:57:37 +03:00
|
|
|
state->repair = myArgs.repair;
|
2014-02-04 17:37:10 +02:00
|
|
|
|
2018-06-12 18:26:36 +03:00
|
|
|
Bindings & autoArgs = *myArgs.getAutoArgs(*state);
|
2007-01-13 20:25:30 +02:00
|
|
|
|
2017-07-25 16:09:06 +03:00
|
|
|
if (attrPaths.empty()) attrPaths = {""};
|
2014-08-13 04:50:44 +03:00
|
|
|
|
|
|
|
if (findFile) {
|
2015-07-17 20:24:28 +03:00
|
|
|
for (auto & i : files) {
|
2023-04-06 14:15:50 +03:00
|
|
|
auto p = state->findFile(i);
|
|
|
|
if (auto fn = p.getPhysicalPath())
|
2023-09-03 00:35:16 +03:00
|
|
|
std::cout << fn->string() << std::endl;
|
2023-04-06 14:15:50 +03:00
|
|
|
else
|
|
|
|
throw Error("'%s' has no physical path", p);
|
2014-08-13 04:50:44 +03:00
|
|
|
}
|
2018-10-26 12:35:46 +03:00
|
|
|
return 0;
|
2012-04-17 18:14:14 +03:00
|
|
|
}
|
|
|
|
|
2014-08-13 04:50:44 +03:00
|
|
|
if (readStdin) {
|
2018-06-12 18:26:36 +03:00
|
|
|
Expr * e = state->parseStdin();
|
|
|
|
processExpr(*state, attrPaths, parseOnly, strict, autoArgs,
|
2014-08-13 04:50:44 +03:00
|
|
|
evalOnly, outputKind, xmlOutputSourceLocation, e);
|
|
|
|
} else if (files.empty() && !fromArgs)
|
|
|
|
files.push_back("./default.nix");
|
2003-10-29 17:05:18 +02:00
|
|
|
|
2015-05-06 15:54:31 +03:00
|
|
|
for (auto & i : files) {
|
2014-08-13 04:50:44 +03:00
|
|
|
Expr * e = fromArgs
|
2024-02-06 23:23:58 +02:00
|
|
|
? state->parseExprFromString(i, state->rootPath("."))
|
2023-11-30 17:16:17 +02:00
|
|
|
: state->parseExprFromFile(resolveExprPath(lookupFileArg(*state, i)));
|
2018-06-12 18:26:36 +03:00
|
|
|
processExpr(*state, attrPaths, parseOnly, strict, autoArgs,
|
2014-08-13 04:50:44 +03:00
|
|
|
evalOnly, outputKind, xmlOutputSourceLocation, e);
|
|
|
|
}
|
2003-10-29 17:05:18 +02:00
|
|
|
|
2023-10-09 17:25:53 +03:00
|
|
|
state->maybePrintStats();
|
2018-10-26 12:35:46 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2014-08-13 04:50:44 +03:00
|
|
|
}
|
2018-10-26 12:35:46 +03:00
|
|
|
|
2020-10-06 14:36:55 +03:00
|
|
|
static RegisterLegacyCommand r_nix_instantiate("nix-instantiate", main_nix_instantiate);
|