org.eclipse.rdf4j.sail.helpers.TupleExprWrapperIteration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdf4j-sail-api Show documentation
Show all versions of rdf4j-sail-api Show documentation
RDF Storage And Inference Layer ("Sail") API.
The newest version!
/*******************************************************************************
* Copyright (c) 2023 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.helpers;
import java.util.stream.Stream;
import org.eclipse.rdf4j.common.iteration.CloseableIteration;
import org.eclipse.rdf4j.query.BindingSet;
import org.eclipse.rdf4j.query.algebra.TupleExpr;
/**
* This iteration is used to debug issues with the TupleExpr that was used to generate the wrapped iteration.
* AbstractSailConnection will use this class when evaluating a query if assertions are enabled.
*
* @author Håvard M. Ottestad
*/
class TupleExprWrapperIteration implements CloseableIteration {
private final CloseableIteration delegate;
private final TupleExpr tupleExpr;
private final TupleExpr tupleExprClone;
public TupleExprWrapperIteration(CloseableIteration delegate, TupleExpr tupleExpr) {
this.delegate = delegate;
this.tupleExpr = tupleExpr;
this.tupleExprClone = tupleExpr.clone();
}
@Override
public Stream stream() {
return delegate.stream();
}
@Override
public void close() {
delegate.close();
}
@Override
public boolean hasNext() {
return delegate.hasNext();
}
@Override
public T next() {
return delegate.next();
}
@Override
public void remove() {
delegate.remove();
}
public TupleExpr getTupleExpr() {
return tupleExpr;
}
public TupleExpr getTupleExprClone() {
return tupleExprClone;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy