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

org.semanticweb.elk.reasoner.indexing.classes.StructuralIndexedComplexPropertyChainEntryImpl Maven / Gradle / Ivy

There is a newer version: 0.29.0
Show newest version
/*
 * #%L
 * ELK Reasoner
 * 
 * $Id$
 * $HeadURL$
 * %%
 * Copyright (C) 2011 Department of Computer Science, University of Oxford
 * %%
 * 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.
 * #L%
 */
package org.semanticweb.elk.reasoner.indexing.classes;

import org.semanticweb.elk.RevertibleAction;
import org.semanticweb.elk.reasoner.completeness.Feature;
import org.semanticweb.elk.reasoner.indexing.model.IndexedPropertyChain;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedObjectProperty;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableIndexedPropertyChain;
import org.semanticweb.elk.reasoner.indexing.model.ModifiableOntologyIndex;
import org.semanticweb.elk.reasoner.indexing.model.OccurrenceIncrement;
import org.semanticweb.elk.reasoner.indexing.model.StructuralIndexedComplexPropertyChainEntry;
import org.semanticweb.elk.reasoner.indexing.model.StructuralIndexedSubObject;
import org.semanticweb.elk.util.hashing.HashGenerator;

/**
 * Implements {@link StructuralIndexedComplexPropertyChainEntry}
 * 
 * @author "Yevgeny Kazakov"
 * 
 */
final class StructuralIndexedComplexPropertyChainEntryImpl extends
		ModifiableIndexedPropertyChainImpl>
		implements
		StructuralIndexedComplexPropertyChainEntry {

	private final ModifiableIndexedObjectProperty firstProperty_;

	private final ModifiableIndexedPropertyChain suffixChain_;

	/**
	 * Used for creating auxiliary inclusions during binarization.
	 * 
	 * @param firstProperty
	 * @param suffixChain
	 */
	public StructuralIndexedComplexPropertyChainEntryImpl(
			ModifiableIndexedObjectProperty firstProperty,
			ModifiableIndexedPropertyChain suffixChain) {
		super(structuralHashCode(firstProperty, suffixChain));
		this.firstProperty_ = firstProperty;
		this.suffixChain_ = suffixChain;
	}

	@Override
	public final ModifiableIndexedObjectProperty getFirstProperty() {
		return firstProperty_;
	}

	@Override
	public final ModifiableIndexedPropertyChain getSuffixChain() {
		return suffixChain_;
	}

	@Override
	public RevertibleAction getIndexingAction(ModifiableOntologyIndex index,
			OccurrenceIncrement increment) {
		return RevertibleAction
				.create(() -> !occurs()
						&& increment.totalIncrement > 0,
						() -> suffixChain_.addRightChain(this),
						() -> suffixChain_.removeRightChain(this))
				.then(RevertibleAction.create(
						() -> !occurs()
								&& increment.totalIncrement > 0,
						() -> firstProperty_.addLeftChain(this),
						() -> firstProperty_.removeLeftChain(this)))
				.then(super.getIndexingAction(index, increment))
				.then(RevertibleAction.create(
						() -> !occurs()
								&& increment.totalIncrement < 0,
						() -> suffixChain_.removeRightChain(this),
						() -> suffixChain_.addRightChain(this)))
				.then(RevertibleAction.create(
						() -> !occurs()
								&& increment.totalIncrement < 0,
						() -> firstProperty_.removeLeftChain(this),
						() -> firstProperty_.addLeftChain(this)))
				.then(RevertibleAction.create(() -> {
					index.occurrenceChanged(Feature.OBJECT_PROPERTY_CHAIN,
							increment.totalIncrement);
					return true;
				}, () -> {
					index.occurrenceChanged(Feature.OBJECT_PROPERTY_CHAIN,
							-increment.totalIncrement);
				}));

	}

	/**
	 * @param ipc
	 * @return the property chain which is composable with the given property in
	 *         this chain or null
	 */
	public final IndexedPropertyChain getComposable(IndexedPropertyChain ipc) {
		return ipc == firstProperty_ ? suffixChain_
				: (ipc == suffixChain_ ? firstProperty_ : null);
	}

	static int structuralHashCode(ModifiableIndexedObjectProperty firstProperty,
			ModifiableIndexedPropertyChain suffixChain) {
		return HashGenerator.combinedHashCode(
				StructuralIndexedComplexPropertyChainEntryImpl.class, firstProperty,
				suffixChain);
	}

	@Override
	public StructuralIndexedComplexPropertyChainEntryImpl structuralEquals(
			Object second) {
		if (this == second) {
			return this;
		}
		if (second instanceof StructuralIndexedComplexPropertyChainEntryImpl) {
			StructuralIndexedComplexPropertyChainEntryImpl secondEntry = (StructuralIndexedComplexPropertyChainEntryImpl) second;
			if (this.getFirstProperty().equals(secondEntry.getFirstProperty())
					&& this.getSuffixChain()
							.equals(secondEntry.getSuffixChain()))
				return secondEntry;
		}
		// else
		return null;
	}

	@Override
	public final  O accept(IndexedPropertyChain.Visitor visitor) {
		return visitor.visit(this);
	}

	@Override
	public  O accept(StructuralIndexedSubObject.Visitor visitor) {
		return visitor.visit(this);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy