org.semanticweb.elk.reasoner.tracing.RecursiveTraceUnwinder Maven / Gradle / Ivy
/*
* #%L
* ELK Reasoner
* $Id:$
* $HeadURL:$
* %%
* Copyright (C) 2011 - 2014 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.tracing;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Set;
import org.semanticweb.elk.owl.visitors.DummyElkAxiomVisitor;
/**
* Recursively visits inferences which were used to produce a given conclusion.
* It stops when the inference visitors passed by the outer code returns
* {@code false} for a particular inference.
*
*
* @author Pavel Klinov
*
* [email protected]
*/
public class RecursiveTraceUnwinder implements TraceUnwinder {
private final TracingProof proof_;
private final Queue innferencesToDo_ = new LinkedList();
public RecursiveTraceUnwinder(TracingProof proof) {
this.proof_ = proof;
}
@Override
public void accept(final Conclusion conclusion,
final TracingInference.Visitor inferenceVisitor) {
final Set seenInferences = new HashSet();
// should be empty anyways
innferencesToDo_.clear();
addToQueue(conclusion, seenInferences);
// this visitor visits all premises and putting them into the todo queue
TracingInferencePremiseVisitor> premiseVisitor = new TracingInferencePremiseVisitor(
new DummyConclusionVisitor() {
@Override
protected Void defaultVisit(Conclusion newConclusion) {
addToQueue(newConclusion, seenInferences);
return null;
}
}, new DummyElkAxiomVisitor());
for (;;) {
// take the first element
final TracingInference next = innferencesToDo_.poll();
if (next == null) {
break;
}
// user visitor
if (next.accept(inferenceVisitor)) {
// visiting premises
next.accept(premiseVisitor);
}
}
}
private void addToQueue(final Conclusion conclusion,
final Set seenInferences) {
boolean derived = false;
// finding all inferences that produced the given conclusion (if we are
// here, the inference must have premises, i.e. it's not an
// initialization inference)
for (TracingInference inference : proof_.getInferences(conclusion)) {
if (!seenInferences.contains(inference)) {
seenInferences.add(inference);
innferencesToDo_.add(inference);
}
derived = true;
}
if (!derived) {
handleUntraced(conclusion);
}
}
protected void handleUntraced(
@SuppressWarnings("unused") Conclusion untraced) {
// no-op
}
}