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

org.semanticweb.owlapi.ConvertPropertyAssertionsToAnnotations Maven / Gradle / Ivy

There is a newer version: 3.4.9.2-ansell
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 (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, The 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;/*
* Copyright (C) 2007, University of Manchester
*
* Modifications to the initial code base are copyright of their
* respective authors, or their employers as appropriate.  Authorship
* of the modifications may be determined from the ChangeLog placed at
* the end of this file.
*
* 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 2.1 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; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/


import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import org.semanticweb.owlapi.model.AddAxiom;
import org.semanticweb.owlapi.model.OWLAnnotation;
import org.semanticweb.owlapi.model.OWLAnnotationAssertionAxiom;
import org.semanticweb.owlapi.model.OWLAxiom;
import org.semanticweb.owlapi.model.OWLClassAssertionAxiom;
import org.semanticweb.owlapi.model.OWLDataFactory;
import org.semanticweb.owlapi.model.OWLDataProperty;
import org.semanticweb.owlapi.model.OWLDataPropertyAssertionAxiom;
import org.semanticweb.owlapi.model.OWLNamedIndividual;
import org.semanticweb.owlapi.model.OWLOntology;
import org.semanticweb.owlapi.model.OWLOntologyChange;
import org.semanticweb.owlapi.model.RemoveAxiom;

/**
 * Author: Matthew Horridge
* The University Of Manchester
* Bio-Health Informatics Group
* Date: 23-Jul-2007

*

* Given a set of ontologies, this composite change will convert all property assertion * axioms whose subject is a 'punned' individual (i.e. an individual that shares a name * with a class), removes these axioms and replaces them with annotations on the class * that shares the same name as the individual. For example for a class A and an individual * A, the data property assertion hasX(A, "Val") would be converted to an entity annotation on * the class A with an annotation URI of "hasX" and a value of "Val". *

* This composite change supports refactoring an ontology where punning was used to simulate * annotations on a class rather than using actual annotations on a class. */ public class ConvertPropertyAssertionsToAnnotations extends AbstractCompositeOntologyChange { private final Set ontologies; private List changes; /** * @param dataFactory factory to use * @param ontologies ontologies to change */ public ConvertPropertyAssertionsToAnnotations(OWLDataFactory dataFactory, Set ontologies) { super(dataFactory); this.ontologies = ontologies; generateChanges(); } private void generateChanges() { changes = new ArrayList(); Set individuals = new HashSet(); for (OWLOntology ont : ontologies) { individuals.addAll(ont.getIndividualsInSignature()); } Set convertedDataProperties = new HashSet(); for (OWLNamedIndividual ind : individuals) { boolean punned = false; for (OWLOntology ont : ontologies) { if (ont.containsClassInSignature(ind.getIRI())) { punned = true; break; } } if (!punned) { // Next individual continue; } for (OWLOntology ont : ontologies) { for (OWLDataPropertyAssertionAxiom ax : ont.getDataPropertyAssertionAxioms(ind)) { if (!ax.getProperty().isAnonymous()) { changes.add(new RemoveAxiom(ont, ax)); OWLDataFactory df = getDataFactory(); OWLAnnotation anno = df.getOWLAnnotation(df.getOWLAnnotationProperty(ax.getProperty().asOWLDataProperty().getIRI()), ax.getObject()); OWLAnnotationAssertionAxiom annoAx = df.getOWLAnnotationAssertionAxiom(ind.getIRI(), anno); changes.add(new AddAxiom(ont, annoAx)); convertedDataProperties.add((OWLDataProperty) ax.getProperty()); } } } for (OWLOntology ont : ontologies) { for (OWLAxiom ax : ont.getDeclarationAxioms(ind)) { changes.add(new RemoveAxiom(ont, ax)); } for (OWLClassAssertionAxiom ax : ont.getClassAssertionAxioms(ind)) { changes.add(new RemoveAxiom(ont, ax)); } } } for (OWLDataProperty prop : convertedDataProperties) { for (OWLOntology ont : ontologies) { for (OWLAxiom ax : ont.getDeclarationAxioms(prop)) { changes.add(new RemoveAxiom(ont, ax)); } for (OWLAxiom ax : ont.getAxioms(prop)) { changes.add(new RemoveAxiom(ont, ax)); } } } } @Override public List getChanges() { return changes; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy