216 lines
6.9 KiB
Scala
216 lines
6.9 KiB
Scala
/**
|
|
* Copyright (C) 2014 Typesafe Inc. <http://www.typesafe.com>
|
|
*/
|
|
package docs.stream
|
|
|
|
import akka.actor.Cancellable
|
|
import akka.stream.scaladsl._
|
|
import akka.stream.testkit.AkkaSpec
|
|
|
|
import scala.concurrent.{ Promise, Future }
|
|
|
|
class FlowDocSpec extends AkkaSpec {
|
|
|
|
implicit val ec = system.dispatcher
|
|
|
|
//#imports
|
|
import akka.stream.ActorFlowMaterializer
|
|
//#imports
|
|
|
|
implicit val mat = ActorFlowMaterializer()
|
|
|
|
"source is immutable" in {
|
|
//#source-immutable
|
|
val source = Source(1 to 10)
|
|
source.map(_ => 0) // has no effect on source, since it's immutable
|
|
source.runWith(Sink.fold(0)(_ + _)) // 55
|
|
|
|
val zeroes = source.map(_ => 0) // returns new Source[Int], with `map()` appended
|
|
zeroes.runWith(Sink.fold(0)(_ + _)) // 0
|
|
//#source-immutable
|
|
}
|
|
|
|
"materialization in steps" in {
|
|
//#materialization-in-steps
|
|
val source = Source(1 to 10)
|
|
val sink = Sink.fold[Int, Int](0)(_ + _)
|
|
|
|
// connect the Source to the Sink, obtaining a RunnableFlow
|
|
val runnable: RunnableFlow[Future[Int]] = source.toMat(sink)(Keep.right)
|
|
|
|
// materialize the flow and get the value of the FoldSink
|
|
val sum: Future[Int] = runnable.run()
|
|
|
|
//#materialization-in-steps
|
|
}
|
|
|
|
"materialization runWith" in {
|
|
//#materialization-runWith
|
|
val source = Source(1 to 10)
|
|
val sink = Sink.fold[Int, Int](0)(_ + _)
|
|
|
|
// materialize the flow, getting the Sinks materialized value
|
|
val sum: Future[Int] = source.runWith(sink)
|
|
//#materialization-runWith
|
|
}
|
|
|
|
"materialization is unique" in {
|
|
//#stream-reuse
|
|
// connect the Source to the Sink, obtaining a RunnableFlow
|
|
val sink = Sink.fold[Int, Int](0)(_ + _)
|
|
val runnable: RunnableFlow[Future[Int]] =
|
|
Source(1 to 10).toMat(sink)(Keep.right)
|
|
|
|
// get the materialized value of the FoldSink
|
|
val sum1: Future[Int] = runnable.run()
|
|
val sum2: Future[Int] = runnable.run()
|
|
|
|
// sum1 and sum2 are different Futures!
|
|
//#stream-reuse
|
|
}
|
|
|
|
"compound source cannot be used as key" in {
|
|
// FIXME #16902 This example is now turned around
|
|
// The WRONG case has been switched
|
|
//#compound-source-is-not-keyed-runWith
|
|
import scala.concurrent.duration._
|
|
case object Tick
|
|
|
|
val timer = Source(initialDelay = 1.second, interval = 1.seconds, tick = () => Tick)
|
|
|
|
val timerCancel: Cancellable = Sink.ignore.runWith(timer)
|
|
timerCancel.cancel()
|
|
|
|
val timerMap = timer.map(tick => "tick")
|
|
// materialize the flow and retrieve the timers Cancellable
|
|
val timerCancellable = Sink.ignore.runWith(timerMap)
|
|
timerCancellable.cancel()
|
|
//#compound-source-is-not-keyed-runWith
|
|
|
|
//#compound-source-is-not-keyed-run
|
|
val timerCancellable2 = timerMap.to(Sink.ignore).run()
|
|
timerCancellable2.cancel()
|
|
//#compound-source-is-not-keyed-run
|
|
}
|
|
|
|
"creating sources, sinks" in {
|
|
//#source-sink
|
|
// Create a source from an Iterable
|
|
Source(List(1, 2, 3))
|
|
|
|
// Create a source from a Future
|
|
Source(Future.successful("Hello Streams!"))
|
|
|
|
// Create a source from a single element
|
|
Source.single("only one element")
|
|
|
|
// an empty source
|
|
Source.empty
|
|
|
|
// Sink that folds over the stream and returns a Future
|
|
// of the final result as its materialized value
|
|
Sink.fold[Int, Int](0)(_ + _)
|
|
|
|
// Sink that returns a Future as its materialized value,
|
|
// containing the first element of the stream
|
|
Sink.head
|
|
|
|
// A Sink that consumes a stream without doing anything with the elements
|
|
Sink.ignore
|
|
|
|
// A Sink that executes a side-effecting call for every element of the stream
|
|
Sink.foreach[String](println(_))
|
|
//#source-sink
|
|
}
|
|
|
|
"various ways of connecting source, sink, flow" in {
|
|
//#flow-connecting
|
|
// Explicitly creating and wiring up a Source, Sink and Flow
|
|
Source(1 to 6).via(Flow[Int].map(_ * 2)).to(Sink.foreach(println(_)))
|
|
|
|
// Starting from a Source
|
|
val source = Source(1 to 6).map(_ * 2)
|
|
source.to(Sink.foreach(println(_)))
|
|
|
|
// Starting from a Sink
|
|
val sink: Sink[Int, Unit] = Flow[Int].map(_ * 2).to(Sink.foreach(println(_)))
|
|
Source(1 to 6).to(sink)
|
|
|
|
//#flow-connecting
|
|
}
|
|
|
|
"various ways of transforming materialized values" in {
|
|
import scala.concurrent.duration._
|
|
|
|
val throttler = Flow(Source(1.second, 1.second, "test")) { implicit builder =>
|
|
tickSource =>
|
|
import FlowGraph.Implicits._
|
|
val zip = builder.add(ZipWith[String, Int, Int](Keep.right))
|
|
tickSource ~> zip.in0
|
|
(zip.in1, zip.out)
|
|
}
|
|
|
|
//#flow-mat-combine
|
|
// An empty source that can be shut down explicitly from the outside
|
|
val source: Source[Int, Promise[Unit]] = Source.lazyEmpty[Int]
|
|
|
|
// A flow that internally throttles elements to 1/second, and returns a Cancellable
|
|
// which can be used to shut down the stream
|
|
val flow: Flow[Int, Int, Cancellable] = throttler
|
|
|
|
// A sink that returns the first element of a stream in the returned Future
|
|
val sink: Sink[Int, Future[Int]] = Sink.head[Int]
|
|
|
|
// By default, the materialized value of the leftmost stage is preserved
|
|
val r1: RunnableFlow[Promise[Unit]] = source.via(flow).to(sink)
|
|
|
|
// Simple selection of materialized values by using Keep.right
|
|
val r2: RunnableFlow[Cancellable] = source.viaMat(flow)(Keep.right).to(sink)
|
|
val r3: RunnableFlow[Future[Int]] = source.via(flow).toMat(sink)(Keep.right)
|
|
|
|
// Using runWith will always give the materialized values of the stages added
|
|
// by runWith() itself
|
|
val r4: Future[Int] = source.via(flow).runWith(sink)
|
|
val r5: Promise[Unit] = flow.to(sink).runWith(source)
|
|
val r6: (Promise[Unit], Future[Int]) = flow.runWith(source, sink)
|
|
|
|
// Using more complext combinations
|
|
val r7: RunnableFlow[(Promise[Unit], Cancellable)] =
|
|
source.viaMat(flow)(Keep.both).to(sink)
|
|
|
|
val r8: RunnableFlow[(Promise[Unit], Future[Int])] =
|
|
source.via(flow).toMat(sink)(Keep.both)
|
|
|
|
val r9: RunnableFlow[((Promise[Unit], Cancellable), Future[Int])] =
|
|
source.viaMat(flow)(Keep.both).toMat(sink)(Keep.both)
|
|
|
|
val r10: RunnableFlow[(Cancellable, Future[Int])] =
|
|
source.viaMat(flow)(Keep.right).toMat(sink)(Keep.both)
|
|
|
|
// It is also possible to map over the materialized values. In r9 we had a
|
|
// doubly nested pair, but we want to flatten it out
|
|
val r11: RunnableFlow[(Promise[Unit], Cancellable, Future[Int])] =
|
|
r9.mapMaterialized {
|
|
case ((promise, cancellable), future) =>
|
|
(promise, cancellable, future)
|
|
}
|
|
|
|
// Now we can use pattern matching to get the resulting materialized values
|
|
val (promise, cancellable, future) = r11.run()
|
|
|
|
// Type inference works as expected
|
|
promise.success(0)
|
|
cancellable.cancel()
|
|
future.map(_ + 3)
|
|
|
|
// The result of r11 can be also achieved by using the Graph API
|
|
val r12: RunnableFlow[(Promise[Unit], Cancellable, Future[Int])] =
|
|
FlowGraph.closed(source, flow, sink)((_, _, _)) { implicit builder =>
|
|
(src, f, dst) =>
|
|
import FlowGraph.Implicits._
|
|
src ~> f ~> dst
|
|
}
|
|
|
|
//#flow-mat-combine
|
|
}
|
|
}
|