org.semanticweb.elk.reasoner.saturation.ReferenceSaturationState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elk-reasoner Show documentation
Show all versions of elk-reasoner Show documentation
The core ELK Reasoner package
/**
*
*/
package org.semanticweb.elk.reasoner.saturation;
/*
* #%L
* ELK Reasoner
* $Id:$
* $HeadURL:$
* %%
* Copyright (C) 2011 - 2012 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%
*/
import java.util.AbstractCollection;
import java.util.Collection;
import java.util.Iterator;
import java.util.NoSuchElementException;
import java.util.concurrent.atomic.AtomicInteger;
import org.semanticweb.elk.reasoner.indexing.model.IndexedClassExpression;
import org.semanticweb.elk.reasoner.indexing.model.IndexedContextRoot;
import org.semanticweb.elk.reasoner.indexing.model.IndexedObjectSomeValuesFrom;
import org.semanticweb.elk.reasoner.indexing.model.OntologyIndex;
import org.semanticweb.elk.reasoner.saturation.context.Context;
/**
* A {@link SaturationState} in which {@link Context}s are assigned to
* {@link IndexedClassExpression}s by references.
*
* @author Pavel Klinov
*
* [email protected]
*
* @author "Yevgeny Kazakov"
*
*/
class ReferenceSaturationState
extends AbstractSaturationState {
// the number of contexts created by this SaturationState
AtomicInteger contextCount = new AtomicInteger(0);
/**
*
* @param index
*/
public ReferenceSaturationState(OntologyIndex index) {
super(index, new MainContextFactory());
}
@Override
public Collection getContexts() {
return new AbstractCollection() {
@Override
public Iterator iterator() {
return new Iterator() {
Iterator extends IndexedClassExpression> ices = ontologyIndex
.getClassExpressions().iterator();
ExtendedContext nextContext;
ExtendedContext nextFillerContext;
{
seekNext();
}
void seekNext() {
while (ices.hasNext()) {
IndexedClassExpression nextIce = ices.next();
nextContext = nextIce.getContext();
if (nextIce instanceof IndexedObjectSomeValuesFrom) {
nextFillerContext = ((IndexedObjectSomeValuesFrom) nextIce)
.getRangeFiller().getContext();
if (nextFillerContext != null)
return;
}
if (nextContext != null)
return;
}
}
@Override
public boolean hasNext() {
return (nextContext != null
|| nextFillerContext != null);
}
@Override
public ExtendedContext next() {
ExtendedContext result;
if (nextContext != null) {
result = nextContext;
nextContext = null;
} else if (nextFillerContext != null) {
result = nextFillerContext;
nextFillerContext = null;
} else
throw new NoSuchElementException("No next context");
if (!hasNext())
seekNext();
return result;
}
@Override
public void remove() {
throw new UnsupportedOperationException(
"Removal not supported");
}
};
}
@Override
public boolean isEmpty() {
return !iterator().hasNext();
}
@Override
public int size() {
return contextCount.get();
}
};
}
@Override
public ExtendedContext getContext(IndexedContextRoot root) {
return root.getContext();
}
@Override
void resetContexts() {
int cc = contextCount.get();
if (cc == 0)
// everything is already done
return;
// else
if (contextCount.compareAndSet(cc, 0)) {
for (ExtendedContext context : getContexts()) {
context.getRoot().resetContext();
}
notifyContextsClear();
}
}
@Override
ExtendedContext setIfAbsent(ExtendedContext context) {
ExtendedContext previous = context.getRoot()
.setContextIfAbsent(context);
if (previous == null) {
contextCount.incrementAndGet();
notifyContextAddition(context);
}
return previous;
}
}