All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.semanticweb.owlapi.krss2.renderer.KRSS2ObjectRenderer Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show 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 2011, Ulm University
 * 
 * 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.krss2.renderer;

import static org.semanticweb.owlapi.krss2.renderer.KRSS2Vocabulary.*;
import static org.semanticweb.owlapi.model.parameters.Imports.*;
import static org.semanticweb.owlapi.search.EntitySearcher.*;
import static org.semanticweb.owlapi.search.Searcher.*;

import java.io.IOException;
import java.io.Writer;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;

import javax.annotation.Nonnull;

import org.semanticweb.owlapi.model.AxiomType;
import org.semanticweb.owlapi.model.OWLAxiom;
import org.semanticweb.owlapi.model.OWLClass;
import org.semanticweb.owlapi.model.OWLClassExpression;
import org.semanticweb.owlapi.model.OWLDisjointClassesAxiom;
import org.semanticweb.owlapi.model.OWLDisjointObjectPropertiesAxiom;
import org.semanticweb.owlapi.model.OWLEquivalentClassesAxiom;
import org.semanticweb.owlapi.model.OWLEquivalentObjectPropertiesAxiom;
import org.semanticweb.owlapi.model.OWLIndividual;
import org.semanticweb.owlapi.model.OWLInverseObjectPropertiesAxiom;
import org.semanticweb.owlapi.model.OWLNamedIndividual;
import org.semanticweb.owlapi.model.OWLObjectInverseOf;
import org.semanticweb.owlapi.model.OWLObjectOneOf;
import org.semanticweb.owlapi.model.OWLObjectProperty;
import org.semanticweb.owlapi.model.OWLObjectPropertyAssertionAxiom;
import org.semanticweb.owlapi.model.OWLObjectPropertyExpression;
import org.semanticweb.owlapi.model.OWLOntology;
import org.semanticweb.owlapi.model.OWLPropertyExpression;
import org.semanticweb.owlapi.model.OWLRuntimeException;
import org.semanticweb.owlapi.model.OWLSubClassOfAxiom;
import org.semanticweb.owlapi.model.OWLSubObjectPropertyOfAxiom;
import org.semanticweb.owlapi.model.OWLSubPropertyChainOfAxiom;
import org.semanticweb.owlapi.search.Filters;

