pekko/akka-stream/src/main/scala/akka/stream/Graph.scala

122 lines
4.1 KiB
Scala
Raw Normal View History

/*
2022-02-04 12:36:44 +01:00
* Copyright (C) 2015-2022 Lightbend Inc. <https://www.lightbend.com>
*/
package akka.stream
import scala.annotation.unchecked.uncheckedVariance
import akka.annotation.InternalApi
import akka.stream.impl.TraversalBuilder
import akka.stream.scaladsl.GenericGraph
2016-07-27 13:29:23 +02:00
/**
* Not intended to be directly extended by user classes
*
* @see [[akka.stream.stage.GraphStage]]
*/
trait Graph[+S <: Shape, +M] {
2019-03-11 10:38:24 +01:00
/**
* Type-level accessor for the shape parameter of this graph.
*/
type Shape = S @uncheckedVariance
2022-02-21 21:08:36 +08:00
/**
* The shape of a graph is all that is externally visible: its inlets and outlets.
*/
def shape: S
2019-03-11 10:38:24 +01:00
/**
* INTERNAL API.
*
* Every materializable element must be backed by a stream layout module
*/
2016-07-27 13:29:23 +02:00
private[stream] def traversalBuilder: TraversalBuilder
2022-02-21 21:08:36 +08:00
/**
* Replace the attributes of this [[Flow]] with the given ones. If this Flow is a composite
* of multiple graphs, new attributes on the composite will be less specific than attributes
* set directly on the individual graphs of the composite.
*/
def withAttributes(attr: Attributes): Graph[S, M]
2022-02-21 21:08:36 +08:00
/**
* Specifies the name of the Graph.
* If the name is null or empty the name is ignored, i.e. [[#none]] is returned.
*/
def named(name: String): Graph[S, M] = addAttributes(Attributes.name(name))
2015-12-14 17:02:00 +01:00
/**
* Put an asynchronous boundary around this `Graph`
*/
def async: Graph[S, M] = addAttributes(Attributes.asyncBoundary)
/**
* Put an asynchronous boundary around this `Graph`
*
* @param dispatcher Run the graph on this dispatcher
*/
2022-02-21 21:08:36 +08:00
def async(dispatcher: String): Graph[S, M] =
2019-03-11 10:38:24 +01:00
addAttributes(Attributes.asyncBoundary and ActorAttributes.dispatcher(dispatcher))
/**
* Put an asynchronous boundary around this `Graph`
*
* @param dispatcher Run the graph on this dispatcher
* @param inputBufferSize Set the input buffer to this size for the graph
*/
2022-02-21 21:08:36 +08:00
def async(dispatcher: String, inputBufferSize: Int): Graph[S, M] =
addAttributes(
Attributes.asyncBoundary and ActorAttributes.dispatcher(dispatcher)
2019-03-11 10:38:24 +01:00
and Attributes.inputBuffer(inputBufferSize, inputBufferSize))
/**
* Add the given attributes to this [[Graph]]. If the specific attribute was already present
* on this graph this means the added attribute will be more specific than the existing one.
* If this Source is a composite of multiple graphs, new attributes on the composite will be
* less specific than attributes set directly on the individual graphs of the composite.
*/
2016-07-27 13:29:23 +02:00
def addAttributes(attr: Attributes): Graph[S, M] = withAttributes(traversalBuilder.attributes and attr)
}
object Graph {
/**
* Java API
* Transform the materialized value of this Flow, leaving all other properties as they were.
*
* @param g the graph being transformed
* @param f function to map the graph's materialized value
* @return a graph with same semantics as the given graph, except from the materialized value which is mapped using f.
*/
def mapMaterializedValue[S <: Shape, M1, M2](g: Graph[S, M1])(f: M1 => M2): Graph[S, M2] =
new GenericGraph(g.shape, g.traversalBuilder).mapMaterializedValue(f)
/**
* Scala API, see https://github.com/akka/akka/issues/28501 for discussion why this can't be an instance method on class Graph.
* @param self the graph whose materialized value will be mapped
*/
final implicit class GraphMapMatVal[S <: Shape, M](self: Graph[S, M]) {
/**
* Transform the materialized value of this Graph, leaving all other properties as they were.
*
* @param f function to map the graph's materialized value
*/
def mapMaterializedValue[M2](f: M => M2): Graph[S, M2] = Graph.mapMaterializedValue(self)(f)
}
}
/**
* INTERNAL API
*
* Allows creating additional API on top of an existing Graph by extending from this class and
* accessing the delegate
*/
@InternalApi
private[stream] abstract class GraphDelegate[+S <: Shape, +Mat](delegate: Graph[S, Mat]) extends Graph[S, Mat] {
final override def shape: S = delegate.shape
final override private[stream] def traversalBuilder: TraversalBuilder = delegate.traversalBuilder
}