IntersectionQueryEvaluationStep.java
/*******************************************************************************
* Copyright (c) 2021 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.query.algebra.evaluation.impl.evaluationsteps;
import java.util.function.Function;
import java.util.function.Supplier;
import org.eclipse.rdf4j.collection.factory.api.CollectionFactory;
import org.eclipse.rdf4j.common.iteration.CloseableIteration;
import org.eclipse.rdf4j.common.iteration.IntersectIteration;
import org.eclipse.rdf4j.query.BindingSet;
import org.eclipse.rdf4j.query.algebra.evaluation.QueryEvaluationStep;
/**
* A step that prepares the arguments of an Intersection operator before execution.
*/
public class IntersectionQueryEvaluationStep implements QueryEvaluationStep {
private final QueryEvaluationStep leftArg;
private final Function<BindingSet, DelayedEvaluationIteration> rightArgDelayed;
private final Supplier<CollectionFactory> cfs;
public IntersectionQueryEvaluationStep(QueryEvaluationStep leftArg, QueryEvaluationStep rightArg,
Supplier<CollectionFactory> cfs) {
this.cfs = cfs;
this.leftArg = leftArg;
rightArgDelayed = bs -> new DelayedEvaluationIteration(rightArg, bs);
}
@Override
public CloseableIteration<BindingSet> evaluate(BindingSet bs) {
CollectionFactory cf = cfs.get();
return new IntersectIteration<>(leftArg.evaluate(bs), rightArgDelayed.apply(bs), cf::createSetOfBindingSets) {
@Override
protected void handleClose() {
try {
cf.close();
} finally {
super.handleClose();
}
}
};
}
}