1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
package stream;
import java.io.PrintStream;
import java.util.ArrayDeque;
import fileIO.FileFormat;
import shared.Shared;
import shared.Timer;
import shared.Tools;
import structures.ListNum;
/**
* Loads multiple sam files rapidly with multiple threads.
*
* @author Brian Bushnell
* @date March 6, 2019
*
*/
public class SamStreamerMF {
/*--------------------------------------------------------------*/
/*---------------- Initialization ----------------*/
/*--------------------------------------------------------------*/
/**
* Code entrance from the command line.
* @param args Command line arguments
*/
public static final void main(String[] args){
//Start a timer immediately upon code entrance.
Timer t=new Timer();
//Create an instance of this class
int threads=Shared.threads();
if(args.length>1){threads=Integer.parseInt(args[1]);}
SamStreamerMF x=new SamStreamerMF(args[0].split(","), threads, false, -1);
//Run the object
x.start();
x.test();
t.stop("Time: ");
}
/**
* Constructor.
*/
public SamStreamerMF(String[] fnames_, int threads_, boolean saveHeader_, long maxReads_){
this(FileFormat.testInput(fnames_, FileFormat.SAM, null, true, false), threads_, saveHeader_, maxReads_);
}
/**
* Constructor.
*/
public SamStreamerMF(FileFormat[] ffin_, int threads_, boolean saveHeader_, long maxReads_){
fname=ffin_[0].name();
threads=threads_;
ffin=ffin_;
saveHeader=saveHeader_;
}
/*--------------------------------------------------------------*/
/*---------------- Outer Methods ----------------*/
/*--------------------------------------------------------------*/
final void test(){
for(ListNum<Read> list=nextReads(); list!=null; list=nextReads()){
if(verbose){outstream.println("Got list of size "+list.size());}
}
}
/** Create read streams and process all data */
public final void start(){
//Reset counters
readsProcessed=0;
basesProcessed=0;
//Process the reads in separate threads
spawnThreads();
if(verbose){outstream.println("Finished; closing streams.");}
}
public final ListNum<Read> nextList(){return nextReads();}
public final ListNum<Read> nextReads(){
ListNum<Read> list=null;
assert(activeStreamers!=null);
synchronized(activeStreamers){
if(activeStreamers.isEmpty()){return null;}
while(list==null && !activeStreamers.isEmpty()){
SamReadStreamer srs=activeStreamers.poll();
list=srs.nextReads();
if(list!=null){activeStreamers.add(srs);}
else{
readsProcessed+=srs.readsProcessed;
basesProcessed+=srs.basesProcessed;
if(srs.header!=null){
SamReadInputStream.setSharedHeader(srs.header);
}
if(!streamerSource.isEmpty()){
srs=streamerSource.poll();
srs.start();
activeStreamers.add(srs);
}
}
}
}
return list;
}
// public abstract ListNum<SamLine> nextLines();
/*--------------------------------------------------------------*/
/*---------------- Inner Methods ----------------*/
/*--------------------------------------------------------------*/
/** Spawn process threads */
void spawnThreads(){
final int maxActive=Tools.max(2, Tools.min((Shared.threads()+4)/5, ffin.length, MAX_FILES));
streamerSource=new ArrayDeque<SamReadStreamer>(ffin.length);
activeStreamers=new ArrayDeque<SamReadStreamer>(maxActive);
for(int i=0; i<ffin.length; i++){
SamReadStreamer srs=new SamReadStreamer(ffin[i], threads, saveHeader, maxReads);
streamerSource.add(srs);
}
while(activeStreamers.size()<maxActive && !streamerSource.isEmpty()){
SamReadStreamer srs=streamerSource.poll();
srs.start();
activeStreamers.add(srs);
}
}
/*--------------------------------------------------------------*/
/*---------------- Fields ----------------*/
/*--------------------------------------------------------------*/
/** Primary input file path */
protected String fname;
/*--------------------------------------------------------------*/
/** Number of reads processed */
protected long readsProcessed=0;
/** Number of bases processed */
protected long basesProcessed=0;
/** Quit after processing this many input reads; -1 means no limit */
protected long maxReads=-1;
/*--------------------------------------------------------------*/
/*---------------- Final Fields ----------------*/
/*--------------------------------------------------------------*/
final boolean saveHeader;
/** Primary input file */
final FileFormat[] ffin;
/** Readers */
// final SamReadStreamer[] streamers;
private ArrayDeque<SamReadStreamer> streamerSource;
private ArrayDeque<SamReadStreamer> activeStreamers;
final int threads;
/*--------------------------------------------------------------*/
/*---------------- Static Fields ----------------*/
/*--------------------------------------------------------------*/
public static int DEFAULT_THREADS=6;
public static int MAX_FILES=8;
/*--------------------------------------------------------------*/
/*---------------- Common Fields ----------------*/
/*--------------------------------------------------------------*/
/** Print status messages to this output stream */
protected PrintStream outstream=System.err;
/** Print verbose messages */
public static final boolean verbose=false;
public static final boolean verbose2=false;
/** True if an error was encountered */
public boolean errorState=false;
}
|