2020-04-02 00:51:14 +03:00
|
|
|
#ifndef error_hh
|
|
|
|
#define error_hh
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-03-27 18:55:09 +02:00
|
|
|
#include "ansicolor.hh"
|
2020-03-22 20:25:47 +02:00
|
|
|
#include <string>
|
|
|
|
#include <optional>
|
2020-03-24 19:21:35 +02:00
|
|
|
#include <iostream>
|
2020-03-27 18:03:02 +02:00
|
|
|
#include <iomanip>
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-04-03 17:48:20 +03:00
|
|
|
#include "types.hh"
|
2020-03-27 18:55:09 +02:00
|
|
|
|
2020-04-03 01:02:40 +03:00
|
|
|
namespace nix
|
|
|
|
{
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-04-03 01:02:40 +03:00
|
|
|
typedef enum {
|
2020-04-02 23:25:43 +03:00
|
|
|
elWarning,
|
|
|
|
elError
|
|
|
|
} ErrLevel;
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-04-08 18:07:58 +03:00
|
|
|
class ErrPos
|
2020-04-03 01:02:40 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
int lineNumber;
|
2020-04-07 23:36:32 +03:00
|
|
|
int column;
|
2020-04-08 18:07:58 +03:00
|
|
|
string nixFile;
|
2020-03-24 19:21:35 +02:00
|
|
|
|
2020-04-08 18:07:58 +03:00
|
|
|
template <class P>
|
|
|
|
ErrPos& operator=(const P &pos)
|
|
|
|
{
|
|
|
|
lineNumber = pos.line;
|
|
|
|
column = pos.column;
|
|
|
|
nixFile = pos.file.str();
|
|
|
|
return *this;
|
|
|
|
}
|
2020-03-24 19:21:35 +02:00
|
|
|
};
|
|
|
|
|
2020-04-07 04:43:22 +03:00
|
|
|
// ----------------------------------------------------------------
|
|
|
|
// format for hints. same as fmt, except templated values
|
|
|
|
// are always in yellow.
|
2020-03-24 19:21:35 +02:00
|
|
|
|
|
|
|
template <class T>
|
2020-04-07 04:43:22 +03:00
|
|
|
class yellowify
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
yellowify(T &s) : value(s) {}
|
|
|
|
T &value;
|
|
|
|
};
|
2020-03-24 19:21:35 +02:00
|
|
|
|
|
|
|
template <class T>
|
2020-04-07 04:43:22 +03:00
|
|
|
std::ostream& operator<<(std::ostream &out, const yellowify<T> &y)
|
|
|
|
{
|
|
|
|
return out << ANSI_YELLOW << y.value << ANSI_NORMAL;
|
|
|
|
}
|
2020-03-24 19:21:35 +02:00
|
|
|
|
2020-04-07 04:43:22 +03:00
|
|
|
class hintformat
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
hintformat(string format) :fmt(format)
|
|
|
|
{
|
|
|
|
fmt.exceptions(boost::io::all_error_bits ^ boost::io::too_many_args_bit);
|
|
|
|
}
|
|
|
|
template<class T>
|
|
|
|
hintformat& operator%(const T &value)
|
|
|
|
{
|
|
|
|
fmt % yellowify(value);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-03-24 22:24:57 +02:00
|
|
|
|
2020-04-07 04:43:22 +03:00
|
|
|
std::string str() const
|
|
|
|
{
|
|
|
|
return fmt.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
friend class AddHint;
|
|
|
|
private:
|
|
|
|
format fmt;
|
|
|
|
};
|
|
|
|
|
2020-04-08 18:07:58 +03:00
|
|
|
std::ostream& operator<<(std::ostream &os, const hintformat &hf)
|
|
|
|
{
|
|
|
|
return os << hf.str();
|
|
|
|
}
|
|
|
|
|
2020-04-07 04:43:22 +03:00
|
|
|
template<typename... Args>
|
|
|
|
inline hintformat hintfmt(const std::string & fs, const Args & ... args)
|
|
|
|
{
|
|
|
|
hintformat f(fs);
|
|
|
|
formatHelper(f, args...);
|
|
|
|
return f;
|
|
|
|
}
|
2020-03-24 22:24:57 +02:00
|
|
|
|
2020-04-07 04:43:22 +03:00
|
|
|
// -------------------------------------------------
|
|
|
|
// ErrorInfo.
|
2020-04-03 01:02:40 +03:00
|
|
|
class ErrorInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ErrLevel level;
|
|
|
|
string name;
|
|
|
|
string description;
|
2020-04-08 18:07:58 +03:00
|
|
|
std::optional<hintformat> hint;
|
|
|
|
std::optional<string> prevLineOfCode;
|
|
|
|
string errLineOfCode;
|
|
|
|
std::optional<string> nextLineOfCode;
|
|
|
|
std::optional<ErrPos> errPos;
|
2020-04-03 01:02:40 +03:00
|
|
|
|
|
|
|
static std::optional<string> programName;
|
|
|
|
|
2020-04-07 04:43:22 +03:00
|
|
|
private:
|
2020-04-08 18:07:58 +03:00
|
|
|
// template <class P>
|
|
|
|
// static ErrorInfo NixLangEI(ErrLevel level,
|
|
|
|
// const string &name,
|
|
|
|
// const string &description,
|
|
|
|
// const P &pos,
|
|
|
|
// std::optional<string> prevloc,
|
|
|
|
// string loc,
|
|
|
|
// std::optional<string> nextloc,
|
|
|
|
// const std::optional<hintformat> &hf)
|
|
|
|
// {
|
|
|
|
// ErrorInfo ei(level);
|
|
|
|
// ei.name = name;
|
|
|
|
// ei.description = description;
|
|
|
|
// if (hf.has_value())
|
|
|
|
// ei.hint = std::optional<string>(hf->str());
|
|
|
|
// else
|
|
|
|
// ei.hint = std::nullopt;
|
|
|
|
|
|
|
|
// ErrLine errline;
|
|
|
|
// errline.lineNumber = pos.line;
|
|
|
|
// errline.column = pos.column;
|
|
|
|
// errline.prevLineOfCode = prevloc;
|
|
|
|
// errline.errLineOfCode = loc;
|
|
|
|
// errline.nextLineOfCode = nextloc;
|
|
|
|
// NixCode nixcode;
|
|
|
|
// nixcode.nixFile = pos.file;
|
|
|
|
// nixcode.errLine = std::optional(errline);
|
|
|
|
// ei.nixCode = std::optional(nixcode);
|
|
|
|
|
|
|
|
// return ei;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// static ErrorInfo ProgramEI(ErrLevel level,
|
|
|
|
// const string &name,
|
|
|
|
// const string &description,
|
|
|
|
// const std::optional<hintformat> &hf);
|
2020-04-07 04:43:22 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// constructor is protected, so only the builder classes can create an ErrorInfo.
|
2020-04-08 18:07:58 +03:00
|
|
|
|
2020-03-24 17:18:23 +02:00
|
|
|
};
|
|
|
|
|
2020-03-27 18:03:02 +02:00
|
|
|
// --------------------------------------------------------
|
|
|
|
// error printing
|
|
|
|
|
2020-04-02 00:51:14 +03:00
|
|
|
// just to cout for now.
|
2020-04-07 04:43:22 +03:00
|
|
|
void printErrorInfo(const ErrorInfo &einfo);
|
2020-03-27 18:03:02 +02:00
|
|
|
|
2020-03-22 20:25:47 +02:00
|
|
|
}
|
|
|
|
|
2020-04-02 00:51:14 +03:00
|
|
|
#endif
|