TrimToTarget.java
/*******************************************************************************
* Copyright (c) 2020 Eclipse RDF4J contributors.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
package org.eclipse.rdf4j.sail.shacl.ast.planNodes;
import java.util.Objects;
import org.apache.commons.text.StringEscapeUtils;
import org.eclipse.rdf4j.common.iteration.CloseableIteration;
import org.eclipse.rdf4j.sail.shacl.wrapper.data.ConnectionsGroup;
public class TrimToTarget implements PlanNode {
private StackTraceElement[] stackTrace;
PlanNode parent;
private boolean printed = false;
private ValidationExecutionLogger validationExecutionLogger;
boolean keepPath = false;
public TrimToTarget(PlanNode parent, ConnectionsGroup connectionsGroup) {
this.parent = PlanNodeHelper.handleSorting(this, parent, connectionsGroup);
// this.stackTrace = Thread.currentThread().getStackTrace();
}
@Override
public CloseableIteration<? extends ValidationTuple> iterator() {
return new LoggingCloseableIteration(this, validationExecutionLogger) {
private CloseableIteration<? extends ValidationTuple> parentIterator;
@Override
protected void init() {
parentIterator = parent.iterator();
}
@Override
public void localClose() {
if (parentIterator != null) {
parentIterator.close();
}
}
@Override
protected boolean localHasNext() {
return parentIterator.hasNext();
}
@Override
protected ValidationTuple loggingNext() {
return parentIterator.next().trimToTarget();
}
};
}
@Override
public int depth() {
return parent.depth() + 1;
}
@Override
public void getPlanAsGraphvizDot(StringBuilder stringBuilder) {
if (printed) {
return;
}
printed = true;
stringBuilder.append(getId() + " [label=\"" + StringEscapeUtils.escapeJava(this.toString()) + "\"];")
.append("\n");
stringBuilder.append(parent.getId() + " -> " + getId()).append("\n");
parent.getPlanAsGraphvizDot(stringBuilder);
}
@Override
public String getId() {
return System.identityHashCode(this) + "";
}
@Override
public void receiveLogger(ValidationExecutionLogger validationExecutionLogger) {
this.validationExecutionLogger = validationExecutionLogger;
parent.receiveLogger(validationExecutionLogger);
}
@Override
public boolean producesSorted() {
return false;
}
@Override
public boolean requiresSorted() {
return false;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TrimToTarget that = (TrimToTarget) o;
return keepPath == that.keepPath &&
parent.equals(that.parent);
}
@Override
public int hashCode() {
return Objects.hash(parent, keepPath);
}
@Override
public String toString() {
return "TrimToTarget{" +
"keepPath=" + keepPath +
'}';
}
}