gpt4 book ai didi

scala - Akka-http 并将 Future[HttpResponse] 转换为 Future[String]

转载 作者:行者123 更新时间:2023-12-01 11:27:02 25 4
gpt4 key购买 nike

我正在使用 Akka HTTP,并且我有一个查询 URL 的客户端。代码是这样的:

def f1(): Future[HttpResponse] =  { ... }

我想编写一个 f2 函数,该函数接受 HttpResponse,但将其转换为 Future[String],其中 String 是消息的主体。所以我在寻找:

def f2(): Future[String] = f1().map(...)

我无法将其转换为正常工作。

问题 #1:我认为这更像是一个基本的 Scala 问题。我将如何转换这个 future ?我能得到的最好的是:

def f2:Future[String] = {
f1().map (_.entity.toStrict(300.milli).map(_.data.utf8String))
}

这是行不通的,因为我最终得到了一个 Future[Future[String]]

问题 #2:根据我的理解,这是一个 akka-http 问题。

f1().map(_.toStrict()) 是否暗示 f1().map(_.entity.toStrict())

如果是这样,我如何才能访问该实体而不必对其调用 toStrict?

最佳答案

//1. 你可以使用 for comprehension (with Option[Option[T]], Future[Future[T]], Try[Try[T]) or flatMap or .map { _ pipeTo self } (if在 Actor 中)。

val httpResponseF: Future[HttpResponse] = Future.successful(HttpResponse(entity = HttpEntity.Strict(ContentTypes.`text/plain(UTF-8)`, data = ByteString("test"))))
val res: Future[String] = for {
httpResponse <- httpResponseF
entity <- httpResponse.entity.toStrict(300.milli)
} yield {
entity match {
case HttpEntity.Strict(contentType, data) => data.utf8String
}
}
assert(Await.result(res, 1.second) == "test")

//2. 他们看起来和我不一样:akka.http.scaladsl.model.HttpResponse

def
toStrict(timeout: FiniteDuration)(implicit ec: ExecutionContext, fm: Materializer): Future[Self]

对比

//akka.http.javadsl.model.ResponseEntity

def
toStrict(timeoutMillis: Long, materializer: Materializer): CompletionStage[HttpEntity.Strict]

一个使用隐式。

这是获取字符串作为 http 客户端的一种方法。

object Example {
import scala.concurrent.Future
import akka.actor.ActorSystem
import akka.http.scaladsl.Http
import akka.stream.ActorMaterializer
import akka.stream.scaladsl.Sink
import akka.stream.scaladsl.Source
import akka.http.scaladsl.unmarshalling._
import akka.http.scaladsl.model._
import scala.util.{Try,Success,Failure}
implicit val system = ActorSystem()
implicit val materializer = ActorMaterializer()
implicit val ec = system.dispatcher
// construct a pool client flow with context type `Int`
val poolClientFlow = Http().cachedHostConnectionPool[Int]("akka.io")
val responseFuture: Future[String] =
Source.single(HttpRequest(uri = "/") -> 1)
.via(poolClientFlow)
.mapAsync(1) {
case (Success(response), i) => Unmarshal(response.entity).to[String]
case (Failure(e), i) => Future.failed(e)
}
.runWith(Sink.head)

}

如果有更具体的类型(如果使用 Scala 则更惯用),您尝试解码为而不是字符串,您可以使用此 Json 作为模板创建自定义 Unmarshaller:https://github.com/hseeberger/akka-http-json/blob/master/akka-http-json4s/src/main/scala/de/heikoseeberger/akkahttpjson4s/Json4sSupport.scala否则有 Unmarshallers.String http://doc.akka.io/docs/akka/2.4.3/java/http/routing-dsl/marshalling.html#Unmarshalling

有时检查 Spray 邮件列表和文档会有所帮助,因为它的活跃时间更长,即使在 akka-http 中有一种新方法可以做到这一点,它至少提供了一个起点。

关于scala - Akka-http 并将 Future[HttpResponse] 转换为 Future[String],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36442165/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com