Package thredds.inventory.partition
Class PartitionManagerFromIndexList
- java.lang.Object
-
- thredds.inventory.CollectionAbstract
-
- thredds.inventory.partition.PartitionManagerFromIndexList
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,MCollection
,PartitionManager
public class PartitionManagerFromIndexList extends CollectionAbstract implements PartitionManager
A PartitionManager from a list of index files. Used in GribCollectionBuilder with multiple runtimes. Index Files are already in the cache.- Since:
- 2/5/14 `
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class thredds.inventory.CollectionAbstract
CollectionAbstract.DateSorter, CollectionAbstract.MyStreamFilter
-
-
Field Summary
-
Fields inherited from class thredds.inventory.CollectionAbstract
auxInfo, CATALOG, collectionName, dateExtractor, DIR, FILE, GLOB, lastModified, LIST, logger, protoChoice, root, sfilter, startCollection
-
-
Constructor Summary
Constructors Constructor Description PartitionManagerFromIndexList(MCollection dcm, List<MFile> partFiles, org.slf4j.Logger logger)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Close and release any resources.CloseableIterator<MFile>
getFileIterator()
Get the current collection of MFile, no guaranteed order.Iterable<MFile>
getFilesSorted()
Get the current collection of MFile.Iterable<MCollection>
makePartitions(CollectionUpdateType forceCollection)
void
removePartition(MCollection partition)
-
Methods inherited from class thredds.inventory.CollectionAbstract
cleanName, extractDate, getAuxInfo, getCollectionName, getFilenames, getIndexFilename, getLastModified, getLatestFile, getPartitionDate, getProtoIndex, getRoot, hasDateExtractor, makeFileListSorted, open, parseOlderThanString, putAuxInfo, setDateExtractor, setRoot, setStreamFilter
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface thredds.inventory.MCollection
extractDate, getAuxInfo, getCollectionName, getFilenames, getIndexFilename, getLastModified, getLatestFile, getPartitionDate, getProtoIndex, getRoot, hasDateExtractor, putAuxInfo
-
-
-
-
Constructor Detail
-
PartitionManagerFromIndexList
public PartitionManagerFromIndexList(MCollection dcm, List<MFile> partFiles, org.slf4j.Logger logger)
-
-
Method Detail
-
makePartitions
public Iterable<MCollection> makePartitions(CollectionUpdateType forceCollection)
- Specified by:
makePartitions
in interfacePartitionManager
-
close
public void close()
Description copied from interface:MCollection
Close and release any resources. Do not make further calls on this object.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceMCollection
-
getFilesSorted
public Iterable<MFile> getFilesSorted()
Description copied from interface:MCollection
Get the current collection of MFile. if hasDateExtractor() == true, these will be sorted by Date, otherwise by path.- Specified by:
getFilesSorted
in interfaceMCollection
- Returns:
- current collection of MFile as an Iterable.
-
getFileIterator
public CloseableIterator<MFile> getFileIterator()
Description copied from interface:MCollection
Get the current collection of MFile, no guaranteed order. May be faster than getFilesSorted() for large collections, use when order is not important.try (CloseableIterator
iter = getFileIterator()) { while (iter.hasNext()) { MFile file = iter.next(); } } - Specified by:
getFileIterator
in interfaceMCollection
- Returns:
- current collection of MFile as an CloseableIterator.
-
removePartition
public void removePartition(MCollection partition)
- Specified by:
removePartition
in interfacePartitionManager
-
-