为什么要用flatbuffers 官网
FlatBuffers (binary) | Protocol Buffers LITE | Rapid JSON | FlatBuffers (JSON) | pugixml | Raw structs | |
---|---|---|---|---|---|---|
Decode + Traverse + Dealloc (1 million times, seconds) | 0.08 | 302 | 583 | 105 | 196 | 0.02 |
Decode / Traverse / Dealloc (breakdown) | 0 / 0.08 / 0 | 220 / 0.15 / 81 | 294 / 0.9 / 287 | 70 / 0.08 / 35 | 41 / 3.9 / 150 | 0 / 0.02 / 0 |
Encode (1 million times, seconds) | 3.2 | 185 | 650 | 169 | 273 | 0.15 |
Wire format size (normal / zlib, bytes) | 344 / 220 | 228 / 174 | 1475 / 322 | 1029 / 298 | 1137 / 341 | 312 / 187 |
Memory needed to store decoded wire (bytes / blocks) | 0 / 0 | 760 / 20 | 65689 / 4 | 328 / 1 | 34194 / 3 | 0 / 0 |
Transient memory allocated during decode (KB) | 0 | 1 | 131 | 4 | 34 | 0 |
Generated source code size (KB) | 4 | 61 | 0 | 4 | 0 | 0 |
Field access in handwritten traversal code | typed accessors | typed accessors | manual error checking | typed accessors | manual error checking | typed but no safety |
Library source code (KB) | 15 | some subset of 3800 | 87 | 43 | 327 | 0 |
环境配置
下载flatbuffers源码
1git clone https://github.com/google/flatbuffers.gitcmake (源码中已包含cmake,也可自行下载)
- 编译出flatc
进入 flatbuffers/
java层源码支持
|
|
- 安装mvn
1.去官网下载mvn源码mvn下载
2.在.bash_profile中加入如下配置
3.进入flatbuffers/
本质是将flatbuffers/java目录下源码打成jar,但是此目录下没有配置对应的pom.xml
本人尝试自己编写pom文件失败后,最后发现flatbuffers/目录下有此配置文件,坑,在此目录下运行以下命令,会生成target文件夹,在target/文件中找到flatbuffers-java-1.9.0-sources.jar
|
|
scheme文件编写
|
|
types
括号里是别名
- 8 bit: byte (int8), ubyte (uint8), bool
- 16 bit: short (int16), ushort (uint16)
- 32 bit: int (int32), uint (uint32), float (float32)
- 64 bit: long (int64), ulong (uint64), double (float64)
编译scheme文件
根据schme文件编译生成java entity文件
根据schme文件编译生成c++ 头文件
|
|
根据.proto文件生成.fbs(将protobuffer格式转为flatbuffer)
|
|
根据.fbs文件和.bin文件生成json
|
|
根据schme文件和 json数据文件生成所对应的flatbuffers格式的数据文件
|
|
了解其它相关命令官方文档
序列化
以下面这个scheme为例
java层序列化到文件
java反序列化
|
|
参考:http://coolpers.github.io/
https://www.jianshu.com/p/03a2e8918f8a