io.gatling.http.action.sse.fsm.SseIdleState.scala Maven / Gradle / Ivy
/*
* Copyright 2011-2024 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.http.action.sse.fsm
import io.gatling.core.action.Action
import io.gatling.core.session.Session
import io.gatling.http.action.sse.SseInboundMessage
import io.gatling.http.check.sse.SseMessageCheckSequence
import com.typesafe.scalalogging.StrictLogging
final class SseIdleState(fsm: SseFsm, session: Session) extends SseState(fsm) with StrictLogging {
import fsm._
override def onSetCheck(actionName: String, checkSequences: List[SseMessageCheckSequence], session: Session, next: Action): NextSseState = {
logger.debug(s"Set check $actionName")
val timestamp = clock.nowMillis
checkSequences match {
case SseMessageCheckSequence(timeout, currentCheck :: remainingChecks) :: remainingCheckSequences =>
logger.debug("Trigger check")
scheduleTimeout(timeout)
// [e]
//
// [e]
NextSseState(
SsePerformingCheckState(
fsm,
currentCheck = currentCheck,
remainingChecks = remainingChecks,
checkSequenceStart = timestamp,
remainingCheckSequences,
session = session,
next = next
)
)
case _ =>
NextSseState(this, () => next ! session)
}
}
override def onSseReceived(message: String, timestamp: Long): NextSseState = {
// server push message, just log
logger.debug(s"Received unmatched message=$message")
unmatchedInboundMessageBuffer.addOne(SseInboundMessage(timestamp, message))
logUnmatchedServerMessage(session)
NextSseState(this)
}
override def onSseStreamConnected(timestamp: Long): NextSseState = {
logger.debug("SSE Stream reconnected while in Idle state")
NextSseState(this)
}
override def onSseEndOfStream(timestamp: Long): NextSseState = {
// server issued close
logger.debug(s"Server notified of end of stream while in Idle state")
NextSseState(new SseCrashedState(fsm, "End of stream"))
}
override def onClientCloseRequest(actionName: String, session: Session, next: Action): NextSseState = {
logger.debug("Client requested SSE stream close")
// [e]
//
// [e]
NextSseState(new SseClosingState(fsm, actionName, session, next, clock.nowMillis), () => stream.requestingCloseByClient())
}
}