如何在Play中直接返回协议缓冲区! 2.0框架?

时间:2012-08-23 06:44:19

标签: scala playframework-2.0 protocol-buffers

Play可让您直接在控制器中返回多种不同类型,例如JsValueXML以及纯文本。我想扩展它以接受协议缓冲区,所以我可以写:

def page = Action {
    val protobuf = //...
    Ok(protobuf)
}

1 个答案:

答案 0 :(得分:10)

Java中的协议缓冲区都从单个com.google.protobuf.Message类继承。

在应用程序控制器的范围内添加以下隐式转换:

implicit def contentTypeOf_Protobuf: ContentTypeOf[Message] = {
  ContentTypeOf[Message](Some("application/x-protobuf"))
}
implicit def writeableOf_Protobuf: Writeable[Message] = {
  Writeable[Message](message => message.toByteArray())
}

这些将允许Play直接在由Ok(protobuf)

等状态给出的响应中序列化缓冲区

更新

我已经发布了一个反向情况的工作示例,其中可以解析传入的请求并自动提取protobuf。

解析器采用此示例中的操作形式,您也可以编写一个正文解析器:

object Put extends Controller {
  def index = DecodeProtobuf(classOf[MyProtobuf]) { stack :MyProtobuf =>
    Action {
      // do something with stack
    }
  }
}

发送请求的客户端应将缓冲区序列化为字节数组,并将其直接传递给请求主体。