/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2009, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.data.memory; import java.util.NoSuchElementException; import org.geotoolkit.data.FeatureCollection; import org.geotoolkit.data.FeatureIterator; import org.geotoolkit.data.FeatureReader; import org.geotoolkit.data.FeatureStoreRuntimeException; import org.geotoolkit.data.FeatureWriter; import org.geotoolkit.factory.Hints; import org.opengis.feature.Feature; import org.opengis.feature.FeatureType; /** * Basic support for an empty FeatureIterator. * * @author Johann Sorel (Geomatys) * @module */ public class GenericEmptyFeatureIterator implements FeatureIterator { /** * Creates a new instance of GenericEmptyFeatureIterator */ private GenericEmptyFeatureIterator() { } /** * {@inheritDoc } */ @Override public Feature next() throws FeatureStoreRuntimeException { throw new NoSuchElementException("No such Feature exists"); } /** * {@inheritDoc } */ @Override public void close() throws FeatureStoreRuntimeException { } /** * {@inheritDoc } */ @Override public boolean hasNext() throws FeatureStoreRuntimeException { return false; } @Override public void remove() { throw new UnsupportedOperationException("Can not remove empty feature iterator."); } /** * An empty FeatureReader of the given type. * * @param <T> extends FeatureType * @param <F> extends Feature * @param <R> extends FeatureReader<T,F> */ private static final class GenericEmptyFeatureReader extends GenericEmptyFeatureIterator implements FeatureReader{ private final FeatureType type; private GenericEmptyFeatureReader(final FeatureType type){ this.type = type; } @Override public FeatureType getFeatureType() { return type; } } /** * An empty FeatureWriter of the given type. * * @param <T> extends FeatureType * @param <F> extends Feature * @param <R> extends FeatureWriter<T,F> */ private static final class GenericEmptyFeatureWriter extends GenericEmptyFeatureIterator implements FeatureWriter{ private final FeatureType type; private GenericEmptyFeatureWriter(final FeatureType type){ this.type = type; } @Override public FeatureType getFeatureType() { return type; } @Override public void write() throws FeatureStoreRuntimeException { throw new FeatureStoreRuntimeException("FeatureWriter is empty and does not support write()"); } } private static final class GenericEmptyFeatureCollection extends WrapFeatureCollection{ private GenericEmptyFeatureCollection(final FeatureCollection original){ super(original); } @Override public FeatureIterator iterator(final Hints hints) throws FeatureStoreRuntimeException { return createReader(getOriginalFeatureCollection().getFeatureType()); } @Override protected Feature modify(Feature original) throws FeatureStoreRuntimeException { throw new UnsupportedOperationException("should not have been called."); } } /** * Create an empty FeatureReader of the given type. * @param type FeatureType can be null */ public static FeatureReader createReader(final FeatureType type){ return new GenericEmptyFeatureReader(type); } /** * Create an empty FeatureWriter of the given type. * @param type FeatureType can be null */ public static FeatureWriter createWriter(final FeatureType type){ return new GenericEmptyFeatureWriter(type); } /** * Create an empty FeatureIterator of the given type. */ public static FeatureIterator createIterator(){ return new GenericEmptyFeatureIterator(); } /** * Create an empty FeaturCollection wrapping the collection. */ public static FeatureCollection wrap(final FeatureCollection original){ return new GenericEmptyFeatureCollection(original); } }