Made type warnings non-fatal by default.
This commit is contained in:
parent
813fecbf15
commit
837612bb8d
@ -10,6 +10,7 @@
|
|||||||
#include <plasp/pddl/expressions/Constant.h>
|
#include <plasp/pddl/expressions/Constant.h>
|
||||||
#include <plasp/pddl/expressions/PredicateDeclaration.h>
|
#include <plasp/pddl/expressions/PredicateDeclaration.h>
|
||||||
#include <plasp/pddl/expressions/PrimitiveType.h>
|
#include <plasp/pddl/expressions/PrimitiveType.h>
|
||||||
|
#include <plasp/utils/Logger.h>
|
||||||
|
|
||||||
namespace plasp
|
namespace plasp
|
||||||
{
|
{
|
||||||
@ -31,6 +32,7 @@ class Context
|
|||||||
}
|
}
|
||||||
|
|
||||||
utils::Parser &parser;
|
utils::Parser &parser;
|
||||||
|
utils::Logger logger;
|
||||||
|
|
||||||
expressions::PrimitiveTypes primitiveTypes;
|
expressions::PrimitiveTypes primitiveTypes;
|
||||||
//std::unordered_map<std::string, expressions::PrimitiveType *> primitiveTypesHashMap;
|
//std::unordered_map<std::string, expressions::PrimitiveType *> primitiveTypesHashMap;
|
||||||
|
37
include/plasp/utils/Logger.h
Normal file
37
include/plasp/utils/Logger.h
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
#ifndef __PLASP__UTILS__LOGGER_H
|
||||||
|
#define __PLASP__UTILS__LOGGER_H
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
#include <plasp/utils/Parser.h>
|
||||||
|
|
||||||
|
namespace plasp
|
||||||
|
{
|
||||||
|
namespace utils
|
||||||
|
{
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Logger
|
||||||
|
//
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
class Logger
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Logger();
|
||||||
|
|
||||||
|
void setPedantic(bool isPedantic = true);
|
||||||
|
|
||||||
|
void parserWarning(const Parser &parser, const std::string &text);
|
||||||
|
|
||||||
|
private:
|
||||||
|
bool m_isPedantic;
|
||||||
|
};
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
@ -129,7 +129,7 @@ PrimitiveType *PrimitiveType::parseExisting(Context &context)
|
|||||||
{
|
{
|
||||||
// Primitive type "object" is implicitly declared
|
// Primitive type "object" is implicitly declared
|
||||||
if (typeName != "object")
|
if (typeName != "object")
|
||||||
throw ConsistencyException("Primitive type \"" + typeName + "\" used but never declared");
|
context.logger.parserWarning(context.parser, "Primitive type \"" + typeName + "\" used but never declared");
|
||||||
|
|
||||||
return create(typeName, context);
|
return create(typeName, context);
|
||||||
}
|
}
|
||||||
|
41
src/plasp/utils/Logger.cpp
Normal file
41
src/plasp/utils/Logger.cpp
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
#include <plasp/utils/Logger.h>
|
||||||
|
|
||||||
|
#include <plasp/utils/ParserWarning.h>
|
||||||
|
|
||||||
|
namespace plasp
|
||||||
|
{
|
||||||
|
namespace utils
|
||||||
|
{
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Logger
|
||||||
|
//
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
Logger::Logger()
|
||||||
|
: m_isPedantic{false}
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
void Logger::setPedantic(bool isPedantic)
|
||||||
|
{
|
||||||
|
m_isPedantic = isPedantic;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
void Logger::parserWarning(const Parser &parser, const std::string &text)
|
||||||
|
{
|
||||||
|
if (m_isPedantic)
|
||||||
|
throw ParserWarning(parser, text);
|
||||||
|
|
||||||
|
std::cerr << "Warning: " << parser.row() << ":" << parser.column() << "\t" << text << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user