我尝试使用流而不是纯粹的actor来处理http请求,我带来了以下代码:
trait ImagesRoute {
val log = LoggerFactory.getLogger(this.getClass)
implicit def actorRefFactory: ActorRefFactory
implicit def materializer: ActorMaterializer
val source =
Source
.actorRef[Image](Int.MaxValue, OverflowStrategy.fail)
.via(Flow[Image].mapAsync(1)(ImageRepository.add))
.toMat(Sink.asPublisher(true))(Keep.both)
val route = {
pathPrefix("images") {
pathEnd {
post {
entity(as[Image]) { image =>
val (ref, publisher) = source.run()
val addFuture = Source.fromPublisher(publisher)
val future = addFuture.runWith(Sink.head[Option[Image]])
ref ! image
onComplete(future.mapTo[Option[Image]]) {
case Success(img) =>
complete(Created, img)
case Failure(e) =>
log.error("Error adding image resource", e)
complete(InternalServerError, e.getMessage)
}
}
}
}
}
}
}
我不确定这是否是正确的方法,或者即使这是一个好方法,或者我应该使用演员与路线交互,使用ask模式然后在actor中,流一切。
有什么想法吗?
答案 0 :(得分:5)
如果您只想从实体中获得1张图片,那么您不需要从ActorRef创建Source
而您不需要Sink.asPublisher
,可以简单地使用Source.single
:
def imageToComplete(img : Option[Image]) : StandardRoute =
img.map(i => complete(Created, i))
.getOrElse {
log error ("Error adding image resource", e)
complete(InternalServerError, e.getMessage
}
...
entity(as[Image]) { image =>
val future : Future[StandardRoute] =
Source.single(image)
.via(Flow[Image].mapAsync(1)(ImageRepository.add))
.runWith(Sink.head[Option[Image]])
.map(imageToComplete)
onComplete(future)
}
进一步简化您的代码,您只处理1个图像这一事实意味着Streams是不必要的,因为只需要1个元素就不需要背压:
val future : Future[StandardRoute] = ImageRepository.add(image)
.map(imageToComplete)
onComplete(future)
在你指出的评论中
"这只是一个简单的例子,但流管道应该是 更大的做很多事情,比如联系外部资源和 最终回到压力的事情"
这仅适用于您的实体是图像流的情况。如果您每次HttpRequest只处理1个图像,那么背压永远不会适用,您创建的任何流都将是slower version of a Future。
如果您的实体实际上是图像流,那么您可以将其用作流的一部分:
val byteStrToImage : Flow[ByteString, Image, _] = ???
val imageToByteStr : Flow[Image, Source[ByteString], _] = ???
def imageOptToSource(img : Option[Image]) : Source[Image,_] =
Source fromIterator img.toIterator
val route = path("images") {
post {
extractRequestEntity { reqEntity =>
val stream = reqEntity.via(byteStrToImage)
.via(Flow[Image].mapAsync(1)(ImageRepository.add))
.via(Flow.flatMapConcat(imageOptToSource))
.via(Flow.flatMapConcat(imageToByteStr))
complete(HttpResponse(status=Created,entity = stream))
}
}
}