io.mindmaps.graph.internal.RuleImpl Maven / Gradle / Ivy
/*
* MindmapsDB - A Distributed Semantic Database
* Copyright (C) 2016 Mindmaps Research Ltd
*
* MindmapsDB is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* MindmapsDB is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MindmapsDB. If not, see .
*/
package io.mindmaps.graph.internal;
import io.mindmaps.util.Schema;
import io.mindmaps.util.ErrorMessage;
import io.mindmaps.exception.InvalidConceptValueException;
import io.mindmaps.concept.Type;
import io.mindmaps.concept.Rule;
import io.mindmaps.concept.RuleType;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import java.util.Collection;
import java.util.HashSet;
/**
* A rule represents an instance of a Rule Type which is used to make inferences over the data instances.
*/
class RuleImpl extends InstanceImpl implements Rule {
RuleImpl(Vertex v, AbstractMindmapsGraph mindmapsGraph, String lhs, String rhs) {
super(v, mindmapsGraph);
setRule(Schema.ConceptProperty.RULE_LHS, lhs);
setRule(Schema.ConceptProperty.RULE_RHS, rhs);
}
/**
*
* @param rule The rule to mutate
* @param value The value of either the lhs or rhs set
*/
private void setRule(Schema.ConceptProperty rule, String value){
if(value == null){
throw new InvalidConceptValueException(ErrorMessage.NULL_VALUE.getMessage(rule.name()));
}
if(getProperty(rule) != null){
String foundRuleValue = (String) getProperty(rule);
if(!foundRuleValue.equals(value)){
throw new InvalidConceptValueException(ErrorMessage.IMMUTABLE_VALUE.getMessage(foundRuleValue, this, value, rule.name()));
}
} else {
setProperty(rule, value);
}
}
//TODO: Fill out details on this method
/**
*
* @param expectation
* @return The Rule itself
*/
@Override
public Rule setExpectation(boolean expectation) {
setProperty(Schema.ConceptProperty.IS_EXPECTED, expectation);
return getThis();
}
//TODO: Fill out details on this method
/**
*
* @param materialise
* @return The Rule itself
*/
@Override
public Rule setMaterialise(boolean materialise) {
setProperty(Schema.ConceptProperty.IS_MATERIALISED, materialise);
return getThis();
}
/**
*
* @return A string representing the left hand side GraQL query.
*/
@Override
public String getLHS() {
Object object = getProperty(Schema.ConceptProperty.RULE_LHS);
if(object == null)
return null;
return (String) object;
}
/**
*
* @return A string representing the right hand side GraQL query.
*/
@Override
public String getRHS() {
Object object = getProperty(Schema.ConceptProperty.RULE_RHS);
if(object == null)
return null;
return (String) object;
}
//TODO: Fill out details on this method
/**
*
* @return
*/
@Override
public boolean getExpectation() {
Object object = getProperty(Schema.ConceptProperty.IS_EXPECTED);
return object != null && Boolean.parseBoolean(object.toString());
}
//TODO: Fill out details on this method
/**
*
* @return
*/
@Override
public boolean isMaterialise() {
Object object = getProperty(Schema.ConceptProperty.IS_MATERIALISED);
return object != null && Boolean.parseBoolean(object.toString());
}
/**
*
* @param type The concept type which this rules applies to.
* @return The Rule itself
*/
@Override
public Rule addHypothesis(Type type) {
putEdge(getMindmapsGraph().getElementFactory().buildSpecificConceptType(type), Schema.EdgeLabel.HYPOTHESIS);
return getThis();
}
/**
*
* @param type The concept type which is the conclusion of this Rule.
* @return The Rule itself
*/
@Override
public Rule addConclusion(Type type) {
putEdge(getMindmapsGraph().getElementFactory().buildSpecificConceptType(type), Schema.EdgeLabel.CONCLUSION);
return getThis();
}
/**
*
* @return A collection of Concept Types that constitute a part of the hypothesis of the rule
*/
@Override
public Collection getHypothesisTypes() {
Collection types = new HashSet<>();
getOutgoingNeighbours(Schema.EdgeLabel.HYPOTHESIS).forEach(concept -> types.add(getMindmapsGraph().getElementFactory().buildSpecificConceptType(concept)));
return types;
}
/**
*
* @return A collection of Concept Types that constitute a part of the conclusion of the rule
*/
@Override
public Collection getConclusionTypes() {
Collection types = new HashSet<>();
getOutgoingNeighbours(Schema.EdgeLabel.CONCLUSION).forEach(concept -> types.add(getMindmapsGraph().getElementFactory().buildSpecificConceptType(concept)));
return types;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy