featurebase/vendor/github.com/gogo/protobuf
2016-11-29 13:35:23 -06:00
..
_conformance Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
codec Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
gogoproto Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
gogoreplace Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
io Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
jsonpb Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
plugin Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
proto Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
protobuf Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
protoc-gen-combo Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
protoc-gen-gofast Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
protoc-gen-gogo Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
protoc-gen-gogofast Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
protoc-gen-gogofaster Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
protoc-gen-gogoslick Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
protoc-gen-gogotypes Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
protoc-gen-gostring Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
protoc-min-version Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
sortkeys Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
test Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
types Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
vanity Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
version Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
.gitignore Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
.mailmap Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
.travis.yml Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
AUTHORS updated vendors 2016-11-03 16:14:11 +03:00
bench.md Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
CONTRIBUTORS updated vendors 2016-11-03 16:14:11 +03:00
extensions.md Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
GOLANG_CONTRIBUTORS Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
install-protobuf.sh Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
LICENSE updated vendors 2016-11-03 16:14:11 +03:00
Makefile Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
README Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00
Readme.md Switch to Glide.sh for dependency management (Fixes #145) 2016-11-29 13:35:23 -06:00

Protocol Buffers for Go with Gadgets

Build Status

gogoprotobuf is a fork of golang/protobuf with extra code generation features.

This code generation is used to achieve:

  • fast marshalling and unmarshalling
  • more canonical Go structures
  • goprotobuf compatibility
  • less typing by optionally generating extra helper code
  • peace of mind by optionally generating test and benchmark code
  • other serialization formats

Keeping track of how up to date gogoprotobuf is relative to golang/protobuf is done in this issue

Users

These projects use gogoprotobuf:

Please lets us know if you are using gogoprotobuf by posting on our GoogleGroup.

Mentioned

Getting Started

There are several ways to use gogoprotobuf, but for all you need to install go and protoc. After that you can choose:

  • Speed
  • More Speed and more generated code
  • Most Speed and most customization

Installation

To install it, you must first have Go (at least version 1.3.3) installed (see http://golang.org/doc/install). Go 1.5.4, 1.6.3 and 1.7.1 are continuously tested.

Next, install the standard protocol buffer implementation from https://github.com/google/protobuf. Most versions from 2.3.1 should not give any problems, but 2.5.0, 2.6.1 and 3.0.2 are continuously tested.

Speed

Install the protoc-gen-gofast binary

go get github.com/gogo/protobuf/protoc-gen-gofast

Use it to generate faster marshaling and unmarshaling go code for your protocol buffers.

protoc --gofast_out=. myproto.proto

This does not allow you to use any of the other gogoprotobuf extensions.

More Speed and more generated code

Fields without pointers cause less time in the garbage collector. More code generation results in more convenient methods.

Other binaries are also included:

protoc-gen-gogofast (same as gofast, but imports gogoprotobuf)
protoc-gen-gogofaster (same as gogofast, without XXX_unrecognized, less pointer fields)
protoc-gen-gogoslick (same as gogofaster, but with generated string, gostring and equal methods)

Installing any of these binaries is easy. Simply run:

go get github.com/gogo/protobuf/proto
go get github.com/gogo/protobuf/{binary}
go get github.com/gogo/protobuf/gogoproto

These binaries allow you to using gogoprotobuf extensions.

Most Speed and most customization

Customizing the fields of the messages to be the fields that you actually want to use removes the need to copy between the structs you use and structs you use to serialize. gogoprotobuf also offers more serialization formats and generation of tests and even more methods.

Please visit the extensions page for more documentation.

Install protoc-gen-gogo:

go get github.com/gogo/protobuf/proto
go get github.com/gogo/protobuf/jsonpb
go get github.com/gogo/protobuf/protoc-gen-gogo
go get github.com/gogo/protobuf/gogoproto

GRPC

It works the same as golang/protobuf, simply specify the plugin. Here is an example using gofast:

protoc --gofast_out=plugins=grpc:. my.proto