Skip to content
Snippets Groups Projects
Commit ddd6dff2 authored by Jan Kožusznik's avatar Jan Kožusznik
Browse files

format code, fix parsing duration 46:00:00,

fix missing value for stime
parent 5815619e
No related branches found
No related tags found
1 merge request!14Iss1026
......@@ -7,8 +7,6 @@ import java.io.PrintWriter;
import java.nio.file.Files;
import java.nio.file.Path;
import java.time.Duration;
import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
......@@ -29,7 +27,8 @@ public class Extractor {
private Map<String, String> valueWithTypes;
public Extractor(Path inputFile, Set<String> valuesToExport, Map<String, String> valuesWithTypes, OutputStream out) {
public Extractor(Path inputFile, Set<String> valuesToExport, Map<String, String> valuesWithTypes,
OutputStream out) {
this.inputFile = inputFile;
this.valuesToExport = valuesToExport;
this.valueWithTypes = valuesWithTypes;
......@@ -61,7 +60,7 @@ public class Extractor {
}
}
}
if(valueCollector != null) {
if (valueCollector != null) {
write(pw, collector, valueCollector);
}
} catch (IOException e) {
......@@ -102,12 +101,12 @@ public class Extractor {
out.printf("jobs #;%d\n", ids.size());
out.printf("job ids;%s\n", String.join(";", ids));
for (String key : valuesToExport) {
out.printf("%s;%s\n", key, String.join(";", convert(key,values4Job.get(key))));
out.printf("%s;%s\n", key, String.join(";", convert(key, values4Job.get(key))));
}
}
private List<String> convert(String key, List<String> list) {
if(!valueWithTypes.containsKey(key)) {
if (!valueWithTypes.containsKey(key)) {
return list;
}
Function<String, String> conversion = getConversion(valueWithTypes.get(key));
......@@ -122,7 +121,13 @@ public class Extractor {
//return str->nf.format(Double.parseDouble(str.replace("kb", ""))/1024.);
return str -> "" + Double.parseDouble(str.replace("kb", ""))/1024.;
case "tm":
return str-> Duration.between(LocalTime.of(0, 0, 0), LocalTime.parse(str, DateTimeFormatter.ofPattern("H:m:s"))).getSeconds() + "";
return str-> {
String []tokens = str.split(":");
return Duration.ofHours(Integer.parseInt(tokens[0]))
.plusMinutes(Integer.parseInt(tokens[1]))
.plusSeconds(Integer.parseInt(tokens[2])).getSeconds() + "";
};
}
return str->str;
......
......@@ -41,7 +41,9 @@ public class ResultFileTask {
.appendOptional(DateTimeFormatter.ofPattern("EEE MMM dd kk:mm:ss z yyyy"))
.appendOptional(DateTimeFormatter.ofPattern("EEE MMM dd kk:mm:ss yyyy")).toFormatter();
Collection<Double> startTimeValues = retrieveValues(Constants.STATISTICS_RESOURCES_START_TIME)
.map(s -> (double) LocalDateTime.parse(s, formatter).toEpochSecond(ZoneOffset.UTC))
.map(s -> s != null && !s.equals("null")
? (double) LocalDateTime.parse(s, formatter).toEpochSecond(ZoneOffset.UTC)
: Double.NaN)
.collect(Collectors.toList());
Collection<Double> wallTimeValues = retrieveValues(Constants.STATISTICS_RESOURCES_WALL_TIME)
.map(s -> Double.parseDouble(s)).collect(Collectors.toList());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment