如何将akka http与akka流绑定?

问题描述 投票:2回答:1

我正在尝试使用流而不是纯粹的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)
            }
          }
        }
      }
    }
  }
}

我不确定这是否是正确的方法,或者即使这是一个好的方法,或者如果我应该使用actor与路径交互,使用ask模式然后在actor内部,流式传输所有内容。

有任何想法吗?

scala akka akka-stream akka-http
1个回答
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))
    }
  }
}    
© www.soinside.com 2019 - 2024. All rights reserved.