org.semanticweb.owlapi.util.SimpleRootClassChecker 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 (C) 2011, The University of Manchester
*
* 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.
*
* Copyright 2011, University of Manchester
*
* 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.util;
import java.util.Set;
import org.semanticweb.owlapi.model.OWLAxiom;
import org.semanticweb.owlapi.model.OWLClass;
import org.semanticweb.owlapi.model.OWLClassExpression;
import org.semanticweb.owlapi.model.OWLEquivalentClassesAxiom;
import org.semanticweb.owlapi.model.OWLObjectIntersectionOf;
import org.semanticweb.owlapi.model.OWLOntology;
import org.semanticweb.owlapi.model.OWLSubClassOfAxiom;
/**
* Author: Matthew Horridge
* The University Of Manchester
* Bio-Health Informatics Group
* Date: 16-Dec-2006
*
* A utility class that can be used to determine is a class is a syntactic direct
* subclass of owl:Thing. A class is considered NOT to be a syntactic direct subclass
* of owl:Thing if ANY of the following conditions apply:
*
*
* - It is equal to the left hand side of a subclass axiom, where the right hand side
* is a named class other than owl:Thing
* - It is an operand in an equivalent class axiom where at least one of the other other
* operands is an intersection class that has a named operand other than the class in question.
* For example
EquivalentClasses(A, (B and prop some C))
*
*
* This functionality is provided because it is useful for displaying class hierarchies in
* editors and browsers. In these situations it is needed because not all "orphan" classes
* are asserted to be subclasses of owl:Thing. For example, if the only referencing axiom
* of class A was ObjectDomain(propP A) then A is a syntactic subclass of owl:Thing
*/
public class SimpleRootClassChecker implements RootClassChecker {
private final Set ontologies;
/**
* Creates a root class checker, which examines axioms contained in ontologies from
* the specified set in order to determine if a class is a syntactic subclass of
* owl:Thing
*
* @param ontologies The ontologies whose axioms are to be taken into consideration
* when determining if a class is a syntactic direct subclass of owl:Thing
*/
public SimpleRootClassChecker(Set ontologies) {
this.ontologies = ontologies;
}
// Rules for determining if a class is a direct subclass of Thing
// 1) It isn't referenced by ANY subclass axiom or equivalent class axioms
// 2) It is reference only by subclass axioms, but doesn't appear on the LHS of these axioms
// 3) It is on the LHS of a subclass axiom where the RHS is Thing
// 4) It is referenced only by equivalent class axioms, where all other operands in these axioms are named
// 5) It is not referenced by subclass axioms and is not referenced by any equivalent class axiom where there is
// at least one operand in the equivalent class axiom which is an intersection containing a named operand i.e.
// EquivalentClasses(A (B and hasP some C)) would not be a subclass of Thing
private final RootClassCheckerHelper checker = new RootClassCheckerHelper();
protected final NamedSuperChecker superChecker = new NamedSuperChecker();
@Override
public boolean isRootClass(OWLClass cls) {
for (OWLOntology ont : ontologies) {
for (OWLAxiom ax : ont.getReferencingAxioms(cls)) {
checker.setOWLClass(cls);
ax.accept(checker);
if (!checker.isRoot()) {
return false;
}
}
}
return true;
}
private static class NamedSuperChecker extends OWLClassExpressionVisitorAdapter {
protected boolean namedSuper;
public NamedSuperChecker() {}
public void reset() {
namedSuper = false;
}
@Override
public void visit(OWLClass desc) {
namedSuper = true;
}
@Override
public void visit(OWLObjectIntersectionOf desc) {
for (OWLClassExpression op : desc.getOperands()) {
op.accept(this);
if (namedSuper) {
break;
}
}
}
}
/**
* A utility class that checks if an axiom gives rise to
* a class being a subclass of Thing.
*/
private class RootClassCheckerHelper extends OWLAxiomVisitorAdapter {
private boolean isRoot;
private OWLClass cls;
public RootClassCheckerHelper() {}
public void setOWLClass(OWLClass cls) {
// Start off with the assumption that the class is
// a root class. This means if the class isn't referenced
// by any equivalent class axioms or subclass axioms then
// we correctly identify it as a root
isRoot = true;
this.cls = cls;
}
public boolean isRoot() {
return isRoot;
}
@Override
public void visit(OWLSubClassOfAxiom axiom) {
if (axiom.getSubClass().equals(cls)) {
superChecker.reset();
axiom.getSuperClass().accept(superChecker);
isRoot = !superChecker.namedSuper;
}
}
@Override
public void visit(OWLEquivalentClassesAxiom axiom) {
Set descs = axiom.getClassExpressions();
if (!descs.contains(cls)) {
return;
}
for (OWLClassExpression desc : descs) {
if (desc.equals(cls)) {
continue;
}
superChecker.reset();
desc.accept(superChecker);
if (superChecker.namedSuper) {
isRoot = false;
return;
}
}
isRoot = !superChecker.namedSuper;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy