Package htsjdk.samtools.util
Class DiskBackedQueue<E>
java.lang.Object
htsjdk.samtools.util.DiskBackedQueue<E>
- All Implemented Interfaces:
Iterable<E>,Collection<E>,Queue<E>
A single-ended FIFO queue. Writes elements to temporary files when the queue gets too big.
External references to elements in this queue are NOT guaranteed to be valid, due to the disk write/read
NB: The queue becomes read-only after the first time that an on-disk record is "next up" to be read (i.e. has been
loaded into headRecord). Max size is therefore non-deterministic.
This avoids issues arising from conflicts between the input and output streams.
This could perhaps be avoided by creating a version of BAMRecordCodec that operates on RandomAccessFiles or channels.
Created by bradt on 4/28/14.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanAdd the record to the tail of the queue, spilling to disk if necessary Must check that (canAdd() == true) before calling this methodbooleanaddAll(Collection<? extends E> c) Add all elements from collection c to this DiskBackedQueue Must check that (canAdd() == true) before calling this methodbooleancanAdd()voidclear()booleanNot supported.booleancontainsAll(Collection<?> c) Not supported.element()protected voidfinalize()Clean up disk resources in case clear() has not been explicitly called (as would be preferable) Closes the input and output streams associated with this DiskBackedQueue and deletes the temporary fileintbooleanbooleanisEmpty()iterator()Not supported at this timestatic <T> DiskBackedQueue<T> newInstance(SortingCollection.Codec<T> codec, int maxRecordsInRam, List<File> tmpDir) Syntactic sugar around the ctor, to save some typing of type parametersstatic <T> DiskBackedQueue<T> newInstanceFromPaths(SortingCollection.Codec<T> codec, int maxRecordsInRam, List<Path> tmpDir) Syntactic sugar around the ctor, to save some typing of type parametersbooleanpeek()poll()remove()booleanNot supported.booleanremoveAll(Collection<?> c) Not supported.booleanretainAll(Collection<?> c) Not supported.intsize()Return the total number of elements in the queue, both in memory and on diskObject[]toArray()Not supported at this time<T1> T1[]toArray(T1[] a) Not supported at this timeMethods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
Method Details
-
newInstance
public static <T> DiskBackedQueue<T> newInstance(SortingCollection.Codec<T> codec, int maxRecordsInRam, List<File> tmpDir) Syntactic sugar around the ctor, to save some typing of type parameters- Parameters:
codec- For writing records to file and reading them back into RAMmaxRecordsInRam- how many records to accumulate in memory before spilling to disktmpDir- Where to write files of records that will not fit in RAM
-
newInstanceFromPaths
public static <T> DiskBackedQueue<T> newInstanceFromPaths(SortingCollection.Codec<T> codec, int maxRecordsInRam, List<Path> tmpDir) Syntactic sugar around the ctor, to save some typing of type parameters- Parameters:
codec- For writing records to file and reading them back into RAMmaxRecordsInRam- how many records to accumulate in memory before spilling to disktmpDir- Where to write files of records that will not fit in RAM
-
canAdd
public boolean canAdd() -
getNumRecordsOnDisk
public int getNumRecordsOnDisk() -
headRecordIsFromDisk
public boolean headRecordIsFromDisk() -
add
Add the record to the tail of the queue, spilling to disk if necessary Must check that (canAdd() == true) before calling this method- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceQueue<E>- Parameters:
record- The record to be added to the queue- Returns:
- true (if add successful)
- Throws:
IllegalStateException- if the queue cannot be added to
-
offer
-
remove
-
poll
-
element
-
peek
-
size
public int size()Return the total number of elements in the queue, both in memory and on disk- Specified by:
sizein interfaceCollection<E>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmptyin interfaceCollection<E>
-
addAll
Add all elements from collection c to this DiskBackedQueue Must check that (canAdd() == true) before calling this method- Specified by:
addAllin interfaceCollection<E>- Parameters:
c- the collection of elements to add- Returns:
- true if this collection changed as a result of the call
- Throws:
IllegalStateException- if the queue cannot be added to
-
clear
public void clear()- Specified by:
clearin interfaceCollection<E>
-
finalize
Clean up disk resources in case clear() has not been explicitly called (as would be preferable) Closes the input and output streams associated with this DiskBackedQueue and deletes the temporary file -
remove
Not supported. Cannot access particular elements, as some elements may have been written to disk- Specified by:
removein interfaceCollection<E>- Throws:
UnsupportedOperationException
-
removeAll
Not supported. Cannot access particular elements, as some elements may have been written to disk- Specified by:
removeAllin interfaceCollection<E>- Throws:
UnsupportedOperationException
-
retainAll
Not supported. Cannot access particular elements, as some elements may have been written to disk- Specified by:
retainAllin interfaceCollection<E>- Throws:
UnsupportedOperationException
-
contains
Not supported. It is not possible to check for the presence of a particular element, as some elements may have been written to disk- Specified by:
containsin interfaceCollection<E>- Throws:
UnsupportedOperationException
-
containsAll
Not supported. It is not possible to check for the presence of a particular element, as some elements may have been written to disk- Specified by:
containsAllin interfaceCollection<E>- Throws:
UnsupportedOperationException
-
iterator
Not supported at this time- Specified by:
iteratorin interfaceCollection<E>- Specified by:
iteratorin interfaceIterable<E>- Throws:
UnsupportedOperationException
-
toArray
Not supported at this time- Specified by:
toArrayin interfaceCollection<E>- Throws:
UnsupportedOperationException
-
toArray
public <T1> T1[] toArray(T1[] a) Not supported at this time- Specified by:
toArrayin interfaceCollection<E>- Throws:
UnsupportedOperationException
-