formatted with astyle

This commit is contained in:
Ben Burdette 2020-04-02 16:02:40 -06:00
parent 1c329ca433
commit c6b3fcddb0
3 changed files with 308 additions and 282 deletions

View file

@ -3,18 +3,16 @@
#include <iostream> #include <iostream>
#include <optional> #include <optional>
namespace nix { namespace nix
{
std::optional<string> ErrorInfo::programName = std::nullopt; std::optional<string> ErrorInfo::programName = std::nullopt;
string showErrLine(ErrLine &errLine) string showErrLine(ErrLine &errLine)
{ {
if (errLine.columnRange.has_value()) if (errLine.columnRange.has_value()) {
{
return (format("(%1%:%2%)") % errLine.lineNumber % errLine.columnRange->start).str(); return (format("(%1%:%2%)") % errLine.lineNumber % errLine.columnRange->start).str();
} } else {
else
{
return (format("(%1%)") % errLine.lineNumber).str(); return (format("(%1%)") % errLine.lineNumber).str();
}; };
} }
@ -22,8 +20,7 @@ string showErrLine(ErrLine &errLine)
void printCodeLines(string &prefix, NixCode &nixCode) void printCodeLines(string &prefix, NixCode &nixCode)
{ {
if (nixCode.errLine.has_value()) if (nixCode.errLine.has_value()) {
{
// previous line of code. // previous line of code.
if (nixCode.errLine->prevLineOfCode.has_value()) { if (nixCode.errLine->prevLineOfCode.has_value()) {
std::cout << format("%1% %|2$5d|| %3%") std::cout << format("%1% %|2$5d|| %3%")
@ -41,19 +38,16 @@ void printCodeLines(string &prefix, NixCode &nixCode)
<< std::endl; << std::endl;
// error arrows for the column range. // error arrows for the column range.
if (nixCode.errLine->columnRange.has_value()) if (nixCode.errLine->columnRange.has_value()) {
{
int start = nixCode.errLine->columnRange->start; int start = nixCode.errLine->columnRange->start;
std::string spaces; std::string spaces;
for (int i = 0; i < start; ++i) for (int i = 0; i < start; ++i) {
{
spaces.append(" "); spaces.append(" ");
} }
int len = nixCode.errLine->columnRange->len; int len = nixCode.errLine->columnRange->len;
std::string arrows; std::string arrows;
for (int i = 0; i < len; ++i) for (int i = 0; i < len; ++i) {
{
arrows.append("^"); arrows.append("^");
} }
@ -81,24 +75,20 @@ void printErrorInfo(ErrorInfo &einfo)
string prefix = " "; string prefix = " ";
string levelString; string levelString;
switch (einfo.level) switch (einfo.level) {
{ case ErrLevel::elError: {
case ErrLevel::elError:
{
levelString = ANSI_RED; levelString = ANSI_RED;
levelString += "error:"; levelString += "error:";
levelString += ANSI_NORMAL; levelString += ANSI_NORMAL;
break; break;
} }
case ErrLevel::elWarning: case ErrLevel::elWarning: {
{
levelString = ANSI_YELLOW; levelString = ANSI_YELLOW;
levelString += "warning:"; levelString += "warning:";
levelString += ANSI_NORMAL; levelString += ANSI_NORMAL;
break; break;
} }
default: default: {
{
levelString = (format("invalid error level: %1%") % einfo.level).str(); levelString = (format("invalid error level: %1%") % einfo.level).str();
break; break;
} }
@ -122,10 +112,8 @@ void printErrorInfo(ErrorInfo &einfo)
<< std::endl; << std::endl;
// filename. // filename.
if (einfo.nixCode.has_value()) if (einfo.nixCode.has_value()) {
{ if (einfo.nixCode->nixFile.has_value()) {
if (einfo.nixCode->nixFile.has_value())
{
string eline = einfo.nixCode->errLine.has_value() string eline = einfo.nixCode->errLine.has_value()
? string(" ") + showErrLine(*einfo.nixCode->errLine) ? string(" ") + showErrLine(*einfo.nixCode->errLine)
: ""; : "";
@ -133,9 +121,7 @@ void printErrorInfo(ErrorInfo &einfo)
std::cout << format("%1%in file: " ANSI_BLUE "%2%%3%" ANSI_NORMAL) std::cout << format("%1%in file: " ANSI_BLUE "%2%%3%" ANSI_NORMAL)
% prefix % *einfo.nixCode->nixFile % eline << std::endl; % prefix % *einfo.nixCode->nixFile % eline << std::endl;
std::cout << prefix << std::endl; std::cout << prefix << std::endl;
} } else {
else
{
std::cout << format("%1%from command line argument") % prefix << std::endl; std::cout << format("%1%from command line argument") % prefix << std::endl;
std::cout << prefix << std::endl; std::cout << prefix << std::endl;
} }
@ -146,15 +132,13 @@ void printErrorInfo(ErrorInfo &einfo)
std::cout << prefix << std::endl; std::cout << prefix << std::endl;
// lines of code. // lines of code.
if (einfo.nixCode.has_value()) if (einfo.nixCode.has_value()) {
{
printCodeLines(prefix, *einfo.nixCode); printCodeLines(prefix, *einfo.nixCode);
std::cout << prefix << std::endl; std::cout << prefix << std::endl;
} }
// hint // hint
if (einfo.hint.has_value()) if (einfo.hint.has_value()) {
{
std::cout << prefix << *einfo.hint << std::endl; std::cout << prefix << *einfo.hint << std::endl;
std::cout << prefix << std::endl; std::cout << prefix << std::endl;
} }

View file

@ -9,23 +9,26 @@
#include <boost/format.hpp> #include <boost/format.hpp>
namespace nix { namespace nix
{
typedef enum { typedef enum {
elWarning, elWarning,
elError elError
} ErrLevel; } ErrLevel;
class ColumnRange { class ColumnRange
public: {
public:
unsigned int start; unsigned int start;
unsigned int len; unsigned int len;
}; };
class ErrorInfo; class ErrorInfo;
class ErrLine { class ErrLine
public: {
public:
int lineNumber; int lineNumber;
std::optional<ColumnRange> columnRange; std::optional<ColumnRange> columnRange;
std::optional<string> prevLineOfCode; std::optional<string> prevLineOfCode;
@ -33,8 +36,9 @@ class ErrLine {
std::optional<string> nextLineOfCode; std::optional<string> nextLineOfCode;
}; };
class NixCode { class NixCode
public: {
public:
std::optional<string> nixFile; std::optional<string> nixFile;
std::optional<ErrLine> errLine; std::optional<ErrLine> errLine;
@ -75,14 +79,18 @@ template <class T>
class AddLOC; class AddLOC;
// The error info class itself. // The error info class itself.
class ErrorInfo { class ErrorInfo
public: {
public:
ErrLevel level; ErrLevel level;
string name; string name;
string description; string description;
std::optional<NixCode> nixCode; std::optional<NixCode> nixCode;
std::optional<string> hint; std::optional<string> hint;
ErrorInfo& GetEI() { return *this; } ErrorInfo& GetEI()
{
return *this;
}
static std::optional<string> programName; static std::optional<string> programName;
@ -103,22 +111,25 @@ class ErrorInfo {
this->nixCode = std::optional(NixCode()); this->nixCode = std::optional(NixCode());
return *this->nixCode; return *this->nixCode;
} }
protected: protected:
// constructor is protected, so only the builder classes can create an ErrorInfo. // constructor is protected, so only the builder classes can create an ErrorInfo.
ErrorInfo(ErrLevel level) { this->level = level; } ErrorInfo(ErrLevel level)
{
this->level = level;
}
}; };
// Init as error // Init as error
class EIError : public ErrorInfo class EIError : public ErrorInfo
{ {
protected: protected:
EIError() : ErrorInfo(elError) {} EIError() : ErrorInfo(elError) {}
}; };
// Init as warning // Init as warning
class EIWarning : public ErrorInfo class EIWarning : public ErrorInfo
{ {
protected: protected:
EIWarning() : ErrorInfo(elWarning) {} EIWarning() : ErrorInfo(elWarning) {}
}; };
@ -126,75 +137,99 @@ class EIWarning : public ErrorInfo
template <class T> template <class T>
class AddName : private T class AddName : private T
{ {
public: public:
T& name(const std::string &name){ T& name(const std::string &name)
{
GetEI().name = name; GetEI().name = name;
return *this; return *this;
} }
protected: protected:
ErrorInfo& GetEI() { return T::GetEI(); } ErrorInfo& GetEI()
{
return T::GetEI();
}
}; };
template <class T> template <class T>
class AddDescription : private T class AddDescription : private T
{ {
public: public:
T& description(const std::string &description){ T& description(const std::string &description)
{
GetEI().description = description; GetEI().description = description;
return *this; return *this;
} }
protected: protected:
ErrorInfo& GetEI() { return T::GetEI(); } ErrorInfo& GetEI()
{
return T::GetEI();
}
}; };
template <class T> template <class T>
class AddNixFile : private T class AddNixFile : private T
{ {
public: public:
T& nixFile(string filename) { T& nixFile(string filename)
{
GetEI().ensureNixCode().nixFile = filename; GetEI().ensureNixCode().nixFile = filename;
return *this; return *this;
} }
protected: protected:
ErrorInfo& GetEI() { return T::GetEI(); } ErrorInfo& GetEI()
{
return T::GetEI();
}
}; };
template <class T> template <class T>
class AddLineNumber : private T class AddLineNumber : private T
{ {
public: public:
T& lineNumber(int lineNumber) { T& lineNumber(int lineNumber)
{
GetEI().ensureNixCode().ensureErrLine().lineNumber = lineNumber; GetEI().ensureNixCode().ensureErrLine().lineNumber = lineNumber;
return *this; return *this;
} }
protected: protected:
ErrorInfo& GetEI() { return T::GetEI(); } ErrorInfo& GetEI()
{
return T::GetEI();
}
}; };
template <class T> template <class T>
class AddColumnRange : private T class AddColumnRange : private T
{ {
public: public:
T& columnRange(unsigned int start, unsigned int len) { T& columnRange(unsigned int start, unsigned int len)
{
GetEI().ensureNixCode().ensureErrLine().columnRange = { start, len }; GetEI().ensureNixCode().ensureErrLine().columnRange = { start, len };
return *this; return *this;
} }
protected: protected:
ErrorInfo& GetEI() { return T::GetEI(); } ErrorInfo& GetEI()
{
return T::GetEI();
}
}; };
template <class T> template <class T>
class AddLOC : private T class AddLOC : private T
{ {
public: public:
T& linesOfCode(std::optional<string> prevloc, string loc, std::optional<string> nextloc) { T& linesOfCode(std::optional<string> prevloc, string loc, std::optional<string> nextloc)
{
GetEI().ensureNixCode().ensureErrLine().prevLineOfCode = prevloc; GetEI().ensureNixCode().ensureErrLine().prevLineOfCode = prevloc;
GetEI().ensureNixCode().ensureErrLine().errLineOfCode = loc; GetEI().ensureNixCode().ensureErrLine().errLineOfCode = loc;
GetEI().ensureNixCode().ensureErrLine().nextLineOfCode = nextloc; GetEI().ensureNixCode().ensureErrLine().nextLineOfCode = nextloc;
return *this; return *this;
} }
protected: protected:
ErrorInfo& GetEI() { return T::GetEI(); } ErrorInfo& GetEI()
{
return T::GetEI();
}
}; };
@ -218,16 +253,21 @@ std::ostream& operator<<(std::ostream &out, const yellowify<T> &y)
class hintfmt class hintfmt
{ {
public: public:
hintfmt(string format) :fmt(format) { hintfmt(string format) :fmt(format)
{
fmt.exceptions(boost::io::all_error_bits ^ boost::io::too_many_args_bit); fmt.exceptions(boost::io::all_error_bits ^ boost::io::too_many_args_bit);
} }
template<class T> template<class T>
hintfmt& operator%(const T &value) { fmt % yellowify(value); return *this; } hintfmt& operator%(const T &value)
{
fmt % yellowify(value);
return *this;
}
template <typename U> template <typename U>
friend class AddHint; friend class AddHint;
private: private:
format fmt; format fmt;
}; };
@ -236,49 +276,54 @@ class hintfmt
template <class T> template <class T>
class AddHint : private T class AddHint : private T
{ {
public: public:
T& hint(hintfmt &hfmt) { T& hint(hintfmt &hfmt)
{
GetEI().hint = std::optional(hfmt.fmt.str()); GetEI().hint = std::optional(hfmt.fmt.str());
return *this; return *this;
} }
T& nohint() { T& nohint()
{
GetEI().hint = std::nullopt; GetEI().hint = std::nullopt;
return *this; return *this;
} }
protected: protected:
ErrorInfo& GetEI() { return T::GetEI(); } ErrorInfo& GetEI()
{
return T::GetEI();
}
}; };
// -------------------------------------------------------- // --------------------------------------------------------
// error types // error types
typedef AddName< typedef AddName<
AddDescription< AddDescription<
AddHint< AddHint<
EIError>>> ProgramError; EIError>>> ProgramError;
typedef AddName< typedef AddName<
AddDescription< AddDescription<
AddHint< AddHint<
EIWarning>>> ProgramWarning; EIWarning>>> ProgramWarning;
typedef AddName< typedef AddName<
AddDescription< AddDescription<
AddNixFile< AddNixFile<
AddLineNumber< AddLineNumber<
AddColumnRange< AddColumnRange<
AddLOC< AddLOC<
AddHint< AddHint<
EIError>>>>>>> NixLangError; EIError>>>>>>> NixLangError;
typedef AddName< typedef AddName<
AddDescription< AddDescription<
AddNixFile< AddNixFile<
AddLineNumber< AddLineNumber<
AddColumnRange< AddColumnRange<
AddLOC< AddLOC<
AddHint< AddHint<
EIWarning>>>>>>> NixLangWarning; EIWarning>>>>>>> NixLangWarning;
// -------------------------------------------------------- // --------------------------------------------------------

View file

@ -1,7 +1,7 @@
#include "../../src/libutil/error.hh" #include "../../src/libutil/error.hh"
#include <optional>
#include <iostream> #include <iostream>
#include <optional>
int main() int main()
{ {
@ -16,25 +16,25 @@ int main()
// //
// Each error type is created with a specific sequence of builder functions. // Each error type is created with a specific sequence of builder functions.
// Unlike with a constructor, each parameter is clearly named. // Unlike with a constructor, each parameter is clearly named.
// If the sequence of function calls isn't followed, then there's a type error. // If the sequence of function calls isn't followed, then there's a type
// This should make for a consistent look in the code when errors are created. // error. This should make for a consistent look in the code when errors are
// created.
// ProgramError takes name, description, and an optional hint. // ProgramError takes name, description, and an optional hint.
printErrorInfo( printErrorInfo( ProgramError()
ProgramError()
.name("name") .name("name")
.description("error description") .description("error description")
.nohint() .nohint()
); );
// ProgramWarning takes name, description, and an optional hint. // ProgramWarning takes name, description, and an optional hint.
// The hint is in the form of a hintfmt class, which wraps boost::format(), and // The hint is in the form of a hintfmt class, which wraps boost::format(),
// makes all the substituted text yellow. // and makes all the substituted text yellow.
printErrorInfo( printErrorInfo( ProgramWarning()
ProgramWarning()
.name("warning name") .name("warning name")
.description("warning description") .description("warning description")
.hint(hintfmt("there was a %1%") % "warning") // 'warning' will be yellow. .hint(hintfmt("there was a %1%") %
"warning") // 'warning' will be yellow.
); );
/* /*
@ -51,41 +51,38 @@ int main()
.name("name") .name("name")
.nohint(); .nohint();
// type error: hint function with regular boost format, not special hintfmt. // type error: hint function with regular boost format, not special
ProgramError() hintfmt. ProgramError() .description("error description") .name("name")
.description("error description")
.name("name")
.hint(format("there was a %1%") % "warning"); .hint(format("there was a %1%") % "warning");
*/ */
// NixLangWarning adds nix file, line number, column range, and the lines of code // NixLangWarning adds nix file, line number, column range, and the lines of
// where a warning occurred. // code where a warning occurred.
printErrorInfo( printErrorInfo(NixLangWarning()
NixLangWarning()
.name("warning name") .name("warning name")
.description("warning description") .description("warning description")
.nixFile("myfile.nix") .nixFile("myfile.nix")
.lineNumber(40) .lineNumber(40)
.columnRange(13,7) .columnRange(13, 7)
.linesOfCode(std::nullopt .linesOfCode(std::nullopt,
,"this is the problem line of code" "this is the problem line of code",
,std::nullopt) std::nullopt)
.hint(hintfmt("this hint has %1% templated %2%!!") % "yellow" % "values") .hint(hintfmt("this hint has %1% templated %2%!!") %
); "yellow" % "values"));
// NixLangError is just the same as NixLangWarning, except for the Error flag. // NixLangError is just the same as NixLangWarning, except for the Error
printErrorInfo( // flag.
NixLangError() printErrorInfo(NixLangError()
.name("error name") .name("error name")
.description("error description") .description("error description")
.nixFile("myfile.nix") .nixFile("myfile.nix")
.lineNumber(40) .lineNumber(40)
.columnRange(13,7) .columnRange(13, 7)
.linesOfCode(std::optional("previous line of code") .linesOfCode(std::optional("previous line of code"),
,"this is the problem line of code" "this is the problem line of code",
,std::optional("next line of code")) std::optional("next line of code"))
.hint(hintfmt("this hint has %1% templated %2%!!") % "yellow" % "values") .hint(hintfmt("this hint has %1% templated %2%!!") %
); "yellow" % "values"));
return 0; return 0;
} }