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

org.semanticweb.owlapi.util.OWLObjectWalker 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 2014, 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.
 * 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 static org.semanticweb.owlapi.util.OWLAPIPreconditions.checkNotNull;
import static org.semanticweb.owlapi.util.OWLAPIPreconditions.verifyNotNull;
import static org.semanticweb.owlapi.util.OWLAPIStreamUtils.asList;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.stream.Stream;
import javax.annotation.Nullable;
import org.semanticweb.owlapi.model.OWLAnnotation;
import org.semanticweb.owlapi.model.OWLAxiom;
import org.semanticweb.owlapi.model.OWLClassExpression;
import org.semanticweb.owlapi.model.OWLDataRange;
import org.semanticweb.owlapi.model.OWLObject;
import org.semanticweb.owlapi.model.OWLObjectVisitor;
import org.semanticweb.owlapi.model.OWLObjectVisitorEx;
import org.semanticweb.owlapi.model.OWLOntology;

/**
 * @param  the returned type
 * @author Matthew Horridge, The University Of Manchester, Information Management Group
 * @since 2.2.0
 */
public class OWLObjectWalker {

    protected final boolean visitDuplicates;
    private final Collection objects;
    private final List classExpressionPath = new ArrayList<>();
    private final List dataRangePath = new ArrayList<>();
    @Nullable
    protected OWLOntology ontology;
    @Nullable
    protected OWLObjectVisitor visitor;
    @Nullable
    protected OWLAxiom ax;
    @Nullable
    protected OWLAnnotation annotation;
    @Nullable
    private OWLObjectVisitorEx visitorEx;
    private StructureWalker walker;

    /**
     * @param objects objects to visit
     */
    public OWLObjectWalker(Collection objects) {
        this(objects.stream(), true, AnnotationWalkingControl.WALK_ONTOLOGY_ANNOTATIONS_ONLY);
    }

    /**
     * @param objects objects to visit
     */
    public OWLObjectWalker(Stream objects) {
        this(objects, true, AnnotationWalkingControl.WALK_ONTOLOGY_ANNOTATIONS_ONLY);
    }

    /**
     * @param walkDuplicates true if duplicates should be visited
     * @param objects objects to visit
     */
    public OWLObjectWalker(Collection objects, boolean walkDuplicates) {
        this(objects.stream(), walkDuplicates,
            AnnotationWalkingControl.WALK_ONTOLOGY_ANNOTATIONS_ONLY);
    }

    /**
     * @param walkDuplicates true if duplicates should be visited
     * @param objects objects to visit
     */
    public OWLObjectWalker(Stream objects, boolean walkDuplicates) {
        this(objects, walkDuplicates, AnnotationWalkingControl.WALK_ONTOLOGY_ANNOTATIONS_ONLY);
    }

    /**
     * @param walkDuplicates true if duplicates should be visited
     * @param objects objects to visit
     * @param walkFlag control which annotations to visit
     */
    public OWLObjectWalker(Stream objects, boolean walkDuplicates,
        AnnotationWalkingControl walkFlag) {
        this.objects = asList(checkNotNull(objects, "objects cannot be null"));
        this.visitDuplicates = walkDuplicates;
        this.walker = new StructureWalker<>(this, walkFlag);
    }

    /**
     * @param visitDuplicates true if duplicates should be visited
     * @param objects the set of objects to visit
     * @param walkFlag control which annotations to visit
     */
    public OWLObjectWalker(Collection objects, boolean visitDuplicates,
        AnnotationWalkingControl walkFlag) {
        this(objects.stream(), visitDuplicates, walkFlag);
    }

    @Nullable
    protected Object passToVisitor(OWLObject o) {
        if (visitor != null) {
            o.accept(visitor);
            return null;
        }
        return o.accept(verifyNotNull(visitorEx));
    }

    protected void setVisitor(OWLObjectVisitorEx visitor) {
        visitorEx = visitor;
        this.visitor = null;
    }

    protected void setVisitor(OWLObjectVisitor visitor) {
        this.visitor = visitor;
        visitorEx = null;
    }

    /**
     * @param walker the structure walker to use with this object walker
     */
    public void setStructureWalker(StructureWalker walker) {
        this.walker = walker;
    }

    /**
     * @param v visitor to use over the objects
     */
    public void walkStructure(OWLObjectVisitorEx v) {
        setVisitor(checkNotNull(v, "v cannot be null"));
        objects.forEach(o -> o.accept(walker));
    }

    /**
     * @param v visitor to use over the objects
     */
    public void walkStructure(OWLObjectVisitor v) {
        setVisitor(checkNotNull(v, "v cannot be null"));
        objects.forEach(o -> o.accept(walker));
    }

    /**
     * Gets the last ontology to be visited.
     *
     * @return The last ontology to be visited
     */
    @Nullable
    public OWLOntology getOntology() {
        return ontology;
    }

    /**
     * Gets the last axiom to be visited.
     *
     * @return The last axiom to be visited, or {@code null} if an axiom has not be visited
     */
    @Nullable
    public OWLAxiom getAxiom() {
        return ax;
    }

    /**
     * Allow the structure walker to set the current axiom.
     *
     * @param axiom the axiom to set
     */
    public void setAxiom(@Nullable OWLAxiom axiom) {
        ax = axiom;
    }

    /**
     * Gets the last annotation to be visited.
     *
     * @return The last annotation to be visited (may be {@code null})
     */
    @Nullable
    public OWLAnnotation getAnnotation() {
        return annotation;
    }

    /**
     * Allow the structure walker to set the current annotation.
     *
     * @param node the annotation to set
     */
    public void setAnnotation(OWLAnnotation node) {
        annotation = node;
    }

    /**
     * Gets the current class expression path. The current class expression path
     * is a list of class expressions that represents the containing expressions
     * for the current class expressions. The first item in the path (list) is
     * the root class expression that was visited. For i between 0 and
     * pathLength, the item at index i+1 is a direct sub-expression of the item
     * at index i. The last item in the path is the current class expression
     * being visited.
     *
     * @return A list of class expressions that represents the path of class expressions, with the
     * root of the class expression being the first element in the list.
     */
    public List getClassExpressionPath() {
        return new ArrayList<>(classExpressionPath);
    }

    /**
     * Determines if a particular class expression is the first (or root) class
     * expression in the current class expression path.
     *
     * @param classExpression The class expression
     * @return {@code true} if the specified class expression is the first class expression in the
     * current class expression path, otherwise {@code false} ({@code false} if the path is empty)
     */
    public boolean isFirstClassExpressionInPath(OWLClassExpression classExpression) {
        checkNotNull(classExpression, "classExpression cannot be null");
        return !classExpressionPath.isEmpty() && classExpressionPath.get(0).equals(classExpression);
    }

    /**
     * Pushes a class expression onto the class expression path.
     *
     * @param ce The class expression to be pushed onto the path
     */
    protected void pushClassExpression(OWLClassExpression ce) {
        checkNotNull(ce, "ce cannot be null");
        classExpressionPath.add(ce);
    }

    /**
     * Pops a class expression from the class expression path. If the path is
     * empty then this method has no effect.
     */
    protected void popClassExpression() {
        if (!classExpressionPath.isEmpty()) {
            classExpressionPath.remove(classExpressionPath.size() - 1);
        }
    }

    /**
     * Gets the current data range path. The current data range path is a list
     * of data ranges that represents the containing expressions for the current
     * data ranges. The first item in the path (list) is the root data range
     * that was visited. For i between 0 and pathLength, the item at index i+1
     * is a direct sub-expression of the item at index i. The last item in the
     * path is the current data range being visited.
     *
     * @return A list of data ranges that represents the path of data ranges, with the root of the
     * data range being the first element in the list.
     */
    public List getDataRangePath() {
        return new ArrayList<>(dataRangePath);
    }

    /**
     * Pushes a data range on to the data range path.
     *
     * @param dr The data range to be pushed onto the path
     */
    protected void pushDataRange(OWLDataRange dr) {
        checkNotNull(dr, "dr cannot be null");
        dataRangePath.add(dr);
    }

    /**
     * Pops a data range from the data range expression path. If the path is
     * empty then this method has no effect.
     */
    protected void popDataRange() {
        if (!dataRangePath.isEmpty()) {
            dataRangePath.remove(dataRangePath.size() - 1);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy