aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/error-demo/error-demo.cc8
-rw-r--r--src/libexpr/nixexpr.cc17
-rw-r--r--src/libutil/error.cc59
3 files changed, 50 insertions, 34 deletions
diff --git a/src/error-demo/error-demo.cc b/src/error-demo/error-demo.cc
index 0216092e3..8c73a8c83 100644
--- a/src/error-demo/error-demo.cc
+++ b/src/error-demo/error-demo.cc
@@ -118,7 +118,7 @@ int main()
"yellow",
"values"),
.nixCode = NixCode {
- .errPos = Pos(problem_file, 40, 13),
+ .errPos = Pos(foFile, problem_file, 40, 13),
.prevLineOfCode = std::nullopt,
.errLineOfCode = "this is the problem line of code",
.nextLineOfCode = std::nullopt
@@ -132,7 +132,7 @@ int main()
"yellow",
"values"),
.nixCode = NixCode {
- .errPos = Pos(problem_file, 40, 13),
+ .errPos = Pos(foFile, problem_file, 40, 13),
.prevLineOfCode = "previous line of code",
.errLineOfCode = "this is the problem line of code",
.nextLineOfCode = "next line of code",
@@ -147,7 +147,7 @@ int main()
"yellow",
"values"),
.nixCode = NixCode {
- .errPos = Pos(problem_file, 40, 13)
+ .errPos = Pos(foFile, problem_file, 40, 13)
}});
// Error with only hint and name..
@@ -155,7 +155,7 @@ int main()
ErrorInfo { .name = "error name",
.hint = hintfmt("hint %1%", "only"),
.nixCode = NixCode {
- .errPos = Pos(problem_file, 40, 13)
+ .errPos = Pos(foFile, problem_file, 40, 13)
}});
return 0;
diff --git a/src/libexpr/nixexpr.cc b/src/libexpr/nixexpr.cc
index 91a508305..6ab36dd35 100644
--- a/src/libexpr/nixexpr.cc
+++ b/src/libexpr/nixexpr.cc
@@ -197,7 +197,22 @@ std::ostream & operator << (std::ostream & str, const Pos & pos)
if (!pos)
str << "undefined position";
else
- str << (format(ANSI_BOLD "%1%" ANSI_NORMAL ":%2%:%3%") % (string) pos.file % pos.line % pos.column).str();
+ {
+ auto f = format(ANSI_BOLD "%1%" ANSI_NORMAL ":%2%:%3%");
+ switch (pos.origin) {
+ case foFile:
+ f % (string) pos.file;
+ break;
+ case foStdin:
+ case foString:
+ f % "(string)";
+ break;
+ default:
+ throw Error("unhandled Pos origin!");
+ }
+ str << (f % pos.line % pos.column).str();
+ }
+
return str;
}
diff --git a/src/libutil/error.cc b/src/libutil/error.cc
index ee415e18c..585059f22 100644
--- a/src/libutil/error.cc
+++ b/src/libutil/error.cc
@@ -58,34 +58,35 @@ void getCodeLines(NixCode &nixCode)
if (nixCode.errPos.line <= 0)
return;
- // check this magic value!
if (nixCode.errPos.origin == foFile) {
try {
AutoCloseFD fd = open(nixCode.errPos.file.c_str(), O_RDONLY | O_CLOEXEC);
if (!fd)
- throw SysError("opening file '%1%'", nixCode.errPos.file);
-
- // count the newlines.
- int count = 0;
- string line;
- int pl = nixCode.errPos.line - 1;
- do
+ logError(SysError("opening file '%1%'", nixCode.errPos.file).info());
+ else
{
- line = readLine(fd.get());
- ++count;
- if (count < pl)
+ // count the newlines.
+ int count = 0;
+ string line;
+ int pl = nixCode.errPos.line - 1;
+ do
{
- ;
- }
- else if (count == pl) {
- nixCode.prevLineOfCode = line;
- } else if (count == pl + 1) {
- nixCode.errLineOfCode = line;
- } else if (count == pl + 2) {
- nixCode.nextLineOfCode = line;
- break;
- }
- } while (true);
+ line = readLine(fd.get());
+ ++count;
+ if (count < pl)
+ {
+ ;
+ }
+ else if (count == pl) {
+ nixCode.prevLineOfCode = line;
+ } else if (count == pl + 1) {
+ nixCode.errLineOfCode = line;
+ } else if (count == pl + 2) {
+ nixCode.nextLineOfCode = line;
+ break;
+ }
+ } while (true);
+ }
}
catch (EndOfFile &eof) {
;
@@ -103,7 +104,6 @@ void getCodeLines(NixCode &nixCode)
do
{
std::getline(iss, line);
- // std::cout << "getline result: " << std::getline(iss, line) << std::endl;
++count;
if (count < pl)
{
@@ -261,12 +261,12 @@ std::ostream& operator<<(std::ostream &out, const ErrorInfo &einfo)
break;
}
case foString: {
- out << fmt("%1%from command line argument", prefix) << std::endl;
+ out << fmt("%1%from command line argument %2%", prefix, showErrPos(einfo.nixCode->errPos)) << std::endl;
out << prefix << std::endl;
break;
}
case foStdin: {
- out << fmt("%1%from stdin", prefix) << std::endl;
+ out << fmt("%1%from stdin %2%", prefix, showErrPos(einfo.nixCode->errPos)) << std::endl;
out << prefix << std::endl;
break;
}
@@ -291,11 +291,12 @@ std::ostream& operator<<(std::ostream &out, const ErrorInfo &einfo)
printCodeLines(out, prefix, nixcode);
out << prefix << std::endl;
}
+ }
- // hint
- out << prefix << *einfo.hint << std::endl;
- out << prefix << std::endl;
-
+ // hint
+ if (einfo.hint.has_value()) {
+ out << prefix << *einfo.hint << std::endl;
+ out << prefix << std::endl;
}
return out;