Package thredds.inventory
Class CollectionListRange
- java.lang.Object
-
- thredds.inventory.CollectionAbstract
-
- thredds.inventory.CollectionListRange
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,MCollection
public class CollectionListRange extends CollectionAbstract
Collection defined by a list of files, with a [start, end) date range- Since:
- 12/23/2014
-
-
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 CollectionListRange(String collectionName, String root, CalendarDate startDate, CalendarDate endDate, org.slf4j.Logger logger)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addFile(MFile mfile)
void
close()
Close and release any resources.CalendarDate
getEndDate()
CloseableIterator<MFile>
getFileIterator()
Get the current collection of MFile, no guaranteed order.Iterable<MFile>
getFilesSorted()
Get the current collection of MFile.CalendarDate
getStartDate()
String
toString()
-
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
-
-
-
-
Constructor Detail
-
CollectionListRange
public CollectionListRange(String collectionName, String root, CalendarDate startDate, CalendarDate endDate, org.slf4j.Logger logger)
-
-
Method Detail
-
getStartDate
public CalendarDate getStartDate()
-
getEndDate
public CalendarDate getEndDate()
-
addFile
public void addFile(MFile mfile)
-
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.- 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(); } } - Returns:
- current collection of MFile as an CloseableIterator.
-
close
public void close()
Description copied from interface:MCollection
Close and release any resources. Do not make further calls on this object.
-
-