#ifndef __ANTHEM__STATEMENT_VISITOR_H #define __ANTHEM__STATEMENT_VISITOR_H #include #include #include namespace anthem { //////////////////////////////////////////////////////////////////////////////////////////////////// // // StatementVisitor // //////////////////////////////////////////////////////////////////////////////////////////////////// void throwErrorUnsupportedStatement(const char *statementType, const Clingo::AST::Statement &statement) { const auto errorMessage = std::string("“") + statementType + "” statements currently not supported"; throwErrorAtLocation(statement.location, errorMessage.c_str()); throw std::runtime_error(errorMessage); } //////////////////////////////////////////////////////////////////////////////////////////////////// struct StatementVisitor { void visit(const Clingo::AST::Program &program, const Clingo::AST::Statement &statement) { std::cout << "[program] " << program.name << std::endl; if (!program.parameters.empty()) throwErrorAtLocation(statement.location, "program parameters currently not supported"); } void visit(const Clingo::AST::Rule &rule, const Clingo::AST::Statement &) { std::cout << "[rule]" << std::endl; std::cout << "[head literal]" << std::endl; rule.head.data.accept(HeadLiteralVisitor(), rule.head); std::cout << "[body]" << std::endl; for (const auto &bodyLiteral : rule.body) { std::cout << "[body literal]" << std::endl; if (bodyLiteral.sign != Clingo::AST::Sign::None) throwErrorAtLocation(bodyLiteral.location, "only positive literals currently supported"); bodyLiteral.data.accept(BodyLiteralVisitor(), bodyLiteral); } } void visit(const Clingo::AST::Definition &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("definition", statement); } void visit(const Clingo::AST::ShowSignature &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("show signature", statement); } void visit(const Clingo::AST::ShowTerm &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("show term", statement); } void visit(const Clingo::AST::Minimize &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("minimize", statement); } void visit(const Clingo::AST::Script &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("script", statement); } void visit(const Clingo::AST::External &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("external", statement); } void visit(const Clingo::AST::Edge &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("edge", statement); } void visit(const Clingo::AST::Heuristic &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("heuristic", statement); } void visit(const Clingo::AST::ProjectAtom &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("project atom", statement); } void visit(const Clingo::AST::ProjectSignature &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("project signature", statement); } void visit(const Clingo::AST::TheoryDefinition &, const Clingo::AST::Statement &statement) { throwErrorUnsupportedStatement("theory definition", statement); } }; //////////////////////////////////////////////////////////////////////////////////////////////////// } #endif