SailTripleSource.java
/*******************************************************************************
* Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others.
*
* 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.evaluation;
import org.eclipse.rdf4j.common.iteration.CloseableIteration;
import org.eclipse.rdf4j.model.IRI;
import org.eclipse.rdf4j.model.Resource;
import org.eclipse.rdf4j.model.Statement;
import org.eclipse.rdf4j.model.Value;
import org.eclipse.rdf4j.model.ValueFactory;
import org.eclipse.rdf4j.query.QueryEvaluationException;
import org.eclipse.rdf4j.query.algebra.evaluation.TripleSource;
import org.eclipse.rdf4j.sail.SailConnection;
import org.eclipse.rdf4j.sail.SailException;
import org.eclipse.rdf4j.sail.TripleSourceIterationWrapper;
public class SailTripleSource implements TripleSource {
private final SailConnection conn;
private final boolean includeInferred;
private final ValueFactory vf;
public SailTripleSource(SailConnection conn, boolean includeInferred, ValueFactory valueFactory) {
this.conn = conn;
this.includeInferred = includeInferred;
this.vf = valueFactory;
}
@Override
public CloseableIteration<? extends Statement, QueryEvaluationException> getStatements(Resource subj, IRI pred,
Value obj, Resource... contexts) throws QueryEvaluationException {
CloseableIteration<? extends Statement, SailException> iter = null;
try {
iter = conn.getStatements(subj, pred, obj, includeInferred, contexts);
return new TripleSourceIterationWrapper(iter);
} catch (Throwable t) {
if (iter != null) {
iter.close();
}
if (t instanceof SailException) {
throw new QueryEvaluationException(t);
}
throw t;
}
}
@Override
public ValueFactory getValueFactory() {
return vf;
}
}