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 TypeMethodDescriptionboolean
Add the record to the tail of the queue, spilling to disk if necessary Must check that (canAdd() == true) before calling this methodboolean
addAll
(Collection<? extends E> c) Add all elements from collection c to this DiskBackedQueue Must check that (canAdd() == true) before calling this methodboolean
canAdd()
void
clear()
boolean
Not supported.boolean
containsAll
(Collection<?> c) Not supported.element()
protected void
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 fileint
boolean
boolean
isEmpty()
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 parametersboolean
peek()
poll()
remove()
boolean
Not supported.boolean
removeAll
(Collection<?> c) Not supported.boolean
retainAll
(Collection<?> c) Not supported.int
size()
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, wait
Methods 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:
add
in interfaceCollection<E>
- Specified by:
add
in 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:
size
in interfaceCollection<E>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCollection<E>
-
addAll
Add all elements from collection c to this DiskBackedQueue Must check that (canAdd() == true) before calling this method- Specified by:
addAll
in 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:
clear
in 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:
remove
in interfaceCollection<E>
- Throws:
UnsupportedOperationException
-
removeAll
Not supported. Cannot access particular elements, as some elements may have been written to disk- Specified by:
removeAll
in interfaceCollection<E>
- Throws:
UnsupportedOperationException
-
retainAll
Not supported. Cannot access particular elements, as some elements may have been written to disk- Specified by:
retainAll
in 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:
contains
in 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:
containsAll
in interfaceCollection<E>
- Throws:
UnsupportedOperationException
-
iterator
Not supported at this time- Specified by:
iterator
in interfaceCollection<E>
- Specified by:
iterator
in interfaceIterable<E>
- Throws:
UnsupportedOperationException
-
toArray
Not supported at this time- Specified by:
toArray
in interfaceCollection<E>
- Throws:
UnsupportedOperationException
-
toArray
public <T1> T1[] toArray(T1[] a) Not supported at this time- Specified by:
toArray
in interfaceCollection<E>
- Throws:
UnsupportedOperationException
-