/**
 * {@code KRSS2ObjectRenderer} is an extension of {@link KRSSObjectRenderer
 * KRSSObjectRenderer} which uses the extended vocabulary. 
* Abbreviations * * * * * * * * * * * * * * * * * *
CNconcept name
C,D,Econcept expression
RNrole name
R, R1, R2,...role expressions, i.e. role name or inverse role
*
* KRSS concept language * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
KRSSOWLClassExpression
(at-least n R C)(OWLObjectMinCardinality R n C)
(at-most n R C)(OWLObjectMaxCardinality R n C)
(exactly n R C)(OWLObjectExactCardinality R n C)
(some R C)(OWLObjectSomeValuesFrom R C)
(all R C)(OWLObjectAllValuesFrom R C)
(not C)(OWLObjectComplementOf C)
(and C D E)(OWLObjectIntersectionOf C D E)
(or C D E)(OWLObjectUnionOf C D E)
*
* KRSS role language * * * * * * * * * *
KRSSOWLObjectPropertyExpression
(inv R)(OWLInverseObjectPropertiesAxiom R)
* Each referenced class, object property as well as individual is defined using * define-concept resp. define-primitive-concept, * define-role and define-individual. In addition, axioms are * translated as follows.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
KRSS2OWLAxiomKRSS syntaxRemarks
OWLDisjointClassesAxiom(disjoint C D)OWLDisjointClasses C D1 D2 ... Dn { (disjoint i(j) i(j+k)) | 1 * <= j <=n, j<k<=n, j=|=k}
*
OWLEquivalentClasses(define-concept C D)OWLEquivalentClasses C D1 D2...Dn will be translated to:
* (define-concept C (and D1 D2...Dn))
* Only applicable if there is no OWLSubClassOf axiom.
*
OWLSubClassOfAxiom(define-primitive-concept C D)OWLSubClassOfAxiom C D1...Dn (n > 1) will be translated to:
* (define-primitive-concept C (and D1...Dn))
* Only applicable if there is no OWLEquivalentClasses axiom. In that case the * class will be introduced via (define-concept...) and all subclass axioms are * handled via implies
OWLSubClassOfAxiom(implies D C)Only in case of GCIs with concept expression (not named class) D, or in * case that D is a non-primitive concept. Otherwise superclasses are introduced * via (define-primitive-concept D ...)
OWLEquivalentObjectPropertiesAxiom(roles-equivalent r s)All roles are explicitly introduced via define-primitive-role.
OWLSubPropertyChainOfAxiom(role-inclusion (compose r s) t)Role inclusions of the kind (role-inclusion (compose r s) r) resp. * (role-inclusion (compose s r) r) are handled within the * (define-primitive-role) statement as right- resp. left-identities iff it is * the only role-inclusion wrt. the super property.
OWLSubObjectPropertyAxiom(define-primitive-role R :parent S)
* (define-primitive-role R :parents S T U)
* Additional attributes: *
    *
  • :transitive t *
  • :symmetric t *
  • :reflexive t *
  • :inverse I *
  • :domain C resp. :domain (and C C1...Cn) *
  • :range D resp. :range (and D D1..Dn) *
*
This will be only used if there is no OWLEquivalentClasses axiom * containing R (see define-role). The additional attributes are added if there * is an OWLTransitiveObjectProperyAxiom, OWLSymmetricObjectPropertyAxiom, * OWLReflexiveObjectPropertyAxiom, OWLObjectPropertyDomainAxiom, * OWLObjectPropertyRangeAxiom resp. OWLInverseObjectPropertiesAxiom. If there * are multiple OWLInverseObjectPropertiesAxioms only one inverse is handled * here, all others are handled via (inverse) statements. Domains/ranges of * multiple domain/range axioms are handled as (and C C1...Cn).
OWLSubObjectPropertyAxiom(implies-role r s)Only applicable if r is an inverse property, otherwise superproperties * are handled within the define-primitive-role statement.
OWLInverseObjectPropertiesAxiom(inverse r s)Only inverse properties which are not introduced via * define-primitive-role.
OWLObjectPropertyRangeAxiomsee define-primitive-role
OWLObjectPropertyDomainAxiomsee define-primitive-role
OWLSymmetricObjectPropertyAxiomsee define-primitive-role
OWLTransitiveObjectPropertyAxiomsee define-primitive-role
OWLReflexiveObjectPropertyAxiomsee define-primitive-role
OWLClassAssertionAxiom(instance i D)
OWLDifferentIndividualsAxiom(distinct i1 i2)OWLDifferentIndividualsAxiom i1 i2 ... in will be splitted into:
* { (distinct i(j) i(j+k)) | 1 <= j <=n, j<k<=n, j=|=k}
*
OWLObjectPropertyAssertionAxiom(related i1 P i2)i1: subject, i2: object
OWLSameIndividualsAxiom(equal i1 i2)OWLSameIndividual i1 i2 ...i(n-1) in in will be splitted into:
* { (equal i(j) i(j+k)) | 1 <= j <=n, j<k<=n, j=|=k}
* (equal i1 i2)
* (equal i1 i3)
* ...
* (equal i(n-1) in)
* * @author Olaf Noppens, Ulm University, Institute of Artificial Intelligence */ @SuppressWarnings("null") public class KRSS2ObjectRenderer extends KRSSObjectRenderer { @Nonnull private final Set leftRightIdentityUsed; /** * If declarations are ignored, entities which are only referenced in a * declaration are not rendered. */ protected boolean ignoreDeclarations = false; /** * @param ontology * ontology to render * @param writer * writer to render to */ public KRSS2ObjectRenderer(@Nonnull OWLOntology ontology, @Nonnull Writer writer) { super(ontology, writer); leftRightIdentityUsed = new HashSet<>(); } /** * @param ignoreDeclarations * true if declarations should be ignored */ public void setIgnoreDeclarations(boolean ignoreDeclarations) { this.ignoreDeclarations = ignoreDeclarations; } protected void write(KRSS2Vocabulary v) { write(v.toString()); } @Override public void visit(OWLOntology ontology) { reset(); for (OWLClass eachClass : ontology.getClassesInSignature()) { if (ignoreDeclarations) { if (ontology.getAxioms(eachClass, EXCLUDED).size() == 1 && ontology.getDeclarationAxioms(eachClass).size() == 1) { continue; } } boolean primitive = !isDefined(eachClass, ontology); writeOpenBracket(); if (primitive) { // there is no equivalentclasses axiom! write(DEFINE_PRIMITIVE_CONCEPT); write(eachClass); writeSpace(); Collection axioms = ontology.filterAxioms( Filters.subClassWithSub, eachClass, INCLUDED); flatten(sup(axioms, OWLClassExpression.class), KRSSVocabulary.AND); writeCloseBracket(); writeln(); Collection classes = equivalent( ontology.getEquivalentClassesAxioms(eachClass), OWLClassExpression.class); for (OWLClassExpression description : classes) { writeOpenBracket(); write(eachClass); write(EQUIVALENT); write(description); writeCloseBracket(); writeln(); } } else { writeOpenBracket(); write(DEFINE_CONCEPT); write(eachClass); Collection classes = equivalent( ontology.getEquivalentClassesAxioms(eachClass), OWLClassExpression.class); flatten(classes, KRSSVocabulary.AND); writeCloseBracket(); writeln(); Collection supclasses = sup( ontology.getSubClassAxiomsForSubClass(eachClass), OWLClassExpression.class); for (OWLClassExpression description : supclasses) { writeOpenBracket(); write(eachClass); write(IMPLIES); write(description); writeCloseBracket(); writeln(); } } } for (OWLObjectProperty property : sort(ontology .getObjectPropertiesInSignature())) { if (ignoreDeclarations) { if (ontology.getAxioms(property, EXCLUDED).size() == 1 && ontology.getDeclarationAxioms(property).size() == 1) { continue; } } writeOpenBracket(); Collection properties = equivalent(ontology .getEquivalentObjectPropertiesAxioms(property)); boolean isPrimitive = properties.isEmpty(); if (isPrimitive) { write(DEFINE_PRIMITIVE_ROLE); write(property); Collection axioms = ontology.filterAxioms( Filters.subObjectPropertyWithSub, property, INCLUDED); Collection superProperties = sup( axioms, OWLObjectPropertyExpression.class); int superSize = superProperties.size(); if (superSize == 1) { writeSpace(); write(PARENT_ATTR); writeSpace(); write(superProperties.iterator().next()); } else if (superSize > 1) { writeSpace(); write(PARENTS_ATTR); writeSpace(); flattenProperties(superProperties, null); } else { // right/left identity? // we only allow for either right or left identity axiom, // otherwise it is // expressed via role-inclusion axioms Set chainAxioms = getPropertyChainSubPropertyAxiomsFor(property); if (chainAxioms.size() == 1) { OWLSubPropertyChainOfAxiom axiom = chainAxioms .iterator().next(); if (isLeftIdentityAxiom(axiom, property)) { leftRightIdentityUsed.add(axiom); writeSpace(); write(LEFTIDENTITY_ATTR); write(axiom.getPropertyChain().get(0)); } else if (isRightIdentityAxiom(axiom, property)) { leftRightIdentityUsed.add(axiom); writeSpace(); write(RIGHTIDENTITY_ATTR); write(axiom.getPropertyChain().get(1)); } } } } else { if (properties.isEmpty()) { write(DEFINE_PRIMITIVE_ROLE); write(property); writeSpace(); } else { write(DEFINE_ROLE); write(property); OWLObjectPropertyExpression expr = properties.iterator() .next(); write(expr); properties.remove(expr); writeSpace(); } } if (isTransitive(property, ontology)) { writeSpace(); write(TRANSITIVE_ATTR); writeSpace(); write(TRUE); } if (isSymmetric(property, ontology)) { writeSpace(); write(SYMMETRIC_ATTR); writeSpace(); write(TRUE); } if (isReflexive(property, ontology)) { writeSpace(); write(REFLEXIVE_ATTR); writeSpace(); write(TRUE); } Iterator inverses = inverse( ontology.getInverseObjectPropertyAxioms(property), property) .iterator(); if (!inverses.hasNext()) { writeSpace(); write(INVERSE_ATTR); write(inverses.next()); } Collection desc = domain(ontology .getObjectPropertyDomainAxioms(property)); if (!desc.isEmpty()) { writeSpace(); write(DOMAIN_ATTR); flatten(desc, KRSSVocabulary.AND); } desc = range(ontology.getObjectPropertyRangeAxioms(property)); if (!desc.isEmpty()) { writeSpace(); write(RANGE_ATTR); flatten(desc, KRSSVocabulary.AND); } writeCloseBracket(); writeln(); while (inverses.hasNext()) { writeOpenBracket(); write(INVERSE); write(property); write(inverses.next()); writeOpenBracket(); writeln(); } for (OWLObjectPropertyExpression expr : properties) { writeOpenBracket(); write(ROLES_EQUIVALENT); write(property); write(expr); writeCloseBracket(); writeln(); } } for (OWLNamedIndividual individual : sort(ontology .getIndividualsInSignature())) { if (ignoreDeclarations) { if (ontology.getAxioms(individual, EXCLUDED).size() == 1 && ontology.getDeclarationAxioms(individual).size() == 1) { continue; } } writeOpenBracket(); write(DEFINE_INDIVIDUAL); write(individual); writeCloseBracket(); writeln(); } for (OWLAxiom axiom : ontology.getAxioms()) { axiom.accept(this); } try { writer.flush(); } catch (IOException io) { throw new OWLRuntimeException(io); } } @Override public void visit(OWLSubClassOfAxiom axiom) { // we only handle GCIs if (!(axiom.getSubClass() instanceof OWLClass)) { writeOpenBracket(); write(IMPLIES); write(axiom.getSubClass()); write(axiom.getSuperClass()); writeCloseBracket(); writeln(); } } @Override public void visit(OWLDisjointClassesAxiom axiom) { List descs = sort(axiom.getClassExpressions()); int size = descs.size(); if (size <= 1) { return; } for (int i = 0; i < size; i++) { for (int j = i + 1; j < size; j++) { writeOpenBracket(); write(DISJOINT); write(descs.get(i)); write(descs.get(j)); writeCloseBracket(); writeln(); } } } @Override public void visit(OWLEquivalentObjectPropertiesAxiom axiom) { List properties = sort(axiom .getProperties()); int size = properties.size(); for (int i = 0; i < size; i++) { for (int j = i + 1; j < size; j++) { writeOpenBracket(); write(ROLES_EQUIVALENT); write(properties.get(i)); write(properties.get(j)); writeCloseBracket(); writeln(); } } } @Override public void visit(OWLDisjointObjectPropertiesAxiom axiom) { List properties = sort(axiom .getProperties()); int size = properties.size(); if (size <= 1) { return; } for (int i = 0; i < size; i++) { for (int j = i + 1; j < size; j++) { writeOpenBracket(); write(DISJOINT_ROLES); write(properties.get(i)); write(properties.get(j)); writeCloseBracket(); writeln(); } } } @Override public void visit(OWLObjectPropertyAssertionAxiom axiom) { write(RELATED); write(axiom.getSubject()); write(axiom.getProperty()); write(axiom.getObject()); writeln(); } @Override public void visit(OWLSubObjectPropertyOfAxiom axiom) { if (!(axiom.getSubProperty() instanceof OWLObjectProperty)) { writeOpenBracket(); write(IMPLIES_ROLE); write(axiom.getSubProperty()); write(axiom.getSuperProperty()); writeCloseBracket(); writeln(); } } @Override public void visit(OWLEquivalentClassesAxiom axiom) { List descriptions = sort(axiom .getClassExpressions()); int size = descriptions.size(); if (size <= 1) { return; } for (int i = 0; i < size; i++) { for (int j = i + 1; j < size; j++) { writeOpenBracket(); write(EQUIVALENT); write(descriptions.get(i)); write(descriptions.get(j)); writeCloseBracket(); writeln(); } } } @Override public void visit(OWLSubPropertyChainOfAxiom axiom) { if (leftRightIdentityUsed.contains(axiom)) { return; } writeOpenBracket(); write(ROLE_INCLUSTION); writeSpace(); writeChain(axiom.getPropertyChain(), 0); writeSpace(); write(axiom.getSuperProperty()); writeCloseBracket(); writeln(); } protected void writeChain(List expressions, int i) { if (i == expressions.size() - 1) { write(expressions.get(i)); } else { writeOpenBracket(); write(COMPOSE); write(expressions.get(i)); writeChain(expressions, i + 1); writeCloseBracket(); } } @Override public void visit(OWLInverseObjectPropertiesAxiom axiom) { writeOpenBracket(); write(INVERSE); axiom.getFirstProperty().accept(this); axiom.getSecondProperty().accept(this); writeCloseBracket(); writeln(); } @Override public void visit(OWLClass desc) { write(desc.getIRI()); } @Override public void visit(OWLObjectOneOf ce) { writeOpenBracket(); write(ONE_OF); for (OWLIndividual individual : ce.getIndividuals()) { assert individual != null; write(individual); } writeCloseBracket(); } @Override public void visit(OWLObjectProperty property) { write(property.getIRI()); } @Override public void visit(OWLObjectInverseOf property) { writeOpenBracket(); write(INV); writeSpace(); property.getInverseProperty(); property.getInverse().accept(this); writeCloseBracket(); } protected static boolean isLeftIdentityAxiom( OWLSubPropertyChainOfAxiom axiom, OWLObjectProperty property) { if (axiom.getSuperProperty().equals(property)) { Iterator chain = axiom .getPropertyChain().iterator(); if (chain.hasNext()) { if (chain.next() instanceof OWLObjectProperty) { if (chain.hasNext() && chain.next().equals(property)) { return !chain.hasNext(); } } } } return false; } protected static boolean isRightIdentityAxiom( OWLSubPropertyChainOfAxiom axiom, OWLObjectProperty property) { if (axiom.getSuperProperty().equals(property)) { Iterator chain = axiom .getPropertyChain().iterator(); if (chain.hasNext()) { if (chain.next().equals(property)) { if (chain.hasNext()) { chain.next(); return !chain.hasNext(); } } } } return false; } protected Set getPropertyChainSubPropertyAxiomsFor(OWLPropertyExpression property) { Set axioms = new HashSet<>(); for (OWLSubPropertyChainOfAxiom axiom : ont .getAxioms(AxiomType.SUB_PROPERTY_CHAIN_OF)) { if (axiom.getSuperProperty().equals(property)) { axioms.add(axiom); } } return axioms; } protected void reset() { leftRightIdentityUsed.clear(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy