1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
#include "streamerrorhandler.hpp"
#include <sstream>
#include <components/debug/debuglog.hpp>
#include "tokenloc.hpp"
namespace Compiler
{
// Report error to the user.
void StreamErrorHandler::report(const std::string& message, const TokenLoc& loc, Type type)
{
Debug::Level logLevel = Debug::Info; // Usually script warnings are not too important
if (type == ErrorMessage)
logLevel = Debug::Error;
std::stringstream text;
if (type == ErrorMessage)
text << "Error: ";
else
text << "Warning: ";
if (!mContext.empty())
text << mContext << " ";
text << "line " << loc.mLine + 1 << ", column " << loc.mColumn + 1 << " (" << loc.mLiteral << "): " << message;
Log(logLevel) << text.str();
}
// Report a file related error
void StreamErrorHandler::report(const std::string& message, Type type)
{
Debug::Level logLevel = Debug::Info;
if (type == ErrorMessage)
logLevel = Debug::Error;
std::stringstream text;
if (type == ErrorMessage)
text << "Error: ";
else
text << "Warning: ";
if (!mContext.empty())
text << mContext << " ";
text << "file: " << message << std::endl;
Log(logLevel) << text.str();
}
void StreamErrorHandler::setContext(const std::string& context)
{
mContext = context;
}
StreamErrorHandler::StreamErrorHandler() = default;
ContextOverride::ContextOverride(StreamErrorHandler& handler, const std::string& context)
: mHandler(handler)
, mContext(handler.mContext)
{
mHandler.setContext(context);
}
ContextOverride::~ContextOverride()
{
mHandler.setContext(mContext);
}
}
|