2020-03-22 20:25:47 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.hh"
|
|
|
|
#include <string>
|
|
|
|
#include <optional>
|
2020-03-24 19:21:35 +02:00
|
|
|
#include <iostream>
|
2020-03-22 20:25:47 +02:00
|
|
|
|
|
|
|
using std::string;
|
|
|
|
using std::optional;
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
enum ErrLevel
|
|
|
|
{ elWarning
|
|
|
|
, elError
|
|
|
|
};
|
|
|
|
|
|
|
|
class ColumnRange {
|
|
|
|
public:
|
2020-03-24 19:21:35 +02:00
|
|
|
unsigned int start;
|
|
|
|
unsigned int len;
|
2020-03-22 20:25:47 +02:00
|
|
|
};
|
|
|
|
|
2020-03-24 19:21:35 +02:00
|
|
|
class ErrorInfo;
|
|
|
|
|
2020-03-22 20:25:47 +02:00
|
|
|
class ErrLine {
|
|
|
|
public:
|
2020-03-24 19:21:35 +02:00
|
|
|
int lineNumber;
|
|
|
|
optional<ColumnRange> columnRange;
|
|
|
|
optional<string> prevLineOfCode;
|
|
|
|
string errLineOfCode;
|
|
|
|
optional<string> nextLineOfCode;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2020-03-22 20:25:47 +02:00
|
|
|
class NixCode {
|
|
|
|
public:
|
2020-03-24 19:21:35 +02:00
|
|
|
optional<string> nixFile;
|
|
|
|
optional<ErrLine> errLine;
|
|
|
|
|
2020-03-24 22:24:57 +02:00
|
|
|
ErrLine& ensureErrLine()
|
|
|
|
{
|
|
|
|
if (!this->errLine.has_value())
|
|
|
|
this->errLine = optional(ErrLine());
|
|
|
|
return *this->errLine;
|
2020-03-24 19:21:35 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// -------------------------------------------------
|
|
|
|
// ErrorInfo.
|
|
|
|
|
2020-03-24 22:24:57 +02:00
|
|
|
// Forward friend class declarations. "builder classes"
|
2020-03-24 19:21:35 +02:00
|
|
|
template <class T>
|
|
|
|
class AddName;
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class AddDescription;
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class AddNixCode;
|
2020-03-22 20:25:47 +02:00
|
|
|
|
2020-03-24 22:24:57 +02:00
|
|
|
template <class T>
|
|
|
|
class AddNixFile;
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class AddErrLine;
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class AddLineNumber;
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class AddColumnRange;
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class AddLOC;
|
|
|
|
|
|
|
|
// The error info class itself.
|
2020-03-22 20:25:47 +02:00
|
|
|
class ErrorInfo {
|
|
|
|
public:
|
2020-03-24 19:21:35 +02:00
|
|
|
ErrLevel level;
|
|
|
|
string name;
|
|
|
|
string description;
|
|
|
|
optional<NixCode> nixCode;
|
|
|
|
string hint;
|
|
|
|
ErrorInfo& GetEI() { return *this; }
|
|
|
|
|
2020-03-25 18:52:03 +02:00
|
|
|
static optional<string> programName;
|
|
|
|
|
2020-03-24 19:21:35 +02:00
|
|
|
// give these access to the private constructor,
|
|
|
|
// when they are direct descendants.
|
|
|
|
friend AddName<ErrorInfo>;
|
|
|
|
friend AddDescription<ErrorInfo>;
|
|
|
|
friend AddNixCode<ErrorInfo>;
|
2020-03-24 22:24:57 +02:00
|
|
|
friend AddNixFile<ErrorInfo>;
|
|
|
|
friend AddErrLine<ErrorInfo>;
|
|
|
|
friend AddLineNumber<ErrorInfo>;
|
|
|
|
friend AddColumnRange<ErrorInfo>;
|
|
|
|
friend AddLOC<ErrorInfo>;
|
2020-03-24 19:21:35 +02:00
|
|
|
|
2020-03-24 22:24:57 +02:00
|
|
|
NixCode& ensureNixCode()
|
|
|
|
{
|
|
|
|
if (!this->nixCode.has_value())
|
|
|
|
this->nixCode = optional(NixCode());
|
|
|
|
return *this->nixCode;
|
|
|
|
}
|
2020-03-24 19:21:35 +02:00
|
|
|
protected:
|
2020-03-24 22:24:57 +02:00
|
|
|
// constructor is protected, so only the builder classes can create an ErrorInfo.
|
2020-03-24 19:21:35 +02:00
|
|
|
ErrorInfo(ErrLevel level) { this->level = level; }
|
2020-03-24 22:24:57 +02:00
|
|
|
|
|
|
|
|
2020-03-24 19:21:35 +02:00
|
|
|
};
|
|
|
|
|
2020-03-25 18:52:03 +02:00
|
|
|
// Init as error
|
2020-03-24 19:21:35 +02:00
|
|
|
class EIError : public ErrorInfo
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
EIError() : ErrorInfo(elError) {}
|
|
|
|
};
|
|
|
|
|
2020-03-25 18:52:03 +02:00
|
|
|
// Init as warning
|
2020-03-24 19:21:35 +02:00
|
|
|
class EIWarning : public ErrorInfo
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
EIWarning() : ErrorInfo(elWarning) {}
|
2020-03-22 20:25:47 +02:00
|
|
|
};
|
|
|
|
|
2020-03-25 18:52:03 +02:00
|
|
|
// Builder class definitions.
|
2020-03-24 17:18:23 +02:00
|
|
|
template <class T>
|
|
|
|
class AddName : private T
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
T& name(const std::string &name){
|
|
|
|
GetEI().name = name;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
ErrorInfo& GetEI() { return T::GetEI(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class AddDescription : private T
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
T& description(const std::string &description){
|
|
|
|
GetEI().description = description;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
ErrorInfo& GetEI() { return T::GetEI(); }
|
|
|
|
};
|
|
|
|
|
2020-03-24 22:24:57 +02:00
|
|
|
template <class T>
|
|
|
|
class AddNixFile : public T
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
T& nixFile(string filename) {
|
|
|
|
GetEI().ensureNixCode().nixFile = filename;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
ErrorInfo& GetEI() { return T::GetEI(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class AddLineNumber : public T
|
2020-03-24 19:21:35 +02:00
|
|
|
{
|
|
|
|
public:
|
2020-03-24 22:24:57 +02:00
|
|
|
T& lineNumber(int lineNumber) {
|
|
|
|
GetEI().ensureNixCode().ensureErrLine().lineNumber = lineNumber;
|
2020-03-24 19:21:35 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
ErrorInfo& GetEI() { return T::GetEI(); }
|
|
|
|
};
|
|
|
|
|
2020-03-24 22:24:57 +02:00
|
|
|
template <class T>
|
|
|
|
class AddColumnRange : public T
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
T& columnRange(unsigned int start, unsigned int len) {
|
|
|
|
GetEI().ensureNixCode().ensureErrLine().columnRange = { start, len };
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
ErrorInfo& GetEI() { return T::GetEI(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class AddLOC : public T
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
T& linesOfCode(optional<string> prevloc, string loc, optional<string> nextloc) {
|
|
|
|
GetEI().ensureNixCode().ensureErrLine().prevLineOfCode = prevloc;
|
|
|
|
GetEI().ensureNixCode().ensureErrLine().errLineOfCode = loc;
|
|
|
|
GetEI().ensureNixCode().ensureErrLine().nextLineOfCode = nextloc;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
ErrorInfo& GetEI() { return T::GetEI(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef AddNixFile<AddErrLine<NixCode>> MkNixCode;
|
|
|
|
|
2020-03-24 19:21:35 +02:00
|
|
|
typedef AddName<AddDescription<EIError>> StandardError;
|
|
|
|
typedef AddName<AddDescription<EIWarning>> StandardWarning;
|
|
|
|
|
2020-03-24 22:24:57 +02:00
|
|
|
typedef AddName<
|
|
|
|
AddDescription<
|
|
|
|
AddNixFile<
|
|
|
|
AddLineNumber<
|
|
|
|
AddColumnRange<
|
|
|
|
AddLOC<EIError>>>>>> MkNixError;
|
|
|
|
typedef AddName<
|
|
|
|
AddDescription<
|
|
|
|
AddNixFile<
|
|
|
|
AddLineNumber<
|
|
|
|
AddColumnRange<
|
|
|
|
AddLOC<EIWarning>>>>>> MkNixWarning;
|
2020-03-24 17:18:23 +02:00
|
|
|
|
2020-03-22 20:25:47 +02:00
|
|
|
string showErrLine(ErrLine &errLine);
|
|
|
|
|
|
|
|
void print_code_lines(string &prefix, NixCode &nix_code);
|
|
|
|
|
|
|
|
void print_error(ErrorInfo &einfo);
|
|
|
|
}
|
|
|
|
|