thredds.inventory.partition.PartitionManagerFromIndexList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdm Show documentation
Show all versions of cdm Show documentation
The NetCDF-Java Library is a Java interface to NetCDF files,
as well as to many other types of scientific data formats.
The newest version!
package thredds.inventory.partition;
import thredds.featurecollection.FeatureCollectionConfig;
import thredds.filesystem.MFileOS;
import thredds.filesystem.MFileOS7;
import thredds.inventory.*;
import ucar.nc2.util.CloseableIterator;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/**
* A PartitionManager from a list of index files.
* Used in GribCollectionBuilder with multiple runtimes.
* Index Files are already in the cache.
*
* @author John
* @since 2/5/14 `
*/
public class PartitionManagerFromIndexList extends CollectionAbstract implements PartitionManager {
private List partIndexFiles;
private final FeatureCollectionConfig config;
public PartitionManagerFromIndexList(MCollection dcm, List partFiles, org.slf4j.Logger logger) {
super(dcm.getCollectionName(), logger);
this.config = (FeatureCollectionConfig) dcm.getAuxInfo(FeatureCollectionConfig.AUX_CONFIG);
this.root = dcm.getRoot();
this.partIndexFiles = partFiles;
}
public Iterable makePartitions(CollectionUpdateType forceCollection) throws IOException {
return new PartIterator();
}
private class PartIterator implements Iterator, Iterable {
Iterator iter = partIndexFiles.iterator();
@Override
public Iterator iterator() {
return this;
}
@Override
public boolean hasNext() {
return iter.hasNext();
}
@Override
public MCollection next() {
MFile nextFile = iter.next();
// try {
MCollection result = new CollectionSingleIndexFile( nextFile, logger);
result.putAuxInfo(FeatureCollectionConfig.AUX_CONFIG, config);
return result;
//} catch (IOException e) {
// logger.error("PartitionManagerFromList failed on "+nextFile.getPath(), e);
// throw new RuntimeException(e);
// }
}
@Override
public void remove() {
}
}
@Override
public void close() { }
@Override
public boolean isLeaf() { return false; }
@Override
public Iterable getFilesSorted() throws IOException {
return null;
}
@Override
public CloseableIterator getFileIterator() throws IOException {
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy