前言
最近的工作中开始使用Google的Protobuf构建REST API,按照现在使用的感觉,除了应为Protobuf的特性,接口被严格确定下来之外,暂时还么有感受到其他特别的好处。说是Protobuf比Json的序列化更小更快,但按照目前的需求,估计很就都没有还不会有这个性能的需要。既然是全新的技术,我非常地乐意学习。
在MVC的代码架构中,Protbuf是Controller层用到的技术,为了能够将每个层进行划分,使得Service层的实现不依赖于Protobuf,需要将Protobuf的实体类,这里称之为ProtoBean吧,转化为POJO。在实现的过程中,有涉及到了Protobuf转Json的实现,因为有了这篇文章。而ProtoBean转POJO的讲解我会在另一篇,或者是几篇文章中进行讲解,因为会比较复杂。
这篇文章已经放了很久很久了,一直希望去看两个JsonFormat的实现。想看完了再写的,但还是先写出来吧,拖着挺累的。
为了读者可以顺畅地阅读,文章中涉及到地链接都会在最后给出,而不会在行文中间给出。
测试使用的Protobuf文件如下:
1 | syntax = "proto3"; |
可选择的工具
可以将ProtoBean转化为Json的工具有两个,一个是com.google.protobuf/protobuf-java-util
,另一个是com.googlecode.protobuf-java-format/protobuf-java-format
,两个的性能和效果还有待对比。这里使用的是com.google.protobuf/protobuf-java-util
,原因在于protobuf-java-format
中的JsonFormat
会将Map格式化为{"key": "", "value": ""}
的对象列表,而protobuf-java-util
中的JsonFormat
能够序列化为理想的key-value的结构。
1 | <!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java-util --> |
代码实现
1 | import com.google.gson.Gson; |
对于一般的数据类型,如int,double,float,long,string都能够按照理想的方式进行转化。对于protobuf中的enum类型字段,会被按照enum的名称转化为string。对于bytes类型的字段,则会转化为utf8类型的字符串。
Any 以及 Oneof
Any
和 Oneof
是protobuf中比较特别的两个类型,如果尝试将含有Oneof
字段转化为json,是可以正常转化的,字段名为被赋值的oneof字段的名称。
而对于Any的处理,则会比较特别。如果直接转化,会得到类似如下的异常,无法找到typeUrl指定的类型。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16com.google.protobuf.InvalidProtocolBufferException: Cannot find type for url: type.googleapis.com/data.proto.BaseData
at com.google.protobuf.util.JsonFormat$PrinterImpl.printAny(JsonFormat.java:807)
at com.google.protobuf.util.JsonFormat$PrinterImpl.access$900(JsonFormat.java:639)
at com.google.protobuf.util.JsonFormat$PrinterImpl$1.print(JsonFormat.java:709)
at com.google.protobuf.util.JsonFormat$PrinterImpl.print(JsonFormat.java:688)
at com.google.protobuf.util.JsonFormat$PrinterImpl.printSingleFieldValue(JsonFormat.java:1183)
at com.google.protobuf.util.JsonFormat$PrinterImpl.printSingleFieldValue(JsonFormat.java:1048)
at com.google.protobuf.util.JsonFormat$PrinterImpl.printField(JsonFormat.java:972)
at com.google.protobuf.util.JsonFormat$PrinterImpl.print(JsonFormat.java:950)
at com.google.protobuf.util.JsonFormat$PrinterImpl.print(JsonFormat.java:691)
at com.google.protobuf.util.JsonFormat$Printer.appendTo(JsonFormat.java:332)
at com.google.protobuf.util.JsonFormat$Printer.print(JsonFormat.java:342)
at io.gitlab.donespeak.javatool.toolprotobuf.ProtoJsonUtil.toJson(ProtoJsonUtil.java:12)
at io.gitlab.donespeak.javatool.toolprotobuf.ProtoJsonUtilTest.toJson2(ProtoJsonUtilTest.java:72)
...
为了解决这个问题,我们需要手动添加typeUrl对应的类型,我是从Tomer Rothschild的文章《Protocol Buffers, Part 3 — JSON Format》找到的答案。找到之前可是苦恼了很久。事实上,在print方法的上方就显赫地写着该方法会因为没有any的types而抛出异常。
1 | /** |
A TypeRegistry is used to resolve Any messages in the JSON conversion. You must provide a TypeRegistry containing all message types used in Any message fields, or the JSON conversion will fail because data in Any message fields is unrecognizable. You don’t need to supply a TypeRegistry if you don’t use Any message fields.
上面的实现无法处理得了 Any
类型的数据。需要自己添加 TypeRegirstry
才能进行转化。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public void toJson() throws IOException {
// 可以为 TypeRegistry 添加多个不同的Descriptor
JsonFormat.TypeRegistry typeRegistry = JsonFormat.TypeRegistry.newBuilder()
.add(DataTypeProto.BaseData.getDescriptor())
.build();
// usingTypeRegistry 方法会重新构建一个Printer
JsonFormat.Printer printer = JsonFormat.printer()
.usingTypeRegistry(typeRegistry);
String json = printer.print(DataTypeProto.DataWithAny.newBuilder()
.setAnyVal(
Any.pack(
DataTypeProto.BaseData.newBuilder().setInt32Val(1235).build()))
.build());
System.out.println(json);
}
从上面的实现中,很容易会想到一个问题:对于一个Any类型的字段,必须先注册所有相关的Message类型,才能够正常地进行转化为Json。同理,当我们使用JsonFormat.parser().merge(json, targetBuilder);
时候,也必须先给Printer添加相关的Message,这必然导致整个代码出现很多重复。
为了解决这个问题,我尝试直接从Message
中取出所有的Any
字段中值的Message的Descriptor
,然后再创建Printer
,这样就可以得到一个通用的转化方法了。最后还是失败了。原本以为会卡在repeated
或者map
的范型中,但最后发现这些都不是问题,至少在从protoBean转化为json中不会是问题。问题出在Any的设计本身无法实现这个需求。
简单地讲一下Any
,Any的源码不是很多,可以大概抽取部分代码如下:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52public final class Any
extends GeneratedMessageV3 implements AnyOrBuilder {
// typeUrl_ 会是一个 java.lang.String 值
private volatile Object typeUrl_;
private ByteString value_;
private static String getTypeUrl(String typeUrlPrefix, Descriptors.Descriptor descriptor) {
return typeUrlPrefix.endsWith("/")
? typeUrlPrefix + descriptor.getFullName()
: typeUrlPrefix + "/" + descriptor.getFullName();
}
public static <T extends com.google.protobuf.Message> Any pack(T message) {
return Any.newBuilder()
.setTypeUrl(getTypeUrl("type.googleapis.com",
message.getDescriptorForType()))
.setValue(message.toByteString())
.build();
}
public static <T extends Message> Any pack(T message, String typeUrlPrefix) {
return Any.newBuilder()
.setTypeUrl(getTypeUrl(typeUrlPrefix,
message.getDescriptorForType()))
.setValue(message.toByteString())
.build();
}
public <T extends Message> boolean is(Class<T> clazz) {
T defaultInstance = com.google.protobuf.Internal.getDefaultInstance(clazz);
return getTypeNameFromTypeUrl(getTypeUrl()).equals(
defaultInstance.getDescriptorForType().getFullName());
}
private volatile Message cachedUnpackValue;
"unchecked") .lang.SuppressWarnings(
public <T extends Message> T unpack(Class<T> clazz) throws InvalidProtocolBufferException {
if (!is(clazz)) {
throw new InvalidProtocolBufferException("Type of the Any message does not match the given class.");
}
if (cachedUnpackValue != null) {
return (T) cachedUnpackValue;
}
T defaultInstance = com.google.protobuf.Internal.getDefaultInstance(clazz);
T result = (T) defaultInstance.getParserForType().parseFrom(getValue());
cachedUnpackValue = result;
return result;
}
...
}
从上面的代码中,我们可以很容易地看出,Any类型的字段存储的是Any类型的Message,与原本的Message值没有关系。而保存为Any之后,Any会将其保存到ByteString的value_
中,并构建一个typeUrl_
,所以从一个Any对象中,我们是无法得知原本用于构造该Any对象的Message对象的类型是什么(typeUrl_
只是给出了一个描述,无法用反射等方法得到原本的类类型)。在unpack
方法,实现用的方法是先用class构建出一个示例对象,在用parseFrom
方法恢复原本的值。到这里我就特别好奇,为什么Any
这个类就不能保存value原本的类类型进去呢?或者直接将value定义为Message对象也好呀,这样处理起来就会方便很多,而且也不会影响到序列化才对吧。要能够渗透设计者的意图,还有很多需要学习了解的地方。
写到最后,还是没有办法按照想法中那样,写出一个直接将Message转化为json的通用方法。虽然没法那么智能,那就手动将所有能够的Message都注册进去吧。
1 | package io.gitlab.donespeak.javatool.toolprotobuf; |
通过Gson进行实现
在查找资料的过程中,还发现了一种通过Gson完成的转化方法。来自Alexander Moses的《Converting Protocol Buffers data to Json and back with Gson Type Adapters》。但我觉得他的这篇文章中有几点没有说对,一个是protbuf的插件现在还是有不错的,比如Idea就很容易找到,vscode的也很容易搜到,eclipse的可以用protobuf-dt(这个dt会有点问题,有机会讲下)。文章写得很是清楚,我这里主要是将他的实现改成更加通用一点。
这个实现还是上面的JsonFormat
,所以也没有支持Any的转化。如果想支持Any,可以按照上面的代码进行修改,这里就不多做修改了。
1 | package io.gitlab.donespeak.javatool.toolprotobuf; |