io.gatling.charts.stats.buffers.CountBuffer.scala Maven / Gradle / Ivy
/*
* Copyright 2011-2021 GatlingCorp (https://gatling.io)
*
* 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 io.gatling.charts.stats.buffers
import io.gatling.charts.stats.CountsVsTimePlot
import io.gatling.commons.stats.{ OK, Status }
@SuppressWarnings(Array("org.wartremover.warts.DefaultArguments"))
private[stats] class Counts(var oks: Int = 0, var kos: Int = 0) {
def increment(status: Status): Unit = status match {
case OK => oks += 1
case _ => kos += 1
}
def total: Int = oks + kos
}
private[stats] class CountsBuffer(buckets: Array[Int]) {
val counts: Array[Counts] = Array.fill(buckets.length)(new Counts)
def update(bucketNumber: Int, status: Status): Unit = {
counts(bucketNumber).increment(status)
}
def distribution: Iterable[CountsVsTimePlot] =
counts.view.zipWithIndex
.map { case (count, bucketNumber) => new CountsVsTimePlot(buckets(bucketNumber), count.oks, count.kos) }
}