1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/libutil/error.cc

311 lines
8.6 KiB
C++
Raw Normal View History

#include "error.hh"
#include <iostream>
2020-03-25 12:52:03 -04:00
#include <optional>
#include "serialise.hh"
2020-05-14 14:28:18 -04:00
#include <sstream>
2020-04-28 23:06:08 -04:00
namespace nix {
2020-04-24 16:57:51 -04:00
const std::string nativeSystem = SYSTEM;
2020-06-04 13:53:19 -04:00
// addPrefix is used for show-trace. Strings added with addPrefix
// will print ahead of the error itself.
2020-04-24 16:57:51 -04:00
BaseError & BaseError::addPrefix(const FormatOrString & fs)
{
prefix_ = fs.s + prefix_;
return *this;
}
2020-06-04 13:53:19 -04: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 14:28:18 -04: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 12:09:43 -04:00
std::ostream& operator<<(std::ostream &os, const hintformat &hf)
{
return os << hf.str();
}
2020-04-08 11:07:58 -04: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-20 19:25:02 -04:00
void getCodeLines(NixCode &nixCode)
{
if (nixCode.errPos.line <= 0)
return;
2020-05-21 00:18:26 -04:00
if (nixCode.errPos.origin == foFile) {
try {
AutoCloseFD fd = open(nixCode.errPos.file.c_str(), O_RDONLY | O_CLOEXEC);
if (!fd)
logError(SysError("opening file '%1%'", nixCode.errPos.file).info());
else
2020-05-21 00:18:26 -04:00
{
// count the newlines.
int count = 0;
string line;
int pl = nixCode.errPos.line - 1;
do
2020-05-21 00:18:26 -04:00
{
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);
}
2020-05-21 00:18:26 -04:00
}
catch (EndOfFile &eof) {
;
}
catch (std::exception &e) {
printError("error reading nix file: %s\n%s", nixCode.errPos.file, e.what());
}
} else {
std::istringstream iss(nixCode.errPos.file);
2020-05-20 19:25:02 -04:00
// count the newlines.
int count = 0;
string line;
int pl = nixCode.errPos.line - 1;
2020-05-21 00:18:26 -04:00
2020-05-20 19:25:02 -04:00
do
{
2020-05-21 00:18:26 -04:00
std::getline(iss, line);
2020-05-20 19:25:02 -04:00
++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;
}
2020-05-21 00:18:26 -04:00
if (!iss.good())
break;
2020-05-20 19:25:02 -04:00
} while (true);
}
}
2020-06-04 13:53:19 -04:00
// if nixCode contains lines of code, print them to the ostream, indicating the error column.
void printCodeLines(std::ostream &out, const string &prefix, const NixCode &nixCode)
{
2020-04-08 11:48:21 -04:00
// previous line of code.
if (nixCode.prevLineOfCode.has_value()) {
2020-06-15 08:12:39 -04:00
out << std::endl
<< fmt("%1% %|2$5d|| %3%",
prefix,
(nixCode.errPos.line - 1),
*nixCode.prevLineOfCode);
2020-04-08 11:48:21 -04:00
}
2020-04-02 18:02:40 -04:00
if (nixCode.errLineOfCode.has_value()) {
// line of code containing the error.
out << std::endl
<< fmt("%1% %|2$5d|| %3%",
prefix,
(nixCode.errPos.line),
*nixCode.errLineOfCode);
// 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-01 18:20:20 -04:00
out << std::endl
<< fmt("%1% |%2%" ANSI_RED "%3%" ANSI_NORMAL,
prefix,
spaces,
arrows);
}
}
2020-04-08 11:48:21 -04:00
// next line of code.
if (nixCode.nextLineOfCode.has_value()) {
out << std::endl
<< fmt("%1% %|2$5d|| %3%",
prefix,
(nixCode.errPos.line + 1),
*nixCode.nextLineOfCode);
2020-04-08 11:48:21 -04:00
}
}
std::ostream& operator<<(std::ostream &out, const ErrorInfo &einfo)
{
auto errwidth = std::max<size_t>(getWindowSize().second, 20);
string prefix = "";
2020-04-01 18:20:20 -04:00
string levelString;
2020-04-02 18:02:40 -04: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-06-15 12:16:03 -04:00
auto ndl = prefix.length() + levelString.length() + 3 + einfo.name.length() + einfo.programName.value_or("").length();
auto dashwidth = ndl > (errwidth - 3) ? 3 : errwidth - ndl;
2020-04-01 18:20:20 -04:00
2020-06-15 12:16:03 -04:00
std::string dashes(dashwidth, '-');
2020-04-01 18:20:20 -04:00
// divider.
if (einfo.name != "")
2020-04-28 23:06:08 -04:00
out << fmt("%1%%2%" ANSI_BLUE " --- %3% %4% %5%" ANSI_NORMAL,
2020-04-29 12:14:32 -04:00
prefix,
levelString,
einfo.name,
dashes,
einfo.programName.value_or(""));
else
2020-04-28 23:06:08 -04:00
out << fmt("%1%%2%" ANSI_BLUE " -----%3% %4%" ANSI_NORMAL,
2020-04-29 12:14:32 -04:00
prefix,
levelString,
dashes,
einfo.programName.value_or(""));
bool nl = false; // intersperse newline between sections.
2020-04-02 18:02:40 -04:00
if (einfo.nixCode.has_value()) {
2020-05-21 00:18:26 -04:00
switch (einfo.nixCode->errPos.origin) {
case foFile: {
out << fmt("%1%in file: " ANSI_BLUE "%2% %3%" ANSI_NORMAL,
prefix,
einfo.nixCode->errPos.file,
showErrPos(einfo.nixCode->errPos)) << std::endl;
out << prefix << std::endl;
break;
}
case foString: {
out << fmt("%1%from command line argument %2%", prefix, showErrPos(einfo.nixCode->errPos)) << std::endl;
2020-05-21 00:18:26 -04:00
out << prefix << std::endl;
break;
}
case foStdin: {
out << fmt("%1%from stdin %2%", prefix, showErrPos(einfo.nixCode->errPos)) << std::endl;
2020-05-21 00:18:26 -04:00
out << prefix << std::endl;
break;
}
default:
throw Error("invalid FileOrigin in errPos");
2020-04-01 18:20:20 -04:00
}
nl = true;
2020-04-01 18:20:20 -04:00
}
2020-04-01 18:20:20 -04:00
// description
if (einfo.description != "") {
if (nl)
out << std::endl << prefix;
out << std::endl << prefix << einfo.description;
nl = true;
}
2020-04-01 18:20:20 -04:00
2020-05-20 19:25:02 -04:00
if (einfo.nixCode.has_value()) {
NixCode nixcode = *einfo.nixCode;
getCodeLines(nixcode);
// lines of code.
if (nixcode.errLineOfCode.has_value()) {
if (nl)
out << std::endl << prefix;
2020-05-20 19:25:02 -04:00
printCodeLines(out, prefix, nixcode);
nl = true;
2020-05-20 19:25:02 -04:00
}
}
2020-05-20 19:25:02 -04:00
// hint
if (einfo.hint.has_value()) {
if (nl)
out << std::endl << prefix;
out << std::endl << prefix << *einfo.hint;
nl = true;
2020-04-01 18:20:20 -04:00
}
return out;
}
}