2020-05-09 03:18:28 +03:00
|
|
|
#include "error.hh"
|
2020-03-22 20:25:47 +02:00
|
|
|
|
|
|
|
#include <iostream>
|
2020-03-25 18:52:03 +02:00
|
|
|
#include <optional>
|
2020-04-18 00:07:44 +03:00
|
|
|
#include "serialise.hh"
|
2020-05-14 21:28:18 +03:00
|
|
|
#include <sstream>
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-04-29 06:06:08 +03:00
|
|
|
namespace nix {
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-04-24 23:57:51 +03:00
|
|
|
|
|
|
|
const std::string nativeSystem = SYSTEM;
|
|
|
|
|
2020-06-19 22:44:08 +03:00
|
|
|
BaseError & BaseError::addTrace(std::optional<ErrPos> e, hintformat hint)
|
2020-06-19 00:25:26 +03:00
|
|
|
{
|
|
|
|
err.traces.push_front(Trace { .pos = e, .hint = hint});
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2020-06-04 20:53:19 +03:00
|
|
|
// c++ std::exception descendants must have a 'const char* what()' function.
|
|
|
|
// This stringifies the error and caches it for use by what(), or similarly by msg().
|
2020-05-14 21:28:18 +03:00
|
|
|
const string& BaseError::calcWhat() const
|
|
|
|
{
|
|
|
|
if (what_.has_value())
|
|
|
|
return *what_;
|
|
|
|
else {
|
|
|
|
err.name = sname();
|
|
|
|
|
|
|
|
std::ostringstream oss;
|
2020-06-29 19:20:51 +03:00
|
|
|
showErrorInfo(oss, err, false);
|
2020-05-14 21:28:18 +03:00
|
|
|
what_ = oss.str();
|
|
|
|
|
|
|
|
return *what_;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-02 06:30:19 +03:00
|
|
|
std::optional<string> ErrorInfo::programName = std::nullopt;
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-04-15 19:09:43 +03:00
|
|
|
std::ostream& operator<<(std::ostream &os, const hintformat &hf)
|
|
|
|
{
|
|
|
|
return os << hf.str();
|
|
|
|
}
|
|
|
|
|
2020-04-08 18:07:58 +03:00
|
|
|
string showErrPos(const ErrPos &errPos)
|
2020-03-22 20:25:47 +02:00
|
|
|
{
|
2020-05-09 03:18:28 +03:00
|
|
|
if (errPos.line > 0) {
|
|
|
|
if (errPos.column > 0) {
|
|
|
|
return fmt("(%1%:%2%)", errPos.line, errPos.column);
|
|
|
|
} else {
|
|
|
|
return fmt("(%1%)", errPos.line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return "";
|
|
|
|
}
|
2020-03-22 20:25:47 +02:00
|
|
|
}
|
|
|
|
|
2020-06-24 17:33:53 +03:00
|
|
|
std::optional<LinesOfCode> getCodeLines(const ErrPos &errPos)
|
2020-05-21 02:25:02 +03:00
|
|
|
{
|
2020-06-24 17:33:53 +03:00
|
|
|
if (errPos.line <= 0)
|
|
|
|
return std::nullopt;
|
2020-05-21 02:25:02 +03:00
|
|
|
|
2020-06-24 17:33:53 +03:00
|
|
|
if (errPos.origin == foFile) {
|
|
|
|
LinesOfCode loc;
|
2020-05-21 07:18:26 +03:00
|
|
|
try {
|
2020-06-24 17:33:53 +03:00
|
|
|
AutoCloseFD fd = open(errPos.file.c_str(), O_RDONLY | O_CLOEXEC);
|
|
|
|
if (!fd) {
|
|
|
|
logError(SysError("opening file '%1%'", errPos.file).info());
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
2020-05-21 23:28:45 +03:00
|
|
|
else
|
2020-05-21 07:18:26 +03:00
|
|
|
{
|
2020-05-21 23:28:45 +03:00
|
|
|
// count the newlines.
|
|
|
|
int count = 0;
|
|
|
|
string line;
|
2020-06-24 17:33:53 +03:00
|
|
|
int pl = errPos.line - 1;
|
2020-06-19 00:25:26 +03:00
|
|
|
do
|
2020-05-21 07:18:26 +03:00
|
|
|
{
|
2020-05-21 23:28:45 +03:00
|
|
|
line = readLine(fd.get());
|
|
|
|
++count;
|
2020-06-19 00:25:26 +03:00
|
|
|
if (count < pl)
|
2020-05-21 23:28:45 +03:00
|
|
|
{
|
2020-06-19 00:25:26 +03:00
|
|
|
;
|
2020-05-21 23:28:45 +03:00
|
|
|
}
|
|
|
|
else if (count == pl) {
|
2020-06-24 17:33:53 +03:00
|
|
|
loc.prevLineOfCode = line;
|
2020-05-21 23:28:45 +03:00
|
|
|
} else if (count == pl + 1) {
|
2020-06-24 17:33:53 +03:00
|
|
|
loc.errLineOfCode = line;
|
2020-05-21 23:28:45 +03:00
|
|
|
} else if (count == pl + 2) {
|
2020-06-24 17:33:53 +03:00
|
|
|
loc.nextLineOfCode = line;
|
2020-05-21 23:28:45 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (true);
|
2020-06-24 17:33:53 +03:00
|
|
|
return loc;
|
2020-06-19 00:25:26 +03:00
|
|
|
}
|
2020-05-21 07:18:26 +03:00
|
|
|
}
|
|
|
|
catch (EndOfFile &eof) {
|
2020-06-24 17:33:53 +03:00
|
|
|
// TODO: return maybe partial loc?
|
|
|
|
return std::nullopt;
|
2020-05-21 07:18:26 +03:00
|
|
|
}
|
|
|
|
catch (std::exception &e) {
|
2020-06-24 17:33:53 +03:00
|
|
|
printError("error reading nix file: %s\n%s", errPos.file, e.what());
|
|
|
|
return std::nullopt;
|
2020-05-21 07:18:26 +03:00
|
|
|
}
|
2020-06-19 00:25:26 +03:00
|
|
|
} else {
|
2020-06-24 17:33:53 +03:00
|
|
|
std::istringstream iss(errPos.file);
|
2020-05-21 02:25:02 +03:00
|
|
|
// count the newlines.
|
|
|
|
int count = 0;
|
|
|
|
string line;
|
2020-06-24 17:33:53 +03:00
|
|
|
int pl = errPos.line - 1;
|
|
|
|
|
|
|
|
LinesOfCode loc;
|
2020-05-21 07:18:26 +03:00
|
|
|
|
2020-06-19 00:25:26 +03:00
|
|
|
do
|
2020-05-21 02:25:02 +03:00
|
|
|
{
|
2020-05-21 07:18:26 +03:00
|
|
|
std::getline(iss, line);
|
2020-05-21 02:25:02 +03:00
|
|
|
++count;
|
2020-06-19 00:25:26 +03:00
|
|
|
if (count < pl)
|
2020-05-21 02:25:02 +03:00
|
|
|
{
|
2020-06-19 00:25:26 +03:00
|
|
|
;
|
2020-05-21 02:25:02 +03:00
|
|
|
}
|
|
|
|
else if (count == pl) {
|
2020-06-24 17:33:53 +03:00
|
|
|
loc.prevLineOfCode = line;
|
2020-05-21 02:25:02 +03:00
|
|
|
} else if (count == pl + 1) {
|
2020-06-24 17:33:53 +03:00
|
|
|
loc.errLineOfCode = line;
|
2020-05-21 02:25:02 +03:00
|
|
|
} else if (count == pl + 2) {
|
2020-06-24 17:33:53 +03:00
|
|
|
loc.nextLineOfCode = line;
|
2020-05-21 02:25:02 +03:00
|
|
|
break;
|
|
|
|
}
|
2020-05-21 07:18:26 +03:00
|
|
|
|
|
|
|
if (!iss.good())
|
|
|
|
break;
|
2020-05-21 02:25:02 +03:00
|
|
|
} while (true);
|
2020-06-24 17:33:53 +03:00
|
|
|
|
|
|
|
return loc;
|
2020-05-21 02:25:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 07:05:21 +03:00
|
|
|
// print lines of code to the ostream, indicating the error column.
|
2020-06-24 17:33:53 +03:00
|
|
|
void printCodeLines(std::ostream &out,
|
|
|
|
const string &prefix,
|
|
|
|
const ErrPos &errPos,
|
|
|
|
const LinesOfCode &loc)
|
2020-03-22 20:25:47 +02:00
|
|
|
{
|
2020-04-08 18:48:21 +03:00
|
|
|
// previous line of code.
|
2020-06-24 17:33:53 +03:00
|
|
|
if (loc.prevLineOfCode.has_value()) {
|
2020-06-15 15:12:39 +03:00
|
|
|
out << std::endl
|
2020-06-03 23:47:00 +03:00
|
|
|
<< fmt("%1% %|2$5d|| %3%",
|
2020-06-19 00:25:26 +03:00
|
|
|
prefix,
|
2020-06-24 17:33:53 +03:00
|
|
|
(errPos.line - 1),
|
|
|
|
*loc.prevLineOfCode);
|
2020-04-08 18:48:21 +03:00
|
|
|
}
|
2020-04-03 01:02:40 +03:00
|
|
|
|
2020-06-24 17:33:53 +03:00
|
|
|
if (loc.errLineOfCode.has_value()) {
|
2020-05-09 03:18:28 +03:00
|
|
|
// line of code containing the error.
|
2020-06-03 23:47:00 +03:00
|
|
|
out << std::endl
|
|
|
|
<< fmt("%1% %|2$5d|| %3%",
|
2020-06-19 00:25:26 +03:00
|
|
|
prefix,
|
2020-06-24 17:33:53 +03:00
|
|
|
(errPos.line),
|
|
|
|
*loc.errLineOfCode);
|
2020-05-09 03:18:28 +03:00
|
|
|
// error arrows for the column range.
|
2020-06-24 17:33:53 +03:00
|
|
|
if (errPos.column > 0) {
|
|
|
|
int start = errPos.column;
|
2020-05-09 03:18:28 +03:00
|
|
|
std::string spaces;
|
|
|
|
for (int i = 0; i < start; ++i) {
|
|
|
|
spaces.append(" ");
|
|
|
|
}
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-05-09 03:18:28 +03:00
|
|
|
std::string arrows("^");
|
2020-04-02 01:20:20 +03:00
|
|
|
|
2020-06-03 23:47:00 +03:00
|
|
|
out << std::endl
|
|
|
|
<< fmt("%1% |%2%" ANSI_RED "%3%" ANSI_NORMAL,
|
2020-06-19 00:25:26 +03:00
|
|
|
prefix,
|
|
|
|
spaces,
|
|
|
|
arrows);
|
2020-05-09 03:18:28 +03:00
|
|
|
}
|
2020-03-22 20:25:47 +02:00
|
|
|
}
|
|
|
|
|
2020-04-08 18:48:21 +03:00
|
|
|
// next line of code.
|
2020-06-24 17:33:53 +03:00
|
|
|
if (loc.nextLineOfCode.has_value()) {
|
2020-06-03 23:47:00 +03:00
|
|
|
out << std::endl
|
|
|
|
<< fmt("%1% %|2$5d|| %3%",
|
2020-06-19 00:25:26 +03:00
|
|
|
prefix,
|
2020-06-24 17:33:53 +03:00
|
|
|
(errPos.line + 1),
|
|
|
|
*loc.nextLineOfCode);
|
2020-04-08 18:48:21 +03:00
|
|
|
}
|
2020-03-22 20:25:47 +02:00
|
|
|
}
|
|
|
|
|
2020-06-25 03:31:28 +03:00
|
|
|
void printAtPos(const string &prefix, const ErrPos &pos, std::ostream &out)
|
|
|
|
{
|
2020-07-01 19:37:31 +03:00
|
|
|
if (pos)
|
2020-06-25 03:31:28 +03:00
|
|
|
{
|
|
|
|
switch (pos.origin) {
|
|
|
|
case foFile: {
|
|
|
|
out << prefix << ANSI_BLUE << "at: " << ANSI_YELLOW << showErrPos(pos) <<
|
|
|
|
ANSI_BLUE << " in file: " << ANSI_NORMAL << pos.file;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case foString: {
|
|
|
|
out << prefix << ANSI_BLUE << "at: " << ANSI_YELLOW << showErrPos(pos) <<
|
2020-06-25 18:56:32 +03:00
|
|
|
ANSI_BLUE << " from string" << ANSI_NORMAL;
|
2020-06-25 03:31:28 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case foStdin: {
|
|
|
|
out << prefix << ANSI_BLUE << "at: " << ANSI_YELLOW << showErrPos(pos) <<
|
|
|
|
ANSI_BLUE << " from stdin" << ANSI_NORMAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
throw Error("invalid FileOrigin in errPos");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-27 21:19:31 +03:00
|
|
|
std::ostream& showErrorInfo(std::ostream &out, const ErrorInfo &einfo, bool showTrace)
|
2020-03-22 20:25:47 +02:00
|
|
|
{
|
2020-06-15 19:18:02 +03:00
|
|
|
auto errwidth = std::max<size_t>(getWindowSize().second, 20);
|
2020-04-25 06:40:13 +03:00
|
|
|
string prefix = "";
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-04-02 01:20:20 +03:00
|
|
|
string levelString;
|
2020-04-03 01:02:40 +03:00
|
|
|
switch (einfo.level) {
|
2020-05-09 03:18:28 +03:00
|
|
|
case Verbosity::lvlError: {
|
|
|
|
levelString = ANSI_RED;
|
|
|
|
levelString += "error:";
|
|
|
|
levelString += ANSI_NORMAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Verbosity::lvlWarn: {
|
|
|
|
levelString = ANSI_YELLOW;
|
|
|
|
levelString += "warning:";
|
|
|
|
levelString += ANSI_NORMAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Verbosity::lvlInfo: {
|
|
|
|
levelString = ANSI_GREEN;
|
|
|
|
levelString += "info:";
|
|
|
|
levelString += ANSI_NORMAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Verbosity::lvlTalkative: {
|
|
|
|
levelString = ANSI_GREEN;
|
|
|
|
levelString += "talk:";
|
|
|
|
levelString += ANSI_NORMAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Verbosity::lvlChatty: {
|
|
|
|
levelString = ANSI_GREEN;
|
|
|
|
levelString += "chat:";
|
|
|
|
levelString += ANSI_NORMAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Verbosity::lvlVomit: {
|
|
|
|
levelString = ANSI_GREEN;
|
|
|
|
levelString += "vomit:";
|
|
|
|
levelString += ANSI_NORMAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Verbosity::lvlDebug: {
|
|
|
|
levelString = ANSI_YELLOW;
|
|
|
|
levelString += "debug:";
|
|
|
|
levelString += ANSI_NORMAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
levelString = fmt("invalid error level: %1%", einfo.level);
|
|
|
|
break;
|
|
|
|
}
|
2020-03-22 20:25:47 +02:00
|
|
|
}
|
|
|
|
|
2020-06-25 03:31:28 +03:00
|
|
|
auto ndl = prefix.length()
|
|
|
|
+ filterANSIEscapes(levelString, true).length()
|
|
|
|
+ 7
|
|
|
|
+ einfo.name.length()
|
|
|
|
+ einfo.programName.value_or("").length();
|
|
|
|
auto dashwidth = std::max<int>(errwidth - ndl, 3);
|
2020-04-02 01:20:20 +03:00
|
|
|
|
2020-06-15 19:16:03 +03:00
|
|
|
std::string dashes(dashwidth, '-');
|
2020-04-02 01:20:20 +03:00
|
|
|
|
|
|
|
// divider.
|
2020-04-25 21:05:26 +03:00
|
|
|
if (einfo.name != "")
|
2020-04-29 06:06:08 +03:00
|
|
|
out << fmt("%1%%2%" ANSI_BLUE " --- %3% %4% %5%" ANSI_NORMAL,
|
2020-04-29 19:14:32 +03:00
|
|
|
prefix,
|
|
|
|
levelString,
|
|
|
|
einfo.name,
|
|
|
|
dashes,
|
2020-06-03 23:47:00 +03:00
|
|
|
einfo.programName.value_or(""));
|
2020-04-25 21:05:26 +03:00
|
|
|
else
|
2020-04-29 06:06:08 +03:00
|
|
|
out << fmt("%1%%2%" ANSI_BLUE " -----%3% %4%" ANSI_NORMAL,
|
2020-04-29 19:14:32 +03:00
|
|
|
prefix,
|
|
|
|
levelString,
|
|
|
|
dashes,
|
2020-06-03 23:47:00 +03:00
|
|
|
einfo.programName.value_or(""));
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-06-03 23:47:00 +03:00
|
|
|
bool nl = false; // intersperse newline between sections.
|
2020-07-01 19:37:31 +03:00
|
|
|
if (einfo.errPos.has_value() && (*einfo.errPos)) {
|
2020-06-25 03:31:28 +03:00
|
|
|
out << prefix << std::endl;
|
|
|
|
printAtPos(prefix, *einfo.errPos, out);
|
2020-06-03 23:47:00 +03:00
|
|
|
nl = true;
|
2020-04-02 01:20:20 +03:00
|
|
|
}
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-04-02 01:20:20 +03:00
|
|
|
// description
|
2020-04-25 06:40:13 +03:00
|
|
|
if (einfo.description != "") {
|
2020-06-03 23:47:00 +03:00
|
|
|
if (nl)
|
|
|
|
out << std::endl << prefix;
|
|
|
|
out << std::endl << prefix << einfo.description;
|
|
|
|
nl = true;
|
2020-04-25 06:40:13 +03:00
|
|
|
}
|
2020-04-02 01:20:20 +03:00
|
|
|
|
2020-07-01 20:49:01 +03:00
|
|
|
if (einfo.errPos.has_value() && (*einfo.errPos)) {
|
2020-06-24 17:33:53 +03:00
|
|
|
auto loc = getCodeLines(*einfo.errPos);
|
2020-06-19 00:25:26 +03:00
|
|
|
|
2020-05-21 02:25:02 +03:00
|
|
|
// lines of code.
|
2020-06-24 17:33:53 +03:00
|
|
|
if (loc.has_value()) {
|
2020-06-08 20:10:13 +03:00
|
|
|
if (nl)
|
|
|
|
out << std::endl << prefix;
|
2020-06-24 17:33:53 +03:00
|
|
|
printCodeLines(out, prefix, *einfo.errPos, *loc);
|
2020-06-08 20:10:13 +03:00
|
|
|
nl = true;
|
2020-05-21 02:25:02 +03:00
|
|
|
}
|
2020-05-21 23:28:45 +03:00
|
|
|
}
|
2020-05-21 02:25:02 +03:00
|
|
|
|
2020-05-21 23:28:45 +03:00
|
|
|
// hint
|
|
|
|
if (einfo.hint.has_value()) {
|
2020-06-03 23:47:00 +03:00
|
|
|
if (nl)
|
|
|
|
out << std::endl << prefix;
|
|
|
|
out << std::endl << prefix << *einfo.hint;
|
|
|
|
nl = true;
|
2020-04-02 01:20:20 +03:00
|
|
|
}
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-06-23 18:36:58 +03:00
|
|
|
// traces
|
2020-06-30 00:46:21 +03:00
|
|
|
if (showTrace && !einfo.traces.empty())
|
|
|
|
{
|
2020-07-01 00:44:19 +03:00
|
|
|
const string tracetitle(" show-trace ");
|
2020-06-30 00:46:21 +03:00
|
|
|
|
|
|
|
int fill = errwidth - tracetitle.length();
|
|
|
|
int lw = 0;
|
|
|
|
int rw = 0;
|
|
|
|
const int min_dashes = 3;
|
|
|
|
if (fill > min_dashes * 2) {
|
|
|
|
if (fill % 2 != 0) {
|
|
|
|
lw = fill / 2;
|
|
|
|
rw = lw + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lw = rw = fill / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lw = rw = min_dashes;
|
|
|
|
|
|
|
|
if (nl)
|
|
|
|
out << std::endl << prefix;
|
|
|
|
|
|
|
|
out << ANSI_BLUE << std::string(lw, '-') << tracetitle << std::string(rw, '-') << ANSI_NORMAL;
|
|
|
|
|
2020-06-25 18:23:12 +03:00
|
|
|
for (auto iter = einfo.traces.rbegin(); iter != einfo.traces.rend(); ++iter)
|
|
|
|
{
|
|
|
|
try {
|
2020-06-30 00:46:21 +03:00
|
|
|
out << std::endl << prefix;
|
2020-07-01 19:37:31 +03:00
|
|
|
out << ANSI_BLUE << "trace: " << ANSI_NORMAL << iter->hint.str();
|
2020-06-25 18:23:12 +03:00
|
|
|
|
|
|
|
nl = true;
|
2020-07-01 20:49:01 +03:00
|
|
|
if (*iter->pos) {
|
|
|
|
auto pos = iter->pos.value();
|
2020-07-01 19:37:31 +03:00
|
|
|
out << std::endl << prefix;
|
2020-07-01 20:49:01 +03:00
|
|
|
|
2020-07-01 19:37:31 +03:00
|
|
|
printAtPos(prefix, pos, out);
|
|
|
|
auto loc = getCodeLines(pos);
|
|
|
|
if (loc.has_value())
|
|
|
|
{
|
|
|
|
out << std::endl << prefix;
|
|
|
|
printCodeLines(out, prefix, pos, *loc);
|
|
|
|
out << std::endl << prefix;
|
|
|
|
}
|
2020-06-30 00:46:21 +03:00
|
|
|
}
|
2020-06-25 18:23:12 +03:00
|
|
|
} catch(const std::bad_optional_access& e) {
|
|
|
|
out << iter->hint.str() << std::endl;
|
2020-06-25 03:31:28 +03:00
|
|
|
}
|
2020-06-23 18:36:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-18 00:07:44 +03:00
|
|
|
return out;
|
|
|
|
}
|
2020-03-22 20:25:47 +02:00
|
|
|
}
|