All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.swirlds.common.test.benchmark.BenchmarkStatistic Maven / Gradle / Ivy

Go to download

Swirlds is a software platform designed to build fully-distributed applications that harness the power of the cloud without servers. Now you can develop applications with fairness in decision making, speed, trust and reliability, at a fraction of the cost of traditional server-based platforms.

There is a newer version: 0.46.3
Show newest version
/*
 * Copyright (C) 2018-2023 Hedera Hashgraph, LLC
 *
 * 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 com.swirlds.common.test.benchmark;

import java.time.Duration;

/**
 * Captures statistics about a particular part of the benchmark.
 */
public class BenchmarkStatistic {

    private long totalTimeNanoseconds;
    private long totalOperationCount;

    private long startTimeNanoseconds;

    private final Duration testDuration;

    private final String name;

    public BenchmarkStatistic(final String name, final Duration testDuration) {
        this.name = name;
        this.testDuration = testDuration;
    }

    /**
     * Call this when the operation starts.
     */
    public void start() {
        startTimeNanoseconds = System.nanoTime();
    }

    /**
     * Call this when the operation finishes.
     */
    public void stop() {
        totalTimeNanoseconds += (System.nanoTime() - startTimeNanoseconds);
        totalOperationCount++;
    }

    /**
     * Get the average time required to perform this operation.
     */
    public Duration getAverageLatency() {
        if (totalOperationCount == 0) {
            return Duration.ofNanos(-1);
        }
        return Duration.ofNanos(totalTimeNanoseconds / totalOperationCount);
    }

    /**
     * Get the average number of operations per second.
     */
    public double getAverageThroughput() {
        return ((double) totalOperationCount) / testDuration.toSeconds();
    }

    /**
     * Get the total number of times this operation was performed.
     */
    public long getCount() {
        return totalOperationCount;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public String toString() {
        final StringBuilder sb = new StringBuilder();
        sb.append(name).append(":\n");
        sb.append("    total number of operations: ")
                .append(totalOperationCount)
                .append("\n");
        sb.append("    latency: ")
                .append(humanReadableDuration(getAverageLatency()))
                .append("\n");
        sb.append("    throughput: ")
                .append(String.format("%.1f", getAverageThroughput()))
                .append(" hz\n");

        return sb.toString();
    }

    /**
     * Convert a duration to a human readable value.
     */
    private static String humanReadableDuration(final Duration duration) {
        String unit = "ns";
        double value = duration.getNano();

        if (value > 1000) {
            value /= 1000;
            unit = "us";
        }

        if (value > 1000) {
            value /= 1000;
            unit = "ms";
        }

        if (value > 1000) {
            value /= 1000;
            unit = "s";
        }

        return String.format("%.1f %s", value, unit);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy