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

io.gatling.core.action.Pause.scala Maven / Gradle / Ivy

/*
 * Copyright 2011-2018 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.core.action

import scala.concurrent.duration.DurationLong

import io.gatling.commons.util.Clock
import io.gatling.core.session.{ Expression, Session }
import io.gatling.core.stats.StatsEngine

import akka.actor.ActorSystem

class Pause(pauseDuration: Expression[Long], actorSystem: ActorSystem, val statsEngine: StatsEngine, val clock: Clock, val name: String, val next: Action) extends ExitableAction {

  import actorSystem._

  /**
   * Generates a duration if required or use the one given and defer
   * next actor execution of this duration
   *
   * @param session the session of the virtual user
   */
  override def execute(session: Session): Unit = recover(session) {

    def schedule(durationInMillis: Long) = {
      val drift = session.drift

      if (durationInMillis > drift) {
        // can make pause
        val durationMinusDrift = durationInMillis - drift
        logger.debug(s"Pausing for ${durationInMillis}ms (real=${durationMinusDrift}ms)")

        val pauseStart = clock.nowMillis

        try {
          scheduler.scheduleOnce(durationMinusDrift milliseconds) {
            val newDrift = clock.nowMillis - pauseStart - durationMinusDrift
            next ! session.setDrift(newDrift)
          }
        } catch {
          case _: IllegalStateException => // engine was shutdown
        }

      } else {
        // drift is too big
        val remainingDrift = drift - durationInMillis
        logger.debug(s"Can't pause (remaining drift=${remainingDrift}ms)")
        dispatcher.execute(() => next ! session.setDrift(remainingDrift))
      }
    }

    pauseDuration(session).map(schedule)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy