akka.stream.alpakka.s3.impl.DiskBuffer.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of akka-stream-alpakka-s3_2.11 Show documentation
Show all versions of akka-stream-alpakka-s3_2.11 Show documentation
Alpakka is a Reactive Enterprise Integration library for Java and Scala, based on Reactive Streams and Akka.
/*
* Copyright (C) 2016-2018 Lightbend Inc.
*/
package akka.stream.alpakka.s3.impl
import java.io.{File, FileOutputStream}
import java.nio.BufferOverflowException
import java.nio.file.Files
import java.util.concurrent.atomic.AtomicInteger
import akka.NotUsed
import akka.dispatch.ExecutionContexts
import akka.stream.ActorAttributes
import akka.stream.Attributes
import akka.stream.FlowShape
import akka.stream.Inlet
import akka.stream.Outlet
import akka.stream.scaladsl.FileIO
import akka.stream.stage.GraphStage
import akka.stream.stage.GraphStageLogic
import akka.stream.stage.InHandler
import akka.stream.stage.OutHandler
import akka.util.ByteString
import java.nio.file.Path
/**
* Buffers the complete incoming stream into a file, which can then be read several times afterwards.
*
* The stage waits for the incoming stream to complete. After that, it emits a single Chunk item on its output. The Chunk
* contains a bytestream source that can be materialized multiple times, and the total size of the file.
*
* @param maxMaterializations Number of expected materializations for the completed chunk. After this, the temp file is deleted.
* @param maxSize Maximum size on disk to buffer
*/
private[alpakka] final class DiskBuffer(maxMaterializations: Int, maxSize: Int, tempPath: Option[Path])
extends GraphStage[FlowShape[ByteString, Chunk]] {
require(maxMaterializations > 0, "maxMaterializations should be at least 1")
require(maxSize > 0, "maximumSize should be at least 1")
val in = Inlet[ByteString]("DiskBuffer.in")
val out = Outlet[Chunk]("DiskBuffer.out")
override val shape = FlowShape.of(in, out)
override def initialAttributes = ActorAttributes.dispatcher("akka.stream.default-blocking-io-dispatcher")
override def createLogic(attr: Attributes): GraphStageLogic =
new GraphStageLogic(shape) with OutHandler with InHandler {
val path: File = tempPath
.map(dir => Files.createTempFile(dir, "s3-buffer-", ".bin"))
.getOrElse(Files.createTempFile("s3-buffer-", ".bin"))
.toFile
path.deleteOnExit()
var length = 0
val pathOut = new FileOutputStream(path)
override def onPull(): Unit = if (isClosed(in)) emit() else pull(in)
override def onPush(): Unit = {
val elem = grab(in)
length += elem.size
if (length > maxSize) {
throw new BufferOverflowException()
}
pathOut.write(elem.toArray)
pull(in)
}
override def onUpstreamFinish(): Unit = {
if (isAvailable(out)) emit()
completeStage()
}
override def postStop(): Unit =
// close stream even if we didn't emit
try { pathOut.close() } catch { case x: Throwable => () }
private def emit(): Unit = {
pathOut.close()
val deleteCounter = new AtomicInteger(maxMaterializations)
val src = FileIO.fromPath(path.toPath, 65536).mapMaterializedValue { f =>
if (deleteCounter.decrementAndGet() <= 0)
f.onComplete { _ =>
path.delete()
}(ExecutionContexts.sameThreadExecutionContext)
NotUsed
}
emit(out, Chunk(src, length), () => completeStage())
}
setHandlers(in, out, this)
}
}