akka-streams custom stream inspector
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import akka.stream.{Attributes, FlowShape, Inlet, Outlet} | |
import akka.stream.stage.{GraphStage, GraphStageLogic, InHandler, OutHandler} | |
import com.typesafe.scalalogging.Logger | |
object StreamEventInspector { | |
def default[T](logger: Logger, context: String, printElem: T => String): StreamEventInspector[T] = { | |
val ctx = "[" + context + "] " | |
new StreamEventInspector[T]( | |
() => logger.info(ctx + "upstream completed"), | |
ex => logger.error(ctx + "upstream failure", ex), | |
ex => logger.error(ctx + "downstream completed", ex), | |
el => logger.debug(ctx + printElem(el)), | |
() => logger.debug(ctx + "downstream pulled") | |
) | |
} | |
} | |
class StreamEventInspector[Elem](onUpstreamFinishInspection: () => Unit = () => {}, | |
onUpstreamFailureInspection: Throwable => Unit = _ => {}, | |
onDownstreamFinishInspection: Throwable => Unit = _ => {}, | |
onPushInspection: Elem => Unit = (_: Elem) => {}, | |
onPullInspection: () => Unit = () => {} | |
) extends GraphStage[FlowShape[Elem, Elem]] { | |
private val in = Inlet[Elem]("StreamEventInspector.in") | |
private val out = Outlet[Elem]("StreamEventInspector.out") | |
override val shape: FlowShape[Elem, Elem] = FlowShape(in, out) | |
override def createLogic(inheritedAttributes: Attributes): GraphStageLogic = new GraphStageLogic(shape) { | |
setHandler( | |
in, | |
new InHandler { | |
override def onPush(): Unit = { | |
val elem = grab(in) | |
onPushInspection(elem) | |
push(out, elem) | |
} | |
override def onUpstreamFailure(ex: Throwable): Unit = { | |
onUpstreamFailureInspection(ex) | |
super.onUpstreamFailure(ex) | |
} | |
override def onUpstreamFinish(): Unit = { | |
onUpstreamFinishInspection() | |
super.onUpstreamFinish() | |
} | |
} | |
) | |
setHandler( | |
out, | |
new OutHandler { | |
override def onPull(): Unit = { | |
onPullInspection() | |
pull(in) | |
} | |
override def onDownstreamFinish(cause: Throwable): Unit = { | |
onDownstreamFinishInspection(cause) | |
super.onDownstreamFinish(cause: Throwable) | |
} | |
} | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment