2020-04-01 21:51:14 +00:00
|
|
|
#ifndef error_hh
|
|
|
|
#define error_hh
|
2020-03-22 18:25:47 +00:00
|
|
|
|
2020-03-27 16:55:09 +00:00
|
|
|
#include "ansicolor.hh"
|
2020-03-22 18:25:47 +00:00
|
|
|
#include <string>
|
|
|
|
#include <optional>
|
2020-03-24 17:21:35 +00:00
|
|
|
#include <iostream>
|
2020-04-03 14:48:20 +00:00
|
|
|
#include "types.hh"
|
2020-03-27 16:55:09 +00:00
|
|
|
|
2020-04-02 22:02:40 +00:00
|
|
|
namespace nix
|
|
|
|
{
|
2020-03-22 18:25:47 +00:00
|
|
|
|
2020-04-02 22:02:40 +00:00
|
|
|
typedef enum {
|
2020-04-02 20:25:43 +00:00
|
|
|
elWarning,
|
|
|
|
elError
|
|
|
|
} ErrLevel;
|
2020-03-22 18:25:47 +00:00
|
|
|
|
2020-04-16 15:55:38 +00:00
|
|
|
struct ErrPos
|
2020-04-02 22:02:40 +00:00
|
|
|
{
|
|
|
|
int lineNumber;
|
2020-04-07 20:36:32 +00:00
|
|
|
int column;
|
2020-04-08 15:07:58 +00:00
|
|
|
string nixFile;
|
2020-03-24 17:21:35 +00:00
|
|
|
|
2020-04-08 15:07:58 +00:00
|
|
|
template <class P>
|
|
|
|
ErrPos& operator=(const P &pos)
|
|
|
|
{
|
|
|
|
lineNumber = pos.line;
|
|
|
|
column = pos.column;
|
2020-04-08 15:48:21 +00:00
|
|
|
nixFile = pos.file;
|
2020-04-08 15:07:58 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-04-08 15:48:21 +00:00
|
|
|
|
|
|
|
template <class P>
|
|
|
|
ErrPos(const P &p)
|
|
|
|
{
|
|
|
|
*this = p;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-04-16 15:55:38 +00:00
|
|
|
struct NixCode
|
2020-04-08 15:48:21 +00:00
|
|
|
{
|
|
|
|
ErrPos errPos;
|
|
|
|
std::optional<string> prevLineOfCode;
|
|
|
|
string errLineOfCode;
|
|
|
|
std::optional<string> nextLineOfCode;
|
2020-03-24 17:21:35 +00:00
|
|
|
};
|
|
|
|
|
2020-04-07 01:43:22 +00:00
|
|
|
// ----------------------------------------------------------------
|
2020-04-08 15:56:10 +00:00
|
|
|
// format function for hints. same as fmt, except templated values
|
2020-04-07 01:43:22 +00:00
|
|
|
// are always in yellow.
|
2020-03-24 17:21:35 +00:00
|
|
|
|
|
|
|
template <class T>
|
2020-04-16 15:55:38 +00:00
|
|
|
struct yellowify
|
2020-04-07 01:43:22 +00:00
|
|
|
{
|
|
|
|
yellowify(T &s) : value(s) {}
|
|
|
|
T &value;
|
|
|
|
};
|
2020-03-24 17:21:35 +00:00
|
|
|
|
|
|
|
template <class T>
|
2020-04-07 01:43:22 +00:00
|
|
|
std::ostream& operator<<(std::ostream &out, const yellowify<T> &y)
|
|
|
|
{
|
|
|
|
return out << ANSI_YELLOW << y.value << ANSI_NORMAL;
|
|
|
|
}
|
2020-03-24 17:21:35 +00:00
|
|
|
|
2020-04-07 01:43:22 +00: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 20:24:57 +00:00
|
|
|
|
2020-04-07 01:43:22 +00:00
|
|
|
std::string str() const
|
|
|
|
{
|
|
|
|
return fmt.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
friend class AddHint;
|
|
|
|
private:
|
|
|
|
format fmt;
|
|
|
|
};
|
|
|
|
|
2020-04-15 16:09:43 +00:00
|
|
|
std::ostream& operator<<(std::ostream &os, const hintformat &hf);
|
2020-04-08 15:07:58 +00:00
|
|
|
|
2020-04-07 01:43:22 +00: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 20:24:57 +00:00
|
|
|
|
2020-04-07 01:43:22 +00:00
|
|
|
// -------------------------------------------------
|
|
|
|
// ErrorInfo.
|
2020-04-16 15:55:38 +00:00
|
|
|
struct ErrorInfo
|
2020-04-02 22:02:40 +00:00
|
|
|
{
|
|
|
|
ErrLevel level;
|
|
|
|
string name;
|
|
|
|
string description;
|
2020-04-08 15:07:58 +00:00
|
|
|
std::optional<hintformat> hint;
|
2020-04-08 15:48:21 +00:00
|
|
|
std::optional<NixCode> nixCode;
|
2020-04-02 22:02:40 +00:00
|
|
|
|
|
|
|
static std::optional<string> programName;
|
2020-03-24 15:18:23 +00:00
|
|
|
};
|
|
|
|
|
2020-03-27 16:03:02 +00:00
|
|
|
// --------------------------------------------------------
|
|
|
|
// error printing
|
|
|
|
|
2020-04-01 21:51:14 +00:00
|
|
|
// just to cout for now.
|
2020-04-07 01:43:22 +00:00
|
|
|
void printErrorInfo(const ErrorInfo &einfo);
|
2020-03-27 16:03:02 +00:00
|
|
|
|
2020-03-22 18:25:47 +00:00
|
|
|
}
|
|
|
|
|
2020-04-01 21:51:14 +00:00
|
|
|
#endif
|