2016-02-16 16:56:06 +01:00
|
|
|
/**
|
2016-02-23 12:58:39 +01:00
|
|
|
* Copyright (C) 2016 Lightbend Inc. <http://www.lightbend.com>
|
2016-02-16 16:56:06 +01:00
|
|
|
*/
|
|
|
|
|
package docs.stream
|
|
|
|
|
|
2016-06-18 11:15:17 +02:00
|
|
|
//#stream-imports
|
2016-02-16 16:56:06 +01:00
|
|
|
import akka.stream._
|
|
|
|
|
import akka.stream.scaladsl._
|
2016-06-18 11:15:17 +02:00
|
|
|
//#stream-imports
|
|
|
|
|
|
|
|
|
|
//#other-imports
|
2016-02-16 16:56:06 +01:00
|
|
|
import akka.{ NotUsed, Done }
|
|
|
|
|
import akka.actor.ActorSystem
|
|
|
|
|
import akka.util.ByteString
|
|
|
|
|
import scala.concurrent._
|
|
|
|
|
import scala.concurrent.duration._
|
2016-04-25 19:25:26 +10:00
|
|
|
import java.nio.file.Paths
|
2016-06-18 11:15:17 +02:00
|
|
|
//#other-imports
|
|
|
|
|
|
|
|
|
|
import org.scalatest._
|
|
|
|
|
import org.scalatest.concurrent._
|
2016-02-16 16:56:06 +01:00
|
|
|
|
|
|
|
|
class QuickStartDocSpec extends WordSpec with BeforeAndAfterAll with ScalaFutures {
|
|
|
|
|
implicit val patience = PatienceConfig(5.seconds)
|
|
|
|
|
|
|
|
|
|
//#create-materializer
|
|
|
|
|
implicit val system = ActorSystem("QuickStart")
|
|
|
|
|
implicit val materializer = ActorMaterializer()
|
|
|
|
|
//#create-materializer
|
|
|
|
|
|
|
|
|
|
override def afterAll(): Unit = {
|
|
|
|
|
system.terminate()
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-06 01:23:21 +02:00
|
|
|
def println(any: Any) = () // silence printing stuff
|
|
|
|
|
|
2016-02-16 16:56:06 +01:00
|
|
|
"demonstrate Source" in {
|
|
|
|
|
//#create-source
|
|
|
|
|
val source: Source[Int, NotUsed] = Source(1 to 100)
|
|
|
|
|
//#create-source
|
|
|
|
|
|
|
|
|
|
//#run-source
|
|
|
|
|
source.runForeach(i => println(i))(materializer)
|
|
|
|
|
//#run-source
|
|
|
|
|
|
|
|
|
|
//#transform-source
|
|
|
|
|
val factorials = source.scan(BigInt(1))((acc, next) => acc * next)
|
|
|
|
|
|
|
|
|
|
val result: Future[IOResult] =
|
|
|
|
|
factorials
|
|
|
|
|
.map(num => ByteString(s"$num\n"))
|
2016-04-25 19:25:26 +10:00
|
|
|
.runWith(FileIO.toPath(Paths.get("factorials.txt")))
|
2016-02-16 16:56:06 +01:00
|
|
|
//#transform-source
|
|
|
|
|
|
|
|
|
|
//#use-transformed-sink
|
|
|
|
|
factorials.map(_.toString).runWith(lineSink("factorial2.txt"))
|
|
|
|
|
//#use-transformed-sink
|
|
|
|
|
|
|
|
|
|
//#add-streams
|
|
|
|
|
val done: Future[Done] =
|
|
|
|
|
factorials
|
|
|
|
|
.zipWith(Source(0 to 100))((num, idx) => s"$idx! = $num")
|
|
|
|
|
.throttle(1, 1.second, 1, ThrottleMode.shaping)
|
|
|
|
|
//#add-streams
|
|
|
|
|
.take(3)
|
|
|
|
|
//#add-streams
|
|
|
|
|
.runForeach(println)
|
|
|
|
|
//#add-streams
|
|
|
|
|
|
|
|
|
|
done.futureValue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//#transform-sink
|
|
|
|
|
def lineSink(filename: String): Sink[String, Future[IOResult]] =
|
|
|
|
|
Flow[String]
|
|
|
|
|
.map(s => ByteString(s + "\n"))
|
2016-04-25 19:25:26 +10:00
|
|
|
.toMat(FileIO.toPath(Paths.get(filename)))(Keep.right)
|
2016-02-16 16:56:06 +01:00
|
|
|
//#transform-sink
|
|
|
|
|
|
|
|
|
|
}
|