2020-02-01 17:20:43 +01:00
|
|
|
mod head_type;
|
2020-01-31 17:24:13 +01:00
|
|
|
mod translate_body;
|
2020-01-31 17:19:44 +01:00
|
|
|
|
2020-02-01 17:20:43 +01:00
|
|
|
use head_type::*;
|
|
|
|
use translate_body::*;
|
2020-01-25 12:55:23 +01:00
|
|
|
|
2020-02-02 02:53:04 +01:00
|
|
|
struct ScopedFormula
|
2020-02-01 19:20:46 +01:00
|
|
|
{
|
|
|
|
free_variable_declarations: foliage::VariableDeclarations,
|
|
|
|
formula: foliage::Formula,
|
|
|
|
}
|
|
|
|
|
2020-02-02 02:53:04 +01:00
|
|
|
struct Definitions
|
2020-02-01 19:20:46 +01:00
|
|
|
{
|
2020-02-01 21:59:36 +01:00
|
|
|
head_atom_parameters: std::rc::Rc<foliage::VariableDeclarations>,
|
2020-02-01 19:20:46 +01:00
|
|
|
definitions: Vec<ScopedFormula>,
|
|
|
|
}
|
|
|
|
|
2020-02-02 02:53:04 +01:00
|
|
|
struct Context
|
2020-01-31 17:19:44 +01:00
|
|
|
{
|
2020-02-02 02:53:04 +01:00
|
|
|
pub function_declarations: foliage::FunctionDeclarations,
|
|
|
|
pub predicate_declarations: foliage::PredicateDeclarations,
|
|
|
|
pub variable_declaration_stack: foliage::VariableDeclarationStack,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Context
|
|
|
|
{
|
|
|
|
fn new() -> Self
|
|
|
|
{
|
|
|
|
Self
|
|
|
|
{
|
|
|
|
function_declarations: foliage::FunctionDeclarations::new(),
|
|
|
|
predicate_declarations: foliage::PredicateDeclarations::new(),
|
|
|
|
variable_declaration_stack: foliage::VariableDeclarationStack::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct StatementHandler
|
|
|
|
{
|
|
|
|
context: Context,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StatementHandler
|
|
|
|
{
|
|
|
|
fn new() -> Self
|
|
|
|
{
|
|
|
|
Self
|
|
|
|
{
|
|
|
|
context: Context::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl clingo::StatementHandler for StatementHandler
|
|
|
|
{
|
|
|
|
fn on_statement(&mut self, statement: &clingo::ast::Statement) -> bool
|
|
|
|
{
|
|
|
|
match statement.statement_type()
|
|
|
|
{
|
|
|
|
clingo::ast::StatementType::Rule(ref rule) =>
|
|
|
|
{
|
|
|
|
if let Err(error) = read_rule(rule, &mut self.context)
|
|
|
|
{
|
|
|
|
log::error!("could not translate input program: {}", error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => log::debug!("read statement (other kind)"),
|
|
|
|
}
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
2020-02-01 21:59:36 +01:00
|
|
|
|
2020-02-02 02:53:04 +01:00
|
|
|
struct Logger;
|
|
|
|
|
|
|
|
impl clingo::Logger for Logger
|
|
|
|
{
|
|
|
|
fn log(&mut self, code: clingo::Warning, message: &str)
|
|
|
|
{
|
|
|
|
log::warn!("clingo warning ({:?}): {}", code, message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn translate(program: &str) -> i32
|
|
|
|
{
|
|
|
|
let mut statement_handler = StatementHandler::new();
|
|
|
|
|
|
|
|
match clingo::parse_program_with_logger(&program, &mut statement_handler, &mut Logger, std::u32::MAX)
|
|
|
|
{
|
|
|
|
Ok(()) => 0,
|
|
|
|
Err(error) =>
|
|
|
|
{
|
|
|
|
log::error!("could not translate input program: {}", error);
|
|
|
|
1
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read_rule(rule: &clingo::ast::Rule, context: &mut Context) -> Result<(), crate::Error>
|
|
|
|
{
|
|
|
|
use super::common::FindOrCreatePredicateDeclaration;
|
2020-02-01 15:32:41 +01:00
|
|
|
|
2020-02-01 17:13:43 +01:00
|
|
|
let head_type = determine_head_type(rule.head(),
|
2020-02-02 02:53:04 +01:00
|
|
|
|name, arity| context.predicate_declarations.find_or_create(name, arity))?;
|
2020-02-01 19:20:46 +01:00
|
|
|
|
|
|
|
let mut definitions
|
|
|
|
= std::collections::BTreeMap::<std::rc::Rc<foliage::PredicateDeclaration>, Definitions>::new();
|
|
|
|
|
|
|
|
let declare_predicate_parameters = |predicate_declaration: &foliage::PredicateDeclaration|
|
|
|
|
{
|
2020-02-01 21:59:36 +01:00
|
|
|
std::rc::Rc::new((0..predicate_declaration.arity)
|
2020-02-02 02:32:32 +01:00
|
|
|
.map(|_| std::rc::Rc::new(foliage::VariableDeclaration::new("<anonymous>".to_string())))
|
2020-02-01 21:59:36 +01:00
|
|
|
.collect())
|
2020-02-01 19:20:46 +01:00
|
|
|
};
|
2020-02-01 15:32:41 +01:00
|
|
|
|
2020-02-01 17:13:43 +01:00
|
|
|
match head_type
|
2020-02-01 15:32:41 +01:00
|
|
|
{
|
2020-02-01 19:20:46 +01:00
|
|
|
HeadType::SingleAtom(head_atom) =>
|
|
|
|
{
|
|
|
|
if !definitions.contains_key(&head_atom.predicate_declaration)
|
|
|
|
{
|
|
|
|
definitions.insert(std::rc::Rc::clone(&head_atom.predicate_declaration),
|
|
|
|
Definitions
|
|
|
|
{
|
|
|
|
head_atom_parameters: declare_predicate_parameters(&head_atom.predicate_declaration),
|
|
|
|
definitions: vec![],
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-02-02 02:32:32 +01:00
|
|
|
let definitions = definitions.get_mut(&head_atom.predicate_declaration).unwrap();
|
2020-02-01 21:59:36 +01:00
|
|
|
|
2020-02-02 02:53:04 +01:00
|
|
|
context.variable_declaration_stack.push(std::rc::Rc::clone(
|
|
|
|
&definitions.head_atom_parameters));
|
2020-02-01 21:59:36 +01:00
|
|
|
|
2020-02-02 02:53:04 +01:00
|
|
|
let mut definition_arguments = translate_body(rule.body(),
|
|
|
|
&mut context.function_declarations, &mut context.predicate_declarations,
|
|
|
|
&mut context.variable_declaration_stack)?;
|
2020-02-02 02:32:32 +01:00
|
|
|
|
|
|
|
assert_eq!(definitions.head_atom_parameters.len(), head_atom.arguments.len());
|
|
|
|
|
|
|
|
let mut head_atom_arguments_iterator = head_atom.arguments.iter();
|
|
|
|
|
|
|
|
for head_atom_parameter in definitions.head_atom_parameters.iter()
|
|
|
|
{
|
|
|
|
let head_atom_argument = head_atom_arguments_iterator.next().unwrap();
|
|
|
|
|
|
|
|
let translated_head_term = crate::translate::common::choose_value_in_term(
|
2020-02-02 02:53:04 +01:00
|
|
|
head_atom_argument, head_atom_parameter, &mut context.function_declarations,
|
|
|
|
&mut context.variable_declaration_stack)?;
|
2020-02-02 02:32:32 +01:00
|
|
|
|
|
|
|
definition_arguments.push(Box::new(translated_head_term));
|
|
|
|
}
|
2020-02-01 21:59:36 +01:00
|
|
|
|
2020-02-02 02:53:04 +01:00
|
|
|
context.variable_declaration_stack.pop();
|
|
|
|
|
|
|
|
let mut free_variable_declarations = vec![];
|
|
|
|
|
|
|
|
std::mem::swap(&mut context.variable_declaration_stack.free_variable_declarations,
|
|
|
|
&mut free_variable_declarations);
|
2020-02-02 02:32:32 +01:00
|
|
|
|
|
|
|
let definition = foliage::Formula::And(definition_arguments);
|
|
|
|
|
|
|
|
let definition = ScopedFormula
|
|
|
|
{
|
2020-02-02 02:53:04 +01:00
|
|
|
free_variable_declarations,
|
2020-02-02 02:32:32 +01:00
|
|
|
formula: definition,
|
|
|
|
};
|
|
|
|
|
2020-02-02 02:53:04 +01:00
|
|
|
log::trace!("translated rule with single atom in head: {:?}", definition.formula);
|
2020-02-02 02:32:32 +01:00
|
|
|
|
|
|
|
definitions.definitions.push(definition);
|
2020-02-01 19:20:46 +01:00
|
|
|
},
|
2020-02-01 21:59:36 +01:00
|
|
|
HeadType::ChoiceWithSingleAtom(_) =>
|
2020-02-01 17:13:43 +01:00
|
|
|
log::debug!("translating choice rule with single atom"),
|
2020-02-01 17:20:43 +01:00
|
|
|
HeadType::IntegrityConstraint =>
|
2020-02-02 02:53:04 +01:00
|
|
|
log::debug!("translated integrity constraint"),
|
2020-02-02 02:32:32 +01:00
|
|
|
HeadType::Trivial => log::debug!("skipping trivial rule"),
|
2020-02-01 15:32:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
2020-01-24 13:32:43 +01:00
|
|
|
}
|