org.semanticweb.elk.reasoner.indexing.classes.ModifiableIndexedObjectUnionOfImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elk-reasoner Show documentation
Show all versions of elk-reasoner Show documentation
The core ELK Reasoner package
/*
* #%L
* ELK Reasoner
* $Id:$
* $HeadURL:$
* %%
* Copyright (C) 2011 - 2013 Department of Computer Science, University of Oxford
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package org.semanticweb.elk.reasoner.indexing.classes;
import java.util.ArrayList;
import java.util.List;
import org.semanticweb.elk.RevertibleAction;
import org.semanticweb.elk.reasoner.completeness.Feature;
import org.semanticweb.elk.reasoner.indexing.model.IndexedComplexClassExpression;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedClassExpression;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedObjectUnionOf;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableOntologyIndex;
import org.semanticweb.elk.reasoner.indexing.model.OccurrenceIncrement;
import org.semanticweb.elk.reasoner.indexing.model.StructuralIndexedSubObject;
import org.semanticweb.elk.reasoner.saturation.rules.subsumers.ObjectUnionFromDisjunctRule;
import org.semanticweb.elk.util.hashing.HashGenerator;
/**
* Implements {@link ModifiableIndexedObjectUnionOf}
*
* @author "Yevgeny Kazakov"
*
*/
class ModifiableIndexedObjectUnionOfImpl extends
StructuralIndexedComplexClassExpressionEntryImpl
implements ModifiableIndexedObjectUnionOf {
private final List disjuncts_;
ModifiableIndexedObjectUnionOfImpl(
List extends ModifiableIndexedClassExpression> disjuncts) {
this(new Initializer(disjuncts));
}
private ModifiableIndexedObjectUnionOfImpl(Initializer init) {
super(structuralHashCode(init.disjuncts_));
this.disjuncts_ = init.disjuncts_;
}
private static class Initializer {
private final List disjuncts_;
Initializer(
List extends ModifiableIndexedClassExpression> disjuncts) {
this.disjuncts_ = new ArrayList(
2);
for (ModifiableIndexedClassExpression disjunct : disjuncts) {
this.disjuncts_.add(disjunct);
}
}
}
@Override
public final List getDisjuncts() {
return disjuncts_;
}
@Override
public RevertibleAction getIndexingAction(ModifiableOntologyIndex index,
OccurrenceIncrement increment) {
return RevertibleAction.create(
() -> !occursNegatively()
&& increment.negativeIncrement > 0,
() -> ObjectUnionFromDisjunctRule.addRulesFor(this, index),
() -> ObjectUnionFromDisjunctRule.removeRulesFor(this, index))
.then(super.getIndexingAction(index, increment))
.then(RevertibleAction.create(
() -> !occursNegatively()
&& increment.negativeIncrement < 0,
() -> ObjectUnionFromDisjunctRule.removeRulesFor(this,
index),
() -> ObjectUnionFromDisjunctRule.addRulesFor(this,
index)))
.then(RevertibleAction.create(() -> {
index.occurrenceChanged(Feature.OBJECT_UNION_OF_POSITIVE,
increment.positiveIncrement);
return true;
}, () -> index.occurrenceChanged(
Feature.OBJECT_UNION_OF_POSITIVE,
-increment.positiveIncrement)));
}
static int structuralHashCode(
List disjuncts) {
return HashGenerator.combinedHashCode(
ModifiableIndexedObjectUnionOfImpl.class, disjuncts);
}
@Override
public ModifiableIndexedObjectUnionOfImpl structuralEquals(Object other) {
if (this == other) {
return this;
}
if (other instanceof ModifiableIndexedObjectUnionOfImpl) {
ModifiableIndexedObjectUnionOfImpl secondEntry = (ModifiableIndexedObjectUnionOfImpl) other;
if (getDisjuncts().equals(secondEntry.getDisjuncts()))
return secondEntry;
}
// else
return null;
}
@Override
public final O accept(
IndexedComplexClassExpression.Visitor visitor) {
return visitor.visit(this);
}
@Override
public O accept(StructuralIndexedSubObject.Visitor visitor) {
return visitor.visit(this);
}
}