nix-super/src/libutil/error.cc

143 lines
3.9 KiB
C++
Raw Normal View History

#include "error.hh"
#include <iostream>
2020-03-25 18:52:03 +02:00
#include <optional>
2020-04-03 01:02:40 +03:00
namespace nix
{
std::optional<string> ErrorInfo::programName = std::nullopt;
2020-04-08 18:07:58 +03:00
string showErrPos(const ErrPos &errPos)
2020-04-07 04:43:22 +03:00
{
2020-04-08 18:07:58 +03:00
if (errPos.column > 0) {
return (format("(%1%:%2%)") % errPos.lineNumber % errPos.column).str();
2020-04-03 01:02:40 +03:00
} else {
2020-04-08 18:07:58 +03:00
return (format("(%1%)") % errPos.lineNumber).str();
2020-04-02 01:20:20 +03:00
};
}
2020-04-08 18:07:58 +03:00
void printCodeLines(const string &prefix, const ErrorInfo &einfo)
{
2020-04-08 18:07:58 +03:00
if (einfo.errPos.has_value()) {
2020-04-02 01:20:20 +03:00
// previous line of code.
2020-04-08 18:07:58 +03:00
if (einfo.prevLineOfCode.has_value()) {
std::cout << format("%1% %|2$5d|| %3%")
2020-04-08 18:07:58 +03:00
% prefix
% (einfo.errPos->lineNumber - 1)
% *einfo.prevLineOfCode
2020-04-03 01:02:40 +03:00
<< std::endl;
2020-04-02 01:20:20 +03:00
}
// line of code containing the error.%2$+5d%
std::cout << format("%1% %|2$5d|| %3%")
2020-04-03 01:02:40 +03:00
% prefix
2020-04-08 18:07:58 +03:00
% (einfo.errPos->lineNumber)
% einfo.errLineOfCode
2020-04-03 01:02:40 +03:00
<< std::endl;
// error arrows for the column range.
2020-04-08 18:07:58 +03:00
if (einfo.errPos->column > 0) {
int start = einfo.errPos->column;
2020-04-02 01:20:20 +03:00
std::string spaces;
2020-04-03 01:02:40 +03:00
for (int i = 0; i < start; ++i) {
2020-04-02 01:20:20 +03:00
spaces.append(" ");
}
2020-04-07 23:36:32 +03:00
std::string arrows("^");
2020-04-02 01:20:20 +03:00
2020-04-03 01:02:40 +03:00
std::cout << format("%1% |%2%" ANSI_RED "%3%" ANSI_NORMAL) % prefix % spaces % arrows << std::endl;
2020-04-02 01:20:20 +03:00
}
// next line of code.
2020-04-08 18:07:58 +03:00
if (einfo.nextLineOfCode.has_value()) {
std::cout << format("%1% %|2$5d|| %3%")
2020-04-03 01:02:40 +03:00
% prefix
2020-04-08 18:07:58 +03:00
% (einfo.errPos->lineNumber + 1)
% *einfo.nextLineOfCode
2020-04-03 01:02:40 +03:00
<< std::endl;
2020-04-02 01:20:20 +03:00
}
}
}
2020-04-07 04:43:22 +03:00
void printErrorInfo(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 ErrLevel::elError: {
levelString = ANSI_RED;
levelString += "error:";
levelString += ANSI_NORMAL;
break;
}
case ErrLevel::elWarning: {
levelString = ANSI_YELLOW;
levelString += "warning:";
levelString += ANSI_NORMAL;
break;
}
default: {
levelString = (format("invalid error level: %1%") % einfo.level).str();
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.
std::cout << format("%1%%2%" ANSI_BLUE " %3% %4% %5% %6%" ANSI_NORMAL)
2020-04-03 01:02:40 +03:00
% prefix
% levelString
% "---"
% einfo.name
% dashes
% einfo.programName.value_or("")
<< std::endl;
2020-04-02 01:20:20 +03:00
// filename.
2020-04-08 18:07:58 +03:00
if (einfo.errPos.has_value()) {
if (einfo.errPos->nixFile != "") {
string eline = einfo.errLineOfCode != ""
? string(" ") + showErrPos(*einfo.errPos)
2020-04-03 01:02:40 +03:00
: "";
2020-04-02 01:20:20 +03:00
2020-04-03 01:02:40 +03:00
std::cout << format("%1%in file: " ANSI_BLUE "%2%%3%" ANSI_NORMAL)
2020-04-08 18:07:58 +03:00
% prefix % einfo.errPos->nixFile % eline << std::endl;
std::cout << prefix << std::endl;
2020-04-03 01:02:40 +03:00
} else {
std::cout << format("%1%from command line argument") % prefix << std::endl;
std::cout << prefix << std::endl;
2020-04-02 01:20:20 +03:00
}
}
2020-04-02 01:20:20 +03:00
// description
std::cout << prefix << einfo.description << std::endl;
std::cout << prefix << std::endl;
2020-04-02 01:20:20 +03:00
// lines of code.
2020-04-08 18:07:58 +03:00
if (einfo.errLineOfCode != "") {
printCodeLines(prefix, einfo);
std::cout << prefix << std::endl;
2020-04-02 01:20:20 +03:00
}
// hint
2020-04-03 01:02:40 +03:00
if (einfo.hint.has_value()) {
std::cout << prefix << *einfo.hint << std::endl;
std::cout << prefix << std::endl;
2020-04-02 01:20:20 +03:00
}
}
}