Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-01-07 | Minimize the number of separate protobuf types. | Christopher Peplin | 1 | -5/+20 | |
2014-01-07 | Revert "Switch back to many subtypes for binary messages." | Christopher Peplin | 1 | -28/+7 | |
This reverts commit 3e954ea9c44bdd00b39d3f0d2cc43662e633c891. | |||||
2014-01-07 | Switch back to many subtypes for binary messages. | Christopher Peplin | 1 | -7/+28 | |
Some protobuf libraries don't support checking if a field exists (they always return a default value), so although this style has more code it is easier to support. | |||||
2014-01-07 | Switch raw data field to uint64 to fit all values and update benchmark. | Christopher Peplin | 1 | -4/+2 | |
2014-01-07 | Remove timestamp from trace JSON before benchmarking - oops! | Christopher Peplin | 1 | -2/+4 | |
The size savings is now about 35%, not 55%. | |||||
2014-01-07 | Update benchmark tool for latest protobuf format. | Christopher Peplin | 1 | -9/+5 | |
2014-01-07 | Add generated protobuf implementations. | Christopher Peplin | 2 | -4/+0 | |
2014-01-07 | Move proto definition to top level. | Christopher Peplin | 2 | -36/+1 | |
2014-01-07 | Use a container type to be able to stream protobufs. | Christopher Peplin | 2 | -7/+26 | |
2014-01-07 | Benchmark how much overhead each encoding adds vs raw CAN. | Christopher Peplin | 1 | -4/+16 | |
2014-01-07 | Benchmark encoding translated messages as binary, too. | Christopher Peplin | 2 | -11/+48 | |
Results for all of my trace files: > ./compare_sizes.py ~/ownCloud/OpenXC\ Traces/peplin/**/*.json 1 For the 89 trace files given... Total transferred raw JSON size is 13.3MB Total transferred raw binary size is 2.1MB Total transferred translated JSON size is 791.0MB Total transferred translated binary size is 318.6MB Total transferred JSON size is 804.3MB Total transferred binary size is 320.6MB Binary encoding is 84.328494% smaller than JSON for raw messages Binary encoding is 59.727489% smaller than JSON for translated messages Binary encoding is 60.133196% smaller than JSON overall | |||||
2014-01-07 | Add benchmarking tests for binary encoding (moved from cantranslator). | Christopher Peplin | 5 | -0/+57 | |