Package htsjdk.samtools.util
Class DiskBackedQueue<E>
- java.lang.Object
-
- htsjdk.samtools.util.DiskBackedQueue<E>
-
- All Implemented Interfaces:
Iterable<E>,Collection<E>,Queue<E>
public class DiskBackedQueue<E> extends Object implements 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
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(E record)Add 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()booleancontains(Object o)Not supported.booleancontainsAll(Collection<?> c)Not supported.Eelement()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 fileintgetNumRecordsOnDisk()booleanheadRecordIsFromDisk()booleanisEmpty()Iterator<E>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 parametersbooleanoffer(E e)Epeek()Epoll()Eremove()booleanremove(Object o)Not 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 time-
Methods 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 Detail
-
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
public boolean add(E record) throws IllegalStateException
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
-
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
public boolean addAll(Collection<? extends E> c)
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
protected void finalize() throws ThrowableClean 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
public boolean remove(Object o)
Not supported. Cannot access particular elements, as some elements may have been written to disk- Specified by:
removein interfaceCollection<E>- Throws:
UnsupportedOperationException
-
removeAll
public boolean removeAll(Collection<?> c)
Not supported. Cannot access particular elements, as some elements may have been written to disk- Specified by:
removeAllin interfaceCollection<E>- Throws:
UnsupportedOperationException
-
retainAll
public boolean retainAll(Collection<?> c)
Not supported. Cannot access particular elements, as some elements may have been written to disk- Specified by:
retainAllin interfaceCollection<E>- Throws:
UnsupportedOperationException
-
contains
public boolean contains(Object o)
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
public boolean containsAll(Collection<?> c)
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
public Iterator<E> iterator()
Not supported at this time- Specified by:
iteratorin interfaceCollection<E>- Specified by:
iteratorin interfaceIterable<E>- Throws:
UnsupportedOperationException
-
toArray
public Object[] 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
-
-