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

184 lines
5.1 KiB
C++
Raw Normal View History

#include "error.hh"
#include <iostream>
2020-03-25 12:52:03 -04:00
#include <optional>
2020-04-02 18:02:40 -04:00
namespace nix
{
std::optional<string> ErrorInfo::programName = std::nullopt;
2020-04-06 21:43:22 -04:00
ErrorInfo ErrorInfo::ProgramError(const string &name,
const string &description,
const std::optional<hintformat> &hf)
{
return ProgramEI(elError, name, description, hf);
}
ErrorInfo ErrorInfo::ProgramWarning(const string &name,
const string &description,
const std::optional<hintformat> &hf)
{
return ProgramEI(elWarning, name, description, hf);
}
ErrorInfo ErrorInfo::ProgramEI(ErrLevel level,
const string &name,
const string &description,
const std::optional<hintformat> &hf)
{
ErrorInfo ei(elError);
ei.name = name;
ei.description = description;
if (hf.has_value())
ei.hint = std::optional<string>(hf->str());
else
ei.hint = std::nullopt;
return ei;
}
string showErrLine(const ErrLine &errLine)
{
2020-04-02 18:02:40 -04:00
if (errLine.columnRange.has_value()) {
2020-04-01 18:20:20 -04:00
return (format("(%1%:%2%)") % errLine.lineNumber % errLine.columnRange->start).str();
2020-04-02 18:02:40 -04:00
} else {
2020-04-01 18:20:20 -04:00
return (format("(%1%)") % errLine.lineNumber).str();
};
}
2020-04-06 21:43:22 -04:00
void printCodeLines(const string &prefix, const NixCode &nixCode)
{
2020-04-02 18:02:40 -04:00
if (nixCode.errLine.has_value()) {
2020-04-01 18:20:20 -04:00
// previous line of code.
2020-04-02 18:02:40 -04:00
if (nixCode.errLine->prevLineOfCode.has_value()) {
std::cout << format("%1% %|2$5d|| %3%")
2020-04-02 18:02:40 -04:00
% prefix
% (nixCode.errLine->lineNumber - 1)
% *nixCode.errLine->prevLineOfCode
<< std::endl;
2020-04-01 18:20:20 -04:00
}
// line of code containing the error.%2$+5d%
std::cout << format("%1% %|2$5d|| %3%")
2020-04-02 18:02:40 -04:00
% prefix
% (nixCode.errLine->lineNumber)
% nixCode.errLine->errLineOfCode
<< std::endl;
// error arrows for the column range.
if (nixCode.errLine->columnRange.has_value()) {
2020-04-01 18:20:20 -04:00
int start = nixCode.errLine->columnRange->start;
std::string spaces;
2020-04-02 18:02:40 -04:00
for (int i = 0; i < start; ++i) {
2020-04-01 18:20:20 -04:00
spaces.append(" ");
}
int len = nixCode.errLine->columnRange->len;
std::string arrows;
2020-04-02 18:02:40 -04:00
for (int i = 0; i < len; ++i) {
2020-04-01 18:20:20 -04:00
arrows.append("^");
}
2020-04-02 18:02:40 -04:00
std::cout << format("%1% |%2%" ANSI_RED "%3%" ANSI_NORMAL) % prefix % spaces % arrows << std::endl;
2020-04-01 18:20:20 -04:00
}
// next line of code.
2020-04-02 18:02:40 -04:00
if (nixCode.errLine->nextLineOfCode.has_value()) {
std::cout << format("%1% %|2$5d|| %3%")
2020-04-02 18:02:40 -04:00
% prefix
% (nixCode.errLine->lineNumber + 1)
% *nixCode.errLine->nextLineOfCode
<< std::endl;
2020-04-01 18:20:20 -04:00
}
}
}
2020-04-06 21:43:22 -04:00
void printErrorInfo(const ErrorInfo &einfo)
{
2020-04-01 18:20:20 -04:00
int errwidth = 80;
string prefix = " ";
2020-04-01 18:20:20 -04:00
string levelString;
2020-04-02 18:02:40 -04: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-01 18:20:20 -04:00
int ndl = prefix.length() + levelString.length() + 3 + einfo.name.length() + einfo.programName.value_or("").length();
2020-04-02 18:02:40 -04:00
int dashwidth = ndl > (errwidth - 3) ? 3 : errwidth - ndl;
2020-04-01 18:20:20 -04: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-02 18:02:40 -04:00
% prefix
% levelString
% "---"
% einfo.name
% dashes
% einfo.programName.value_or("")
<< std::endl;
2020-04-01 18:20:20 -04:00
// filename.
2020-04-02 18:02:40 -04:00
if (einfo.nixCode.has_value()) {
if (einfo.nixCode->nixFile.has_value()) {
2020-04-01 18:20:20 -04:00
string eline = einfo.nixCode->errLine.has_value()
2020-04-02 18:02:40 -04:00
? string(" ") + showErrLine(*einfo.nixCode->errLine)
: "";
2020-04-01 18:20:20 -04:00
2020-04-02 18:02:40 -04:00
std::cout << format("%1%in file: " ANSI_BLUE "%2%%3%" ANSI_NORMAL)
% prefix % *einfo.nixCode->nixFile % eline << std::endl;
std::cout << prefix << std::endl;
2020-04-02 18:02:40 -04:00
} else {
std::cout << format("%1%from command line argument") % prefix << std::endl;
std::cout << prefix << std::endl;
2020-04-01 18:20:20 -04:00
}
}
2020-04-01 18:20:20 -04:00
// description
std::cout << prefix << einfo.description << std::endl;
std::cout << prefix << std::endl;
2020-04-01 18:20:20 -04:00
// lines of code.
2020-04-02 18:02:40 -04:00
if (einfo.nixCode.has_value()) {
2020-04-01 18:20:20 -04:00
printCodeLines(prefix, *einfo.nixCode);
std::cout << prefix << std::endl;
2020-04-01 18:20:20 -04:00
}
// hint
2020-04-02 18:02:40 -04:00
if (einfo.hint.has_value()) {
std::cout << prefix << *einfo.hint << std::endl;
std::cout << prefix << std::endl;
2020-04-01 18:20:20 -04:00
}
}
}