SailCloseableIteration.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.repository.sail;
import org.eclipse.rdf4j.common.iteration.CloseableIteration;
import org.eclipse.rdf4j.repository.RepositoryException;
import org.eclipse.rdf4j.sail.SailException;
/**
* @author Herko ter Horst
*/
class SailCloseableIteration<E> implements CloseableIteration<E> {
private final CloseableIteration<? extends E> iter;
public SailCloseableIteration(CloseableIteration<? extends E> iter) {
this.iter = iter;
}
@Override
public void close() {
try {
iter.close();
} catch (Exception e) {
throw convert(e);
}
}
@Override
public boolean hasNext() {
try {
return iter.hasNext();
} catch (Exception e) {
throw convert(e);
}
}
@Override
public E next() {
try {
return iter.next();
} catch (Exception e) {
throw convert(e);
}
}
@Override
public void remove() {
try {
iter.remove();
} catch (Exception e) {
throw convert(e);
}
}
protected RepositoryException convert(Exception e) {
if (e instanceof SailException) {
return new RepositoryException(e);
} else if (e instanceof RuntimeException) {
throw (RuntimeException) e;
} else if (e == null) {
throw new IllegalArgumentException("e must not be null");
} else {
throw new IllegalArgumentException("Unexpected exception type: " + e.getClass());
}
}
}