Dart-RPC:使用 Protocol Buffers 序列化而不是 JSON

Posted

技术标签:

【中文标题】Dart-RPC:使用 Protocol Buffers 序列化而不是 JSON【英文标题】:Dart-RPC: Use Protocol Buffers serialisation instead of JSON 【发布时间】:2015-08-24 05:44:25 【问题描述】:

默认情况下,Dart-RPC 在服务器和客户端之间传输对象(类实例)时使用 JSON 序列化。

如何改用Protobuf (Protocol Buffers) 序列化? 是否可以使用Accept 请求标头指定序列化方法(如内容类型)?

这是我尝试过的,

我使用了以下代表Person 实体的.proto 定义文件:

message Person 
  required string name = 1;
  required int32 id = 2;
  optional string email = 3;

使用protoc-gen-dart plugin为我生成person.pb.dart,通过运行命令:

protoc person.proto --dart_out=. --plugin ./protoc-gen-dart

还有一些样板 dart-rpc 代码:

import 'dart:io';
import 'package:rpc/rpc.dart';
import 'person.pb.dart';

const String _API_PREFIX = '/api';
final ApiServer _apiServer =
new ApiServer(apiPrefix: _API_PREFIX, prettyPrint: true);

main() async 
  _apiServer.addApi(new Cloud());
  _apiServer.enableDiscoveryApi();

  HttpServer server = await HttpServer.bind(InternetAddress.ANY_IP_V4, 8080);
  server.listen(_apiServer.httpRequestHandler);


@ApiClass(version: 'v1')
class Cloud 
  @ApiMethod(method: 'GET', path: 'resource/name')
  Person getResource(String name) 

    Person p = new Person()
      ..id = 1
      ..name = name
      ..email = 'a@a.a';

    return p; // ??? p.writeToBuffer(); ???
  

更新

打开了一个功能请求:https://github.com/dart-lang/rpc/issues/62

【问题讨论】:

【参考方案1】:

rpc 仅支持 JSON。您可以在 GitHub 存储库中创建功能请求。

【讨论】:

以上是关于Dart-RPC:使用 Protocol Buffers 序列化而不是 JSON的主要内容,如果未能解决你的问题,请参考以下文章

buff是啥意思

Buff系统

Buff是啥意思?

buff是啥意思?

buff啥意思

Linux中的buff/cache内存