cz.cvut.kbss.ontodriver.owlapi.AxiomAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontodriver-owlapi Show documentation
Show all versions of ontodriver-owlapi Show documentation
OWLAPI-based implementation of the OntoDriver API
The newest version!
/*
* JOPA
* Copyright (C) 2024 Czech Technical University in Prague
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3.0 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.
*/
package cz.cvut.kbss.ontodriver.owlapi;
import cz.cvut.kbss.ontodriver.model.*;
import cz.cvut.kbss.ontodriver.owlapi.util.OwlapiUtils;
import org.semanticweb.owlapi.model.*;
/**
* Adapts OWLAPI axioms to JOPA (OntoDriver) axioms and vice versa.
*/
public class AxiomAdapter {
private final OWLDataFactory dataFactory;
public AxiomAdapter(OWLDataFactory dataFactory) {
this.dataFactory = dataFactory;
}
OWLAxiom toOwlClassAssertionAxiom(Axiom> axiom) {
final OWLClass owlClass = dataFactory.getOWLClass(IRI.create(axiom.getValue().stringValue()));
return dataFactory.getOWLClassAssertionAxiom(owlClass, toOWLIndividual(axiom.getSubject()));
}
public OWLAxiom toOwlObjectPropertyAssertionAxiom(Axiom> axiom) {
final OWLObjectProperty objectProperty = dataFactory
.getOWLObjectProperty(IRI.create(axiom.getAssertion().getIdentifier()));
final OWLNamedIndividual objectValue = dataFactory.getOWLNamedIndividual(
IRI.create(axiom.getValue().stringValue()));
return dataFactory.getOWLObjectPropertyAssertionAxiom(objectProperty, toOWLIndividual(axiom.getSubject()),
objectValue);
}
public OWLAxiom toOwlDataPropertyAssertionAxiom(Axiom> axiom) {
final OWLDataProperty dataProperty = dataFactory
.getOWLDataProperty(IRI.create(axiom.getAssertion().getIdentifier()));
final OWLLiteral dataValue = OwlapiUtils.createOWLLiteralFromValue(axiom.getValue().getValue(),
OwlapiUtils.getAssertionLanguage(axiom.getAssertion()));
return dataFactory
.getOWLDataPropertyAssertionAxiom(dataProperty, toOWLIndividual(axiom.getSubject()), dataValue);
}
OWLAxiom toOwlAnnotationPropertyAssertionAxiom(Axiom> axiom) {
final OWLAnnotationProperty annotationProperty = dataFactory.getOWLAnnotationProperty(IRI.create(
axiom.getAssertion().getIdentifier()));
final Object value = axiom.getValue().getValue();
final OWLAnnotationValue annotationValue;
if (!(value instanceof String && !axiom.getAssertion().hasLanguage()) && OwlapiUtils.isIndividualIri(value)) {
annotationValue = IRI.create(value.toString());
} else {
annotationValue = OwlapiUtils.createOWLLiteralFromValue(
axiom.getValue().getValue(), OwlapiUtils.getAssertionLanguage(axiom.getAssertion()));
}
return dataFactory
.getOWLAnnotationAssertionAxiom(annotationProperty, toOWLIndividual(axiom.getSubject()).getIRI(),
annotationValue);
}
private OWLNamedIndividual toOWLIndividual(NamedResource subject) {
return dataFactory.getOWLNamedIndividual(IRI.create(subject.getIdentifier()));
}
public Axiom createAxiom(NamedResource subject, Assertion assertion, V value) {
return new AxiomImpl<>(subject, assertion, new Value<>(value));
}
Axiom> toAxiom(NamedResource subject, OWLDataPropertyExpression dataProperty, OWLLiteral value) {
final Assertion assertion =
Assertion.createDataPropertyAssertion(dataProperty.asOWLDataProperty().getIRI().toURI(),
false);
return createAxiom(subject, assertion, OwlapiUtils.owlLiteralToValue(value));
}
Axiom> toAxiom(NamedResource subject, OWLObjectPropertyExpression objectProperty, OWLIndividual value) {
final Assertion assertion =
Assertion.createObjectPropertyAssertion(objectProperty.asOWLObjectProperty().getIRI().toURI(),
false);
final IRI target = value.asOWLNamedIndividual().getIRI();
return createAxiom(subject, assertion, NamedResource.create(target.toURI()));
}
Axiom> toAxiom(NamedResource subject, OWLAnnotationAssertionAxiom assertionAxiom) {
final Assertion assertion = Assertion
.createAnnotationPropertyAssertion(
assertionAxiom.getProperty().asOWLAnnotationProperty().getIRI().toURI(),
false);
if (assertionAxiom.getValue().asIRI().isPresent()) {
return createAxiom(subject, assertion, assertionAxiom.getValue().asIRI().get().toURI());
} else {
return createAxiom(subject, assertion, OwlapiUtils.owlLiteralToValue(
assertionAxiom.getValue().asLiteral().get()));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy