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

uk.ac.manchester.cs.owl.owlapi.SWRLRuleImpl Maven / Gradle / Ivy

There is a newer version: 5.5.1
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 uk.ac.manchester.cs.owl.owlapi;

import static org.semanticweb.owlapi.util.OWLAPIPreconditions.checkNotNull;
import static org.semanticweb.owlapi.util.OWLAPIStreamUtils.asList;
import static org.semanticweb.owlapi.util.OWLAPIStreamUtils.asSet;

import java.util.ArrayList;
import java.util.Collection;
import java.util.LinkedHashSet;
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.SWRLAtom;
import org.semanticweb.owlapi.model.SWRLClassAtom;
import org.semanticweb.owlapi.model.SWRLObject;
import org.semanticweb.owlapi.model.SWRLObjectPropertyAtom;
import org.semanticweb.owlapi.model.SWRLObjectVisitorEx;
import org.semanticweb.owlapi.model.SWRLRule;
import org.semanticweb.owlapi.model.SWRLVariable;
import org.semanticweb.owlapi.util.SWRLVariableExtractor;

/**
 * @author Matthew Horridge, The University Of Manchester, Bio-Health Informatics Group
 * @since 2.0.0
 */
public class SWRLRuleImpl extends OWLLogicalAxiomImpl implements SWRLRule {

    protected static final AtomSimplifier ATOM_SIMPLIFIER = new AtomSimplifier();
    private final LinkedHashSet head;
    private final LinkedHashSet body;
    private final boolean containsAnonymousClassExpressions;

    /**
     * @param body rule body
     * @param head rule head
     * @param annotations annotations on the axiom
     */
    public SWRLRuleImpl(Collection body, Collection head,
        Collection annotations) {
        super(annotations);
        this.head = new LinkedHashSet<>(checkNotNull(head, "head cannot be null"));
        this.body = new LinkedHashSet<>(checkNotNull(body, "body cannot be null"));
        containsAnonymousClassExpressions = hasAnon();
    }

    /**
     * @param body rule body
     * @param head rule head
     */
    public SWRLRuleImpl(Collection body, Collection head) {
        this(body, head, NO_ANNOTATIONS);
    }

    @Override
    @SuppressWarnings("unchecked")
    public SWRLRule getAxiomWithoutAnnotations() {
        if (!isAnnotated()) {
            return this;
        }
        return new SWRLRuleImpl(body, head, NO_ANNOTATIONS);
    }

    @Override
    @SuppressWarnings("unchecked")
    public  T getAnnotatedAxiom(Stream anns) {
        return (T) new SWRLRuleImpl(body, head, mergeAnnos(anns));
    }

    @Override
    public Stream variables() {
        return accept(new SWRLVariableExtractor()).stream();
    }

    private boolean hasAnon() {
        return classAtomPredicates().anyMatch(OWLClassExpression::isAnonymous);
    }

    @Override
    public boolean containsAnonymousClassExpressions() {
        return containsAnonymousClassExpressions;
    }

    @Override
    public Stream classAtomPredicates() {
        return Stream.concat(head(), body()).filter(c -> c instanceof SWRLClassAtom)
            .map(c -> ((SWRLClassAtom) c).getPredicate()).distinct().sorted();
    }

    @Override
    public Stream body() {
        return body.stream();
    }

    @Override
    public Stream head() {
        return head.stream();
    }

    @Override
    public List bodyList() {
        return new ArrayList<>(body);
    }

    @Override
    public List headList() {
        return new ArrayList<>(head);
    }

    @Override
    public SWRLRule getSimplified() {
        return (SWRLRule) accept(ATOM_SIMPLIFIER);
    }

    @Override
    public boolean equals(@Nullable Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (!(obj instanceof SWRLRule)) {
            return false;
        }
        // For same implementation instances, no need to create or sort sets
        if (obj instanceof SWRLRuleImpl) {
            SWRLRuleImpl other = (SWRLRuleImpl) obj;
            return body.equals(other.body) && head.equals(other.head)
                && annotations.equals(other.annotationsAsList());
        }
        // For different implementations, just use sets, do not sort
        SWRLRule other = (SWRLRule) obj;
        return body.equals(asSet(other.body())) && head.equals(asSet(other.head()))
            && annotations.equals(other.annotationsAsList());
    }

    @Override
    public int hashCode() {
        return super.hashCode();
    }

    protected static class AtomSimplifier implements SWRLObjectVisitorEx {

        @Override
        public SWRLObject doDefault(Object o) {
            return (SWRLObject) o;
        }

        @Override
        public SWRLRule visit(SWRLRule node) {
            List nodebody = asList(node.body().map(a -> (SWRLAtom) a.accept(this)));
            List nodehead = asList(node.head().map(a -> (SWRLAtom) a.accept(this)));
            return new SWRLRuleImpl(nodebody, nodehead, NO_ANNOTATIONS);
        }

        @Override
        public SWRLObjectPropertyAtom visit(SWRLObjectPropertyAtom node) {
            return node.getSimplified();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy