PorygonLang/src/Diagnostics/DiagnosticsHolder.hpp

44 lines
1.1 KiB
C++
Raw Normal View History

2019-05-21 11:56:08 +00:00
2019-06-06 17:01:54 +00:00
#ifndef PORYGONLANG_DIAGNOSTICSHOLDER_HPP
#define PORYGONLANG_DIAGNOSTICSHOLDER_HPP
2019-05-21 11:56:08 +00:00
#include <vector>
#include "DiagnosticSeverity.hpp"
#include "DiagnosticCode.hpp"
#include "Diagnostic.hpp"
using namespace std;
2019-06-18 14:39:36 +00:00
namespace Porygon::Diagnostics {
class DiagnosticsHolder {
bool _hasErrors;
vector<Diagnostic> _diagnostics;
public:
DiagnosticsHolder() {
_hasErrors = false;
}
2019-05-21 11:56:08 +00:00
2019-06-18 14:39:36 +00:00
~DiagnosticsHolder() {
_diagnostics.clear();
}
2019-06-18 14:39:36 +00:00
void Log(DiagnosticSeverity severity, DiagnosticCode code, unsigned int start, unsigned int length);
2019-05-21 11:56:08 +00:00
2019-06-18 14:39:36 +00:00
void LogError(DiagnosticCode code, unsigned int start, unsigned int length);
2019-05-21 11:56:08 +00:00
2019-06-18 14:39:36 +00:00
void LogWarning(DiagnosticCode code, unsigned int start, unsigned int length);
2019-05-21 11:56:08 +00:00
2019-06-18 14:39:36 +00:00
void LogInfo(DiagnosticCode code, unsigned int start, unsigned int length);
2019-06-18 14:39:36 +00:00
bool HasErrors();
2019-05-21 11:56:08 +00:00
2019-06-18 14:39:36 +00:00
vector<Diagnostic> GetDiagnostics();
int DiagnosticsCount();
Diagnostic *GetDiagnosticAt(int position);
};
}
2019-05-21 11:56:08 +00:00
2019-06-06 17:01:54 +00:00
#endif //PORYGONLANG_DIAGNOSTICSHOLDER_HPP