private BufferedWriter lineFileOut = null;
private DocMaker docMaker;
public WriteLineDocTask(PerfRunData runData) throws Exception {
super(runData);
Config config = runData.getConfig();
String fileName = config.get("line.file.out", null);
if (fileName == null) {
throw new IllegalArgumentException("line.file.out must be set");
}
OutputStream out = new FileOutputStream(fileName);
boolean doBzipCompression = false;
String doBZCompress = config.get("bzip.compression", null);
if (doBZCompress != null) {
// Property was set, use the value.
doBzipCompression = Boolean.valueOf(doBZCompress).booleanValue();
} else {
// Property was not set, attempt to detect based on file's extension