nix-super/src/libutil/error.cc

266 lines
6.7 KiB
C++
Raw Normal View History

#include "error.hh"
#include <iostream>
2020-03-25 18:52:03 +02:00
#include <optional>
#include "serialise.hh"
2020-05-14 21:28:18 +03:00
#include <sstream>
2020-04-29 06:06:08 +03:00
namespace nix {
2020-04-24 23:57:51 +03:00
const std::string nativeSystem = SYSTEM;
BaseError & BaseError::addPrefix(const FormatOrString & fs)
{
prefix_ = fs.s + prefix_;
return *this;
}
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;
oss << err;
what_ = oss.str();
return *what_;
}
}
std::optional<string> ErrorInfo::programName = std::nullopt;
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)
{
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-05-21 02:25:02 +03:00
void getCodeLines(NixCode &nixCode)
{
if (nixCode.errPos.line <= 0)
return;
// check this magic value!
if (nixCode.errPos.file == "(string)")
return;
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
{
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) {
;
}
catch (std::exception &e) {
printError("error reading nix file: %s\n%s", nixCode.errPos.file, e.what());
}
}
void printCodeLines(std::ostream &out, const string &prefix, const NixCode &nixCode)
{
2020-04-08 18:48:21 +03:00
// previous line of code.
if (nixCode.prevLineOfCode.has_value()) {
out << fmt("%1% %|2$5d|| %3%",
2020-04-29 19:14:32 +03:00
prefix,
(nixCode.errPos.line - 1),
*nixCode.prevLineOfCode)
<< std::endl;
2020-04-08 18:48:21 +03:00
}
2020-04-03 01:02:40 +03:00
if (nixCode.errLineOfCode.has_value()) {
// line of code containing the error.
out << fmt("%1% %|2$5d|| %3%",
prefix,
(nixCode.errPos.line),
*nixCode.errLineOfCode)
<< std::endl;
// error arrows for the column range.
if (nixCode.errPos.column > 0) {
int start = nixCode.errPos.column;
std::string spaces;
for (int i = 0; i < start; ++i) {
spaces.append(" ");
}
std::string arrows("^");
2020-04-02 01:20:20 +03:00
out << fmt("%1% |%2%" ANSI_RED "%3%" ANSI_NORMAL,
prefix,
spaces,
arrows) << std::endl;
}
}
2020-04-08 18:48:21 +03:00
// next line of code.
if (nixCode.nextLineOfCode.has_value()) {
out << fmt("%1% %|2$5d|| %3%",
2020-04-29 19:14:32 +03:00
prefix,
(nixCode.errPos.line + 1),
*nixCode.nextLineOfCode)
<< std::endl;
2020-04-08 18:48:21 +03:00
}
}
std::ostream& operator<<(std::ostream &out, const ErrorInfo &einfo)
{
2020-04-02 01:20:20 +03:00
int errwidth = 80;
string prefix = "";
2020-04-02 01:20:20 +03:00
string levelString;
2020-04-03 01:02:40 +03:00
switch (einfo.level) {
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-04-02 01:20:20 +03:00
int ndl = prefix.length() + levelString.length() + 3 + einfo.name.length() + einfo.programName.value_or("").length();
2020-04-03 01:02:40 +03:00
int dashwidth = ndl > (errwidth - 3) ? 3 : errwidth - ndl;
2020-04-02 01:20:20 +03:00
string dashes;
for (int i = 0; i < dashwidth; ++i)
dashes.append("-");
// divider.
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,
einfo.programName.value_or(""))
2020-04-29 06:06:08 +03:00
<< std::endl;
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,
einfo.programName.value_or(""))
2020-04-29 06:06:08 +03:00
<< std::endl;
// filename, line, column.
2020-04-03 01:02:40 +03:00
if (einfo.nixCode.has_value()) {
if (einfo.nixCode->errPos.file != "") {
out << fmt("%1%in file: " ANSI_BLUE "%2% %3%" ANSI_NORMAL,
2020-04-29 19:14:32 +03:00
prefix,
einfo.nixCode->errPos.file,
showErrPos(einfo.nixCode->errPos)) << std::endl;
out << prefix << std::endl;
2020-04-03 01:02:40 +03:00
} else {
out << fmt("%1%from command line argument", prefix) << std::endl;
out << prefix << std::endl;
2020-04-02 01:20:20 +03:00
}
}
2020-04-02 01:20:20 +03:00
// description
if (einfo.description != "") {
out << prefix << einfo.description << std::endl;
out << prefix << std::endl;
}
2020-04-02 01:20:20 +03:00
2020-05-21 02:25:02 +03:00
if (einfo.nixCode.has_value()) {
NixCode nixcode = *einfo.nixCode;
getCodeLines(nixcode);
// lines of code.
if (nixcode.errLineOfCode.has_value()) {
printCodeLines(out, prefix, nixcode);
out << prefix << std::endl;
}
// hint
out << prefix << *einfo.hint << std::endl;
out << prefix << std::endl;
2020-04-02 01:20:20 +03:00
}
return out;
}
}