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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
|
package driver;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.HashMap;
import fileIO.ByteFile;
import fileIO.ByteFile1;
import fileIO.ByteFile2;
import fileIO.ByteStreamWriter;
import fileIO.FileFormat;
import fileIO.ReadWrite;
import shared.Parse;
import shared.Parser;
import shared.PreParser;
import shared.Shared;
import shared.Timer;
import shared.Tools;
import stream.ConcurrentGenericReadInputStream;
import stream.FastaReadInputStream;
import structures.IntList;
/**
* @author Brian Bushnell
* @date May 9, 2016
*
*/
public class ProcessWebcheck {
public static void main(String[] args){
Timer t=new Timer();
ProcessWebcheck x=new ProcessWebcheck(args);
x.process(t);
//Close the print stream if it was redirected
Shared.closeStream(x.outstream);
}
public ProcessWebcheck(String[] args){
{//Preparse block for help, config files, and outstream
PreParser pp=new PreParser(args, outstream, null, false);
args=pp.args;
outstream=pp.outstream;
}
ReadWrite.USE_PIGZ=ReadWrite.USE_UNPIGZ=true;
ReadWrite.setZipThreads(Shared.threads());
Parser parser=new Parser();
for(int i=0; i<args.length; i++){
String arg=args[i];
String[] split=arg.split("=");
String a=split[0].toLowerCase();
String b=split.length>1 ? split[1] : null;
if(parser.parse(arg, a, b)){
//do nothing
}else if(a.equals("extendedstats") || a.equals("es")){
extendedStats=Parse.parseBoolean(b);
}else if(a.equals("invalid") || a.equals("outinvalid")){
outInvalid=b;
}else if(a.equals("fail") || a.equals("outfail")){
outFail=b;
}else if(a.equals("ms") || a.equals("millis")){
boolean x=Parse.parseBoolean(b);
ms=(x ? "ms" : "");
}else if(a.equals("lines")){
maxLines=Long.parseLong(b);
if(maxLines<0){maxLines=Long.MAX_VALUE;}
}else if(a.equals("verbose")){
verbose=Parse.parseBoolean(b);
ByteFile1.verbose=verbose;
ByteFile2.verbose=verbose;
stream.FastaReadInputStream.verbose=verbose;
ConcurrentGenericReadInputStream.verbose=verbose;
stream.FastqReadInputStream.verbose=verbose;
ReadWrite.verbose=verbose;
}else if(!arg.contains("=")){
for(String s : arg.split(",")){
in1.add(s);
}
}else{
outstream.println("Unknown parameter "+args[i]);
assert(false) : "Unknown parameter "+args[i];
// throw new RuntimeException("Unknown parameter "+args[i]);
}
}
{//Process parser fields
overwrite=parser.overwrite;
append=parser.append;
if(parser.in1!=null){
for(String s : parser.in1.split(",")){
in1.add(s);
}
}
out1=parser.out1;
}
assert(FastaReadInputStream.settingsOK());
if(in1==null){throw new RuntimeException("Error - at least one input file is required.");}
if(!ByteFile.FORCE_MODE_BF2){
ByteFile.FORCE_MODE_BF2=false;
ByteFile.FORCE_MODE_BF1=true;
}
if(out1!=null && out1.equalsIgnoreCase("null")){out1=null;}
if(!Tools.testOutputFiles(overwrite, append, false, out1)){
outstream.println((out1==null)+", "+out1);
throw new RuntimeException("\n\noverwrite="+overwrite+"; Can't write to output files "+out1+"\n");
}
ffout1=FileFormat.testOutput(out1, FileFormat.TXT, null, true, overwrite, append, false);
ffoutInvalid=FileFormat.testOutput(outInvalid, FileFormat.TXT, null, true, overwrite, append, false);
ffoutFail=FileFormat.testOutput(outFail, FileFormat.TXT, null, true, overwrite, append, false);
ffin1=new ArrayList<FileFormat>(in1.size());
for(String s : in1){
FileFormat ff=FileFormat.testInput(s, FileFormat.TXT, null, true, true);
assert(ff!=null) : "Cannot read file "+s;
ffin1.add(ff);
}
assert(ffin1.size()>0) : "No input files.";
}
void process(Timer t){
ByteStreamWriter bsw=null;
if(ffout1!=null){
bsw=new ByteStreamWriter(ffout1);
bsw.start();
}
ByteStreamWriter bswInvalid=null;
if(ffoutInvalid!=null){
bswInvalid=new ByteStreamWriter(ffoutInvalid);
bswInvalid.start();
}
ByteStreamWriter bswFail=null;
if(ffoutFail!=null){
bswFail=new ByteStreamWriter(ffoutFail);
bswFail.start();
}
for(FileFormat ff : ffin1){
ByteFile bf=ByteFile.makeByteFile(ff);
process2(bf, bswFail, bswInvalid);
}
passLatency.shrink();
failLatency.shrink();
failCode.sort();
failCode.shrinkToUnique();
StringBuilder sb=new StringBuilder();
ArrayList<String> list=new ArrayList<String>();
list.addAll(map.keySet());
Shared.sort(list);
for(String s : list){
sb.append(s+"\t"+map.get(s)[0]+"\n");
}
if(extendedStats){
sb.append('\n');
sb.append("Lines_Processed:\t"
+ linesProcessed).append('\n');
sb.append("Invalid_Lines:\t"
+ (linesProcessed-linesValid)).append('\n');
sb.append("Passing:\t"
+ passLatency.size).append('\n');
sb.append("Failing:\t"
+ failLatency.size).append('\n');
sb.append("Avg_Pass_Latency:\t"
+ (passLatency.size>0 ? Tools.averageInt(passLatency.array) : 0)+ms).append('\n');
sb.append("Max_Pass_Latency:\t"
+ (passLatency.size>0 ? Tools.max(passLatency.array) : 0)+ms).append('\n');
sb.append("Avg_Fail_Latency:\t"
+ (failLatency.size>0 ? Tools.averageInt(failLatency.array) : 0)+ms).append('\n');
sb.append("Max_Fail_Latency:\t"
+ (failLatency.size>0 ? Tools.max(failLatency.array) : 0)+ms).append('\n');
sb.append("Observed_Fail_Codes:");
for(int i=0; i<failCode.size; i++){
sb.append('\t').append(failCode.get(i));
}
sb.append('\n');
}
outstream.print(sb);
if(bsw!=null){
bsw.print(sb);
errorState|=bsw.poisonAndWait();
}
if(bswInvalid!=null){errorState|=bswInvalid.poisonAndWait();}
if(bswFail!=null){errorState|=bswFail.poisonAndWait();}
t.stop();
if(errorState){
throw new RuntimeException(getClass().getName()+" terminated in an error state; the output may be corrupt.");
}
}
private void process2(ByteFile bf, ByteStreamWriter bswFail, ByteStreamWriter bswInvalid){
byte[] line=bf.nextLine();
while(line!=null){
if(line.length>0){
if(maxLines>0 && linesProcessed>=maxLines){break;}
linesProcessed++;
bytesProcessed+=line.length;
boolean valid=(line[0]!='#' && Tools.isDigit(line[line.length-1]));
String[] split=null;
if(valid){
split=new String(line).split("\\|");
valid=(split.length==4);
}
// assert(false) : (char)line[0]+", "+(char)line[line.length-1]+", "+new String(line).split("\\|").length;
int code=-1;
float latency=-1;
if(valid){
try {
code=Integer.parseInt(split[2].substring(0, split[2].indexOf(' ')));
latency=Float.parseFloat(split[3]);
} catch (Exception e) {
valid=false;
}
}
if(valid){
linesValid++;
long[] cnt=map.get(split[2]);
if(cnt==null){
cnt=new long[1];
map.put(split[2], cnt);
}
cnt[0]++;
int latency2=(int)(latency*1000);
if(code==200){
passLatency.add(latency2);
}else{
failLatency.add(latency2);
failCode.add(code);
if(bswFail!=null){
bswFail.println(line);
}
}
}else{
if(bswInvalid!=null){
bswInvalid.println(line);
}
}
}
line=bf.nextLine();
}
errorState|=bf.close();
}
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
private ArrayList<String> in1=new ArrayList<String>();
private String out1=null;
private String outInvalid=null;
private String outFail=null;
private String ms="ms";
/*--------------------------------------------------------------*/
private long linesProcessed=0;
private long linesValid=0;
private long bytesProcessed=0;
private IntList passLatency=new IntList();
private IntList failLatency=new IntList();
private IntList failCode=new IntList();
private HashMap<String, long[]> map=new HashMap<String, long[]>();
private long maxLines=Long.MAX_VALUE;
private boolean extendedStats=false;
/*--------------------------------------------------------------*/
private final ArrayList<FileFormat> ffin1;
private final FileFormat ffout1;
private final FileFormat ffoutInvalid;
private final FileFormat ffoutFail;
/*--------------------------------------------------------------*/
private PrintStream outstream=System.out;
public static boolean verbose=false;
public boolean errorState=false;
private boolean overwrite=true;
private boolean append=false;
}
|