org.semanticweb.owlapi.modularity.locality.SemanticLocalityEvaluator Maven / Gradle / Ivy
The newest version!
/* This file is part of the OWL API.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright 2020, Marc Robin Nolte
*
* This program 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.
* This program 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 this program. If not, see http://www.gnu.org/licenses/.
*
* Alternatively, the contents of this file may be used under the terms of the Apache License, Version 2.0 in which case, the provisions of the Apache License Version 2.0 are applicable instead of those above.
* 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. */
package org.semanticweb.owlapi.modularity.locality;
import static org.semanticweb.owlapi.util.OWLAPIPreconditions.verifyNotNull;
import java.util.Collection;
import java.util.Objects;
import java.util.stream.Stream;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import org.semanticweb.owlapi.model.OWLAxiom;
import org.semanticweb.owlapi.model.OWLAxiomVisitor;
import org.semanticweb.owlapi.model.OWLClass;
import org.semanticweb.owlapi.model.OWLClassExpression;
import org.semanticweb.owlapi.model.OWLClassExpressionVisitor;
import org.semanticweb.owlapi.model.OWLDataAllValuesFrom;
import org.semanticweb.owlapi.model.OWLDataExactCardinality;
import org.semanticweb.owlapi.model.OWLDataFactory;
import org.semanticweb.owlapi.model.OWLDataHasValue;
import org.semanticweb.owlapi.model.OWLDataMaxCardinality;
import org.semanticweb.owlapi.model.OWLDataMinCardinality;
import org.semanticweb.owlapi.model.OWLDataSomeValuesFrom;
import org.semanticweb.owlapi.model.OWLDisjointClassesAxiom;
import org.semanticweb.owlapi.model.OWLEntity;
import org.semanticweb.owlapi.model.OWLEquivalentClassesAxiom;
import org.semanticweb.owlapi.model.OWLObjectAllValuesFrom;
import org.semanticweb.owlapi.model.OWLObjectComplementOf;
import org.semanticweb.owlapi.model.OWLObjectExactCardinality;
import org.semanticweb.owlapi.model.OWLObjectHasSelf;
import org.semanticweb.owlapi.model.OWLObjectHasValue;
import org.semanticweb.owlapi.model.OWLObjectIntersectionOf;
import org.semanticweb.owlapi.model.OWLObjectMaxCardinality;
import org.semanticweb.owlapi.model.OWLObjectMinCardinality;
import org.semanticweb.owlapi.model.OWLObjectOneOf;
import org.semanticweb.owlapi.model.OWLObjectSomeValuesFrom;
import org.semanticweb.owlapi.model.OWLObjectUnionOf;
import org.semanticweb.owlapi.model.OWLOntologyCreationException;
import org.semanticweb.owlapi.model.OWLOntologyManager;
import org.semanticweb.owlapi.model.OWLRuntimeException;
import org.semanticweb.owlapi.model.OWLSubClassOfAxiom;
import org.semanticweb.owlapi.reasoner.OWLReasoner;
import org.semanticweb.owlapi.reasoner.OWLReasonerFactory;
/*
* Following com.clarkparsia.owlapi.modularity.locality.SemanticLocalityEvaluator, and
* modified for a more modern, thread safe and maintainable implementation. Original Copyright is:
*
* This file is part of the OWL API.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright 2011, Clark & Parsia, LLC
*
* This program 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.
* This program 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 this program. If not, see http://www.gnu.org/licenses/.
*
* Alternatively, the contents of this file may be used under the terms of the Apache License, Version 2.0 in which case, the provisions of the Apache License Version 2.0 are applicable instead of those above.
* 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.
*/
/**
* Thread safe class for checking semantic locality.
*
* @author Marc Robin Nolte (modified version)
*
*/
public class SemanticLocalityEvaluator implements LocalityEvaluator {
/**
* Class to replace certain {@link OWLClassExpression}s within an {@link OWLAxiom} with \bottom.
*/
private class BottomReplacer implements OWLAxiomVisitor, OWLClassExpressionVisitor {
/**
* The {@link OWLAxiom} with replaced {@link OWLClassExpression}s. May be manipulated during
* evaluation.
*/
@Nullable
private OWLAxiom newAxiom;
/**
* The {@link OWLClassExpression} with replaced {@link OWLClassExpression}s. May be
* manipulated during evaluation.
*/
@Nullable
private OWLClassExpression newClassExpression;
/**
* The signature that should not be replaced.
*/
@Nonnull
private final Collection signature;
/**
* Instantiates a new {@link BottomReplacer}.
*
* @param signature The signature that should not be replaced with \bottom.
*/
BottomReplacer(Collection signature) {
this.signature = signature;
}
/**
* Returns a new {@link OWLAxiom} resulting by replacing all entities not present in this
* {@link BottomReplacer}'s signature with \bottom.
*
* @param axiom The {@link OWLAxiom}, which entities should be replaced
* @return The new {@link OWLAxiom} as specified above
*/
@Nonnull
public OWLAxiom replaceBottom(OWLAxiom axiom) {
newAxiom = null;
axiom.accept(this);
if (newAxiom == null) {
throw new OWLRuntimeException("Unsupported axiom: " + axiom);
}
return verifyNotNull(newAxiom);
}
/**
* Returns a new {@link OWLClassExpression} resulting by replacing all entities of the given
* {@link OWLClassExpression} not present in this {@link BottomReplacer}'s signature with
* \bottom.
*
* @param classExpression The {@link OWLClassExpression}, which entities should be replaced
* @return The new {@link OWLClassExpression} as specified above
*/
@Nonnull
public OWLClassExpression replaceBottom(OWLClassExpression classExpression) {
newClassExpression = null;
classExpression.accept(this);
if (newClassExpression == null) {
throw new OWLRuntimeException("Unsupported class expression: " + classExpression);
}
return verifyNotNull(newClassExpression);
}
/**
* Returns a {@link Stream} of new {@link OWLClassExpression} resulting by replacing all
* entities of the given {@link OWLClassExpression}s not present in this
* {@link BottomReplacer}'s signature with \bottom.
*
* @param classExpressions The {@link OWLClassExpression}s, which entities should be
* replaced
* @return A {@link Stream} as specified above
*/
@Nonnull
public Stream replaceBottom(
Stream extends OWLClassExpression> classExpressions) {
return classExpressions.map(this::replaceBottom);
}
@Override
public void visit(@Nonnull OWLClass ce) {
if (signature.contains(ce)) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLDataAllValuesFrom ce) {
if (signature.contains(ce.getProperty().asOWLDataProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLDataExactCardinality ce) {
if (signature.contains(ce.getProperty().asOWLDataProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLDataHasValue ce) {
newClassExpression = dataFactory.getOWLNothing();
}
@Override
public void visit(OWLDataMaxCardinality ce) {
if (signature.contains(ce.getProperty().asOWLDataProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLDataMinCardinality ce) {
if (signature.contains(ce.getProperty().asOWLDataProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLDataSomeValuesFrom ce) {
if (signature.contains(ce.getProperty().asOWLDataProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLDisjointClassesAxiom axiom) {
newAxiom =
dataFactory.getOWLDisjointClassesAxiom(replaceBottom(axiom.classExpressions()));
}
@Override
public void visit(OWLEquivalentClassesAxiom axiom) {
newAxiom =
dataFactory.getOWLEquivalentClassesAxiom(replaceBottom(axiom.classExpressions()));
}
@Override
public void visit(OWLObjectAllValuesFrom ce) {
if (signature.contains(ce.getProperty().getNamedProperty())) {
newClassExpression = dataFactory.getOWLObjectAllValuesFrom(ce.getProperty(),
replaceBottom(ce.getFiller()));
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLObjectComplementOf ce) {
newClassExpression =
dataFactory.getOWLObjectComplementOf(replaceBottom(ce.getOperand()));
}
@Override
public void visit(OWLObjectExactCardinality ce) {
if (signature.contains(ce.getProperty().getNamedProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLObjectHasSelf ce) {
newClassExpression = dataFactory.getOWLNothing();
}
@Override
public void visit(OWLObjectHasValue ce) {
newClassExpression = dataFactory.getOWLNothing();
}
@Override
public void visit(OWLObjectIntersectionOf ce) {
newClassExpression =
dataFactory.getOWLObjectIntersectionOf(replaceBottom(ce.operands()));
}
@Override
public void visit(OWLObjectMaxCardinality ce) {
if (signature.contains(ce.getProperty().getNamedProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLObjectMinCardinality ce) {
if (signature.contains(ce.getProperty().getNamedProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLObjectOneOf ce) {
newClassExpression = dataFactory.getOWLNothing();
}
@Override
public void visit(OWLObjectSomeValuesFrom ce) {
if (signature.contains(ce.getProperty().getNamedProperty())) {
newClassExpression = dataFactory.getOWLObjectSomeValuesFrom(ce.getProperty(),
replaceBottom(ce.getFiller()));
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLObjectUnionOf ce) {
newClassExpression = dataFactory.getOWLObjectUnionOf(replaceBottom(ce.operands()));
}
@Override
public void visit(OWLSubClassOfAxiom axiom) {
newAxiom = dataFactory.getOWLSubClassOfAxiom(replaceBottom(axiom.getSuperClass()),
replaceBottom(axiom.getSubClass()));
}
}
/**
* Class to replace certain {@link OWLClassExpression}s within an {@link OWLAxiom} with \top.
*/
private class TopReplacer implements OWLAxiomVisitor, OWLClassExpressionVisitor {
/**
* The {@link OWLAxiom} with replaced {@link OWLClassExpression}s. May be manipulated during
* evaluation.
*/
@Nullable
private OWLAxiom newAxiom;
/**
* The {@link OWLClassExpression} with replaced {@link OWLClassExpression}s. May be
* manipulated during evaluation.
*/
@Nullable
private OWLClassExpression newClassExpression;
/**
* The signature that should not be replaced.
*/
@Nonnull
private final Collection signature;
/**
* Instantiates a new {@link BottomReplacer}.
*
* @param signature The signature that should not be replaced with \bottom.
*/
TopReplacer(Collection signature) {
this.signature = signature;
}
/**
* Returns a new {@link OWLAxiom} resulting by replacing all entities not present in this
* {@link BottomReplacer}'s signature with \top.
*
* @param axiom The {@link OWLAxiom}, which entities should be replaced
* @return The new {@link OWLAxiom} as specified above
*/
@Nonnull
public OWLAxiom replaceTop(OWLAxiom axiom) {
newAxiom = null;
axiom.accept(this);
if (newAxiom == null) {
throw new OWLRuntimeException("Unsupported axiom: " + axiom);
}
return verifyNotNull(newAxiom);
}
/**
* Returns a new {@link OWLClassExpression} resulting by replacing all entities of the given
* {@link OWLClassExpression} not present in this {@link BottomReplacer}'s signature with
* \top.
*
* @param classExpression The {@link OWLClassExpression}, which entities should be replaced
* @return The new {@link OWLClassExpression} as specified above
*/
@Nonnull
public OWLClassExpression replaceTop(OWLClassExpression classExpression) {
newClassExpression = null;
classExpression.accept(this);
if (newClassExpression == null) {
throw new OWLRuntimeException("Unsupported class expression: " + classExpression);
}
return verifyNotNull(newClassExpression);
}
/**
* Returns a {@link Stream} of new {@link OWLClassExpression} resulting by replacing all
* entities of the given {@link OWLClassExpression}s not present in this
* {@link BottomReplacer}'s signature with \top.
*
* @param classExpressions The {@link OWLClassExpression}s, which entities should be
* replaced
* @return A {@link Stream} as specified above
*/
@Nonnull
public Stream replaceTop(
Stream extends OWLClassExpression> classExpressions) {
return classExpressions.map(this::replaceTop);
}
@Override
public void visit(@Nonnull OWLClass ce) {
if (signature.contains(ce)) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLDataAllValuesFrom ce) {
if (signature.contains(ce.getProperty().asOWLDataProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLDataExactCardinality ce) {
if (signature.contains(ce.getProperty().asOWLDataProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLDataHasValue ce) {
newClassExpression = dataFactory.getOWLThing();
}
@Override
public void visit(OWLDataMaxCardinality ce) {
if (signature.contains(ce.getProperty().asOWLDataProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLDataMinCardinality ce) {
if (signature.contains(ce.getProperty().asOWLDataProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLDataSomeValuesFrom ce) {
if (signature.contains(ce.getProperty().asOWLDataProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLDisjointClassesAxiom axiom) {
newAxiom = dataFactory.getOWLDisjointClassesAxiom(replaceTop(axiom.classExpressions()));
}
@Override
public void visit(OWLEquivalentClassesAxiom axiom) {
newAxiom =
dataFactory.getOWLEquivalentClassesAxiom(replaceTop(axiom.classExpressions()));
}
@Override
public void visit(OWLObjectAllValuesFrom ce) {
if (signature.contains(ce.getProperty().getNamedProperty())) {
newClassExpression = dataFactory.getOWLObjectAllValuesFrom(ce.getProperty(),
replaceTop(ce.getFiller()));
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLObjectComplementOf ce) {
newClassExpression = dataFactory.getOWLObjectComplementOf(replaceTop(ce.getOperand()));
}
@Override
public void visit(OWLObjectExactCardinality ce) {
if (signature.contains(ce.getProperty().getNamedProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLObjectHasSelf ce) {
newClassExpression = dataFactory.getOWLThing();
}
@Override
public void visit(OWLObjectHasValue ce) {
newClassExpression = dataFactory.getOWLThing();
}
@Override
public void visit(OWLObjectIntersectionOf ce) {
newClassExpression = dataFactory.getOWLObjectIntersectionOf(replaceTop(ce.operands()));
}
@Override
public void visit(OWLObjectMaxCardinality ce) {
if (signature.contains(ce.getProperty().getNamedProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLNothing();
}
}
@Override
public void visit(OWLObjectMinCardinality ce) {
if (signature.contains(ce.getProperty().getNamedProperty())) {
newClassExpression = ce;
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLObjectOneOf ce) {
newClassExpression = dataFactory.getOWLThing();
}
@Override
public void visit(OWLObjectSomeValuesFrom ce) {
if (signature.contains(ce.getProperty().getNamedProperty())) {
newClassExpression = dataFactory.getOWLObjectSomeValuesFrom(ce.getProperty(),
replaceTop(ce.getFiller()));
} else {
newClassExpression = dataFactory.getOWLThing();
}
}
@Override
public void visit(OWLObjectUnionOf ce) {
newClassExpression = dataFactory.getOWLObjectUnionOf(replaceTop(ce.operands()));
}
@Override
public void visit(OWLSubClassOfAxiom axiom) {
newAxiom = dataFactory.getOWLSubClassOfAxiom(replaceTop(axiom.getSuperClass()),
replaceTop(axiom.getSubClass()));
}
}
/**
* The used {@link OWLDataFactory}.
*/
@Nonnull
protected final OWLDataFactory dataFactory;
/**
* The {@link OWLReasoner} to check if axioms are tautologies.
*/
@Nonnull
private final OWLReasoner reasoner;
/**
* The {@link LocalityClass} to use.
*/
private final LocalityClass localityClass;
/**
* Instantiates a new SemanticLocalityEvaluator.
*
* @param localityClass The {@link LocalityClass} to use. Must be one of BOTTOM or TOP
* @param ontologyManager The {@link OWLOntologyManager} to create a reasoner with
* @param reasonerFactory The {@link OWLReasonerFactory} to create a reasoner with
*/
public SemanticLocalityEvaluator(LocalityClass localityClass,
OWLOntologyManager ontologyManager, OWLReasonerFactory reasonerFactory) {
this.localityClass =
Objects.requireNonNull(localityClass, "The given locality class may not be null.");
if (localityClass != LocalityClass.BOTTOM && localityClass != LocalityClass.TOP) {
throw new IllegalArgumentException(
"The given locality class must be one of BOTTOM or TOP");
}
dataFactory =
Objects.requireNonNull(ontologyManager, "The given ontologyManager may not be null")
.getOWLDataFactory();
try {
reasoner =
Objects.requireNonNull(reasonerFactory, "The given reasonerFactory may not be null")
.createNonBufferingReasoner(ontologyManager.createOntology());
} catch (OWLOntologyCreationException e) {
throw new OWLRuntimeException(e);
}
}
@Override
public boolean isLocal(OWLAxiom axiom, Collection signature) {
return !axiom.isLogicalAxiom() || reasoner.isEntailed(localityClass == LocalityClass.BOTTOM
? new BottomReplacer(Objects.requireNonNull(signature, "signature cannot be null"))
.replaceBottom(Objects.requireNonNull(axiom, "The given axiom may not be null"))
: new TopReplacer(Objects.requireNonNull(signature, "signature cannot be null"))
.replaceTop(Objects.requireNonNull(axiom, "The given axiom may not be null")));
}
/**
* Disposes the reasoner and the empty ontology that is used to check whether axioms are tautologies via calling {@link OWLReasoner#dispose()}.
* Must be called after this SemanticLocalityEvaluator is no longer used
* to free resources that are allocated by the reasoner and the ontology.
*/
public void dispose() {
reasoner.getRootOntology().getOWLOntologyManager().removeOntology(reasoner.getRootOntology());
reasoner.dispose();
}
}