net.openhft.chronicle.jlbh.ImmutableRunResult Maven / Gradle / Ivy
/*
* Copyright 2016-2020 chronicle.software
*
* https://chronicle.software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package net.openhft.chronicle.jlbh;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.time.Duration;
import java.util.EnumMap;
import java.util.Map;
import static java.time.temporal.ChronoUnit.NANOS;
import static java.util.Collections.unmodifiableMap;
import static net.openhft.chronicle.jlbh.JLBHResult.RunResult.Percentile.*;
final class ImmutableRunResult implements JLBHResult.RunResult {
private final Map percentiles;
public ImmutableRunResult(double[] percentiles) {
this.percentiles = asMap(percentiles);
}
private static Map asMap(double[] percentiles) {
final Map data = new EnumMap<>(Percentile.class);
// TODO: duplicate of knowledge with Histogram.percentilesFor()
data.put(PERCENTILE_50TH, durationOf(percentiles[0]));
data.put(PERCENTILE_90TH, durationOf(percentiles[1]));
data.put(PERCENTILE_99TH, durationOf(percentiles[2]));
if (percentiles.length > 4) {
data.put(PERCENTILE_99_7TH, durationOf(percentiles[3]));
}
if (percentiles.length > 5) {
data.put(PERCENTILE_99_9TH, durationOf(percentiles[4]));
}
if (percentiles.length > 6) {
data.put(PERCENTILE_99_97TH, durationOf(percentiles[5]));
}
if (percentiles.length > 7) {
data.put(PERCENTILE_99_99TH, durationOf(percentiles[6]));
}
data.put(WORST, durationOf(percentiles[percentiles.length - 1]));
return unmodifiableMap(data);
}
private static Duration durationOf(double percentile) {
return Duration.of((long) percentile, NANOS);
}
@Override
@NotNull
public Map percentiles() {
return percentiles;
}
@Override
@NotNull
public Duration get50thPercentile() {
return percentiles.get(PERCENTILE_50TH);
}
@Override
@NotNull
public Duration get90thPercentile() {
return percentiles.get(PERCENTILE_90TH);
}
@Override
@NotNull
public Duration get99thPercentile() {
return percentiles.get(PERCENTILE_99TH);
}
@Override
@Nullable
public Duration get999thPercentile() {
return percentiles.get(PERCENTILE_99_9TH);
}
@Override
@Nullable
public Duration get9999thPercentile() {
return percentiles.get(PERCENTILE_99_99TH);
}
@Override
@NotNull
public Duration getWorst() {
return percentiles.get(WORST);
}
@Override
public String toString() {
return "ImmutableRunResult{" +
"percentiles=" + percentiles +
'}';
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ImmutableRunResult summary = (ImmutableRunResult) o;
return percentiles.equals(summary.percentiles);
}
@Override
public int hashCode() {
return percentiles.hashCode();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy