mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-30 17:53:21 -04:00 
			
		
		
		
	Update client-go to v10.0.0 (Kubernetes 1.13) (#2382)
* Update client-go to v10.0.0 (Kubernetes 1.13) This fix updates client-go to v10.0.0 which matches Kubernetes 1.13 (released several days ago). Other changes in Gopkg.yaml: - Updated apimachinary, api, klog, yaml associated with k8s version go dep will not automatically match the version. - Added [prune] field (otherwise go dep will not prune automatically) Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Updated Gopkg.lock Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Updated vendor for client-go v10.0.0 Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
		
							
								
								
									
										3
									
								
								vendor/github.com/gogo/protobuf/.gitignore
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								vendor/github.com/gogo/protobuf/.gitignore
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,3 +0,0 @@ | ||||
| ._* | ||||
| *.js | ||||
| *.js.map | ||||
							
								
								
									
										8
									
								
								vendor/github.com/gogo/protobuf/.mailmap
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								vendor/github.com/gogo/protobuf/.mailmap
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,8 +0,0 @@ | ||||
| Walter Schulze	<awalterschulze@gmail.com>	Walter Schulze <walter@vastech.co.za> | ||||
| Walter Schulze	<awalterschulze@gmail.com>	<walter@vastech.co.za> | ||||
| Walter Schulze	<awalterschulze@gmail.com>  awalterschulze <awalterschulze@gmail.com> | ||||
| Walter Schulze	<awalterschulze@gmail.com>	awalterschulze@gmail.com <awalterschulze@gmail.com> | ||||
| John Tuley		<john@tuley.org>			<jtuley@pivotal.io> | ||||
| Anton Povarov 	<anton.povarov@gmail.com>	<antoxa@corp.badoo.com> | ||||
| Denis Smirnov 	<denis.smirnov.91@gmail.com> dennwc | ||||
| DongYun Kang    <ceram1000@gmail.com>		<ceram1000@gmail.com> | ||||
							
								
								
									
										20
									
								
								vendor/github.com/gogo/protobuf/.travis.yml
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										20
									
								
								vendor/github.com/gogo/protobuf/.travis.yml
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,20 +0,0 @@ | ||||
| env: | ||||
|   - PROTOBUF_VERSION=2.6.1 | ||||
|   - PROTOBUF_VERSION=3.0.2 | ||||
|   - PROTOBUF_VERSION=3.5.1 | ||||
|  | ||||
| before_install: | ||||
|   - ./install-protobuf.sh | ||||
|   - PATH=/home/travis/bin:$PATH protoc --version | ||||
|  | ||||
| script: | ||||
|   - PATH=/home/travis/bin:$PATH make buildserverall | ||||
|   - echo $TRAVIS_GO_VERSION | ||||
|   - if [[ "$PROTOBUF_VERSION" == "3.5.1" ]] && [[ "$TRAVIS_GO_VERSION" =~ ^1\.9\.[0-9]+$ ]]; then ! git status --porcelain | read || (git status; git diff; exit 1); fi | ||||
|  | ||||
| language: go | ||||
|  | ||||
| go: | ||||
|   - 1.8.x | ||||
|   - 1.9.x | ||||
|   - 1.10beta1 | ||||
							
								
								
									
										162
									
								
								vendor/github.com/gogo/protobuf/Makefile
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										162
									
								
								vendor/github.com/gogo/protobuf/Makefile
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,162 +0,0 @@ | ||||
| # Protocol Buffers for Go with Gadgets | ||||
| # | ||||
| # Copyright (c) 2013, The GoGo Authors. All rights reserved. | ||||
| # http://github.com/gogo/protobuf | ||||
| # | ||||
| # Redistribution and use in source and binary forms, with or without | ||||
| # modification, are permitted provided that the following conditions are | ||||
| # met: | ||||
| # | ||||
| #     * Redistributions of source code must retain the above copyright | ||||
| # notice, this list of conditions and the following disclaimer. | ||||
| #     * Redistributions in binary form must reproduce the above | ||||
| # copyright notice, this list of conditions and the following disclaimer | ||||
| # in the documentation and/or other materials provided with the | ||||
| # distribution. | ||||
| # | ||||
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||||
| # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||||
| # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||||
| # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||||
| # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||||
| # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||||
| # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||||
| # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||||
| # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||||
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||||
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||
|  | ||||
| GO_VERSION:=$(shell go version) | ||||
|  | ||||
| .PHONY: nuke regenerate tests clean install gofmt vet contributors | ||||
|  | ||||
| all: clean install regenerate install tests errcheck vet | ||||
|  | ||||
| buildserverall: clean install regenerate install tests vet js | ||||
|  | ||||
| install: | ||||
| 	go install ./proto | ||||
| 	go install ./gogoproto | ||||
| 	go install ./jsonpb | ||||
| 	go install ./protoc-gen-gogo | ||||
| 	go install ./protoc-gen-gofast | ||||
| 	go install ./protoc-gen-gogofast | ||||
| 	go install ./protoc-gen-gogofaster | ||||
| 	go install ./protoc-gen-gogoslick | ||||
| 	go install ./protoc-gen-gostring | ||||
| 	go install ./protoc-min-version | ||||
| 	go install ./protoc-gen-combo | ||||
| 	go install ./gogoreplace | ||||
|  | ||||
| clean: | ||||
| 	go clean ./... | ||||
|  | ||||
| nuke: | ||||
| 	go clean -i ./... | ||||
|  | ||||
| gofmt: | ||||
| 	gofmt -l -s -w . | ||||
|  | ||||
| regenerate: | ||||
| 	make -C protoc-gen-gogo/descriptor regenerate | ||||
| 	make -C protoc-gen-gogo/plugin regenerate | ||||
| 	make -C protoc-gen-gogo/testdata regenerate | ||||
| 	make -C gogoproto regenerate | ||||
| 	make -C proto/testdata regenerate | ||||
| 	make -C jsonpb/jsonpb_test_proto regenerate | ||||
| 	make -C _conformance regenerate | ||||
| 	make -C types regenerate | ||||
| 	make -C test regenerate | ||||
| 	make -C test/example regenerate | ||||
| 	make -C test/unrecognized regenerate | ||||
| 	make -C test/group regenerate | ||||
| 	make -C test/unrecognizedgroup regenerate | ||||
| 	make -C test/enumstringer regenerate | ||||
| 	make -C test/unmarshalmerge regenerate | ||||
| 	make -C test/moredefaults regenerate | ||||
| 	make -C test/issue8 regenerate | ||||
| 	make -C test/enumprefix regenerate | ||||
| 	make -C test/enumcustomname regenerate | ||||
| 	make -C test/packed regenerate | ||||
| 	make -C test/protosize regenerate | ||||
| 	make -C test/tags regenerate | ||||
| 	make -C test/oneof regenerate | ||||
| 	make -C test/oneof3 regenerate | ||||
| 	make -C test/theproto3 regenerate | ||||
| 	make -C test/mapdefaults regenerate | ||||
| 	make -C test/mapsproto2 regenerate | ||||
| 	make -C test/issue42order regenerate | ||||
| 	make -C proto generate-test-pbs | ||||
| 	make -C test/importdedup regenerate | ||||
| 	make -C test/importduplicate regenerate | ||||
| 	make -C test/custombytesnonstruct regenerate | ||||
| 	make -C test/required regenerate | ||||
| 	make -C test/casttype regenerate | ||||
| 	make -C test/castvalue regenerate | ||||
| 	make -C vanity/test regenerate | ||||
| 	make -C test/sizeunderscore regenerate | ||||
| 	make -C test/issue34 regenerate | ||||
| 	make -C test/empty-issue70 regenerate | ||||
| 	make -C test/indeximport-issue72 regenerate | ||||
| 	make -C test/fuzztests regenerate | ||||
| 	make -C test/oneofembed regenerate | ||||
| 	make -C test/asymetric-issue125 regenerate | ||||
| 	make -C test/filedotname regenerate | ||||
| 	make -C test/nopackage regenerate | ||||
| 	make -C test/types regenerate | ||||
| 	make -C test/proto3extension regenerate | ||||
| 	make -C test/stdtypes regenerate | ||||
| 	make -C test/data regenerate | ||||
| 	make -C test/typedecl regenerate | ||||
| 	make -C test/issue260 regenerate | ||||
| 	make -C test/issue261 regenerate | ||||
| 	make -C test/issue262 regenerate | ||||
| 	make -C test/issue312 regenerate | ||||
| 	make -C test/enumdecl regenerate | ||||
| 	make -C test/typedecl_all regenerate | ||||
| 	make -C test/enumdecl_all regenerate | ||||
| 	make -C test/int64support regenerate | ||||
| 	make -C test/issue322 regenerate | ||||
| 	make -C test/issue330 regenerate | ||||
| 	make gofmt | ||||
|  | ||||
| tests: | ||||
| 	go build ./test/enumprefix | ||||
| 	go test ./... | ||||
| 	(cd test/stdtypes && make test) | ||||
|  | ||||
| vet: | ||||
| 	go vet ./... | ||||
| 	go tool vet --shadow . | ||||
|  | ||||
| errcheck: | ||||
| 	go get github.com/kisielk/errcheck | ||||
| 	errcheck ./test/... | ||||
|  | ||||
| drone: | ||||
| 	sudo apt-get install protobuf-compiler | ||||
| 	(cd $(GOPATH)/src/github.com/gogo/protobuf && make buildserverall) | ||||
|  | ||||
| testall: | ||||
| 	go get -u github.com/golang/protobuf/proto | ||||
| 	make -C protoc-gen-gogo/testdata test | ||||
| 	make -C vanity/test test | ||||
| 	make -C test/registration test | ||||
| 	make tests | ||||
|  | ||||
| bench: | ||||
| 	go get golang.org/x/tools/cmd/benchcmp | ||||
| 	(cd test/mixbench && go build .) | ||||
| 	./test/mixbench/mixbench | ||||
|  | ||||
| contributors: | ||||
| 	git log --format='%aN <%aE>' | sort -fu > CONTRIBUTORS | ||||
|  | ||||
| js: | ||||
| ifeq (go1.9, $(findstring go1.9, $(GO_VERSION))) | ||||
| 	go get -u github.com/gopherjs/gopherjs | ||||
| 	gopherjs build github.com/gogo/protobuf/protoc-gen-gogo | ||||
| endif | ||||
|  | ||||
| update: | ||||
| 	(cd protobuf && make update) | ||||
							
								
								
									
										258
									
								
								vendor/github.com/gogo/protobuf/README
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										258
									
								
								vendor/github.com/gogo/protobuf/README
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,258 +0,0 @@ | ||||
| GoGoProtobuf http://github.com/gogo/protobuf extends  | ||||
| GoProtobuf http://github.com/golang/protobuf | ||||
|  | ||||
| # Go support for Protocol Buffers | ||||
|  | ||||
| Google's data interchange format. | ||||
| Copyright 2010 The Go Authors. | ||||
| https://github.com/golang/protobuf | ||||
|  | ||||
| This package and the code it generates requires at least Go 1.4. | ||||
|  | ||||
| This software implements Go bindings for protocol buffers.  For | ||||
| information about protocol buffers themselves, see | ||||
| 	https://developers.google.com/protocol-buffers/ | ||||
|  | ||||
| ## Installation ## | ||||
|  | ||||
| To use this software, you must: | ||||
| - Install the standard C++ implementation of protocol buffers from | ||||
| 	https://developers.google.com/protocol-buffers/ | ||||
| - Of course, install the Go compiler and tools from | ||||
| 	https://golang.org/ | ||||
|   See | ||||
| 	https://golang.org/doc/install | ||||
|   for details or, if you are using gccgo, follow the instructions at | ||||
| 	https://golang.org/doc/install/gccgo | ||||
| - Grab the code from the repository and install the proto package. | ||||
|   The simplest way is to run `go get -u github.com/golang/protobuf/protoc-gen-go`. | ||||
|   The compiler plugin, protoc-gen-go, will be installed in $GOBIN, | ||||
|   defaulting to $GOPATH/bin.  It must be in your $PATH for the protocol | ||||
|   compiler, protoc, to find it. | ||||
|  | ||||
| This software has two parts: a 'protocol compiler plugin' that | ||||
| generates Go source files that, once compiled, can access and manage | ||||
| protocol buffers; and a library that implements run-time support for | ||||
| encoding (marshaling), decoding (unmarshaling), and accessing protocol | ||||
| buffers. | ||||
|  | ||||
| There is support for gRPC in Go using protocol buffers. | ||||
| See the note at the bottom of this file for details. | ||||
|  | ||||
| There are no insertion points in the plugin. | ||||
|  | ||||
| GoGoProtobuf provides extensions for protocol buffers and GoProtobuf | ||||
| see http://github.com/gogo/protobuf/gogoproto/doc.go | ||||
|  | ||||
| ## Using protocol buffers with Go ## | ||||
|  | ||||
| Once the software is installed, there are two steps to using it. | ||||
| First you must compile the protocol buffer definitions and then import | ||||
| them, with the support library, into your program. | ||||
|  | ||||
| To compile the protocol buffer definition, run protoc with the --gogo_out | ||||
| parameter set to the directory you want to output the Go code to. | ||||
|  | ||||
| 	protoc --gogo_out=. *.proto | ||||
|  | ||||
| The generated files will be suffixed .pb.go.  See the Test code below | ||||
| for an example using such a file. | ||||
|  | ||||
| The package comment for the proto library contains text describing | ||||
| the interface provided in Go for protocol buffers. Here is an edited | ||||
| version. | ||||
|  | ||||
| If you are using any gogo.proto extensions you will need to specify the | ||||
| proto_path to include the descriptor.proto and gogo.proto. | ||||
| gogo.proto is located in github.com/gogo/protobuf/gogoproto | ||||
| This should be fine, since your import is the same. | ||||
| descriptor.proto is located in either github.com/gogo/protobuf/protobuf | ||||
| or code.google.com/p/protobuf/trunk/src/ | ||||
| Its import is google/protobuf/descriptor.proto so it might need some help. | ||||
|  | ||||
| 	protoc --gogo_out=. -I=.:github.com/gogo/protobuf/protobuf *.proto | ||||
|  | ||||
| ========== | ||||
|  | ||||
| The proto package converts data structures to and from the | ||||
| wire format of protocol buffers.  It works in concert with the | ||||
| Go source code generated for .proto files by the protocol compiler. | ||||
|  | ||||
| A summary of the properties of the protocol buffer interface | ||||
| for a protocol buffer variable v: | ||||
|  | ||||
|   - Names are turned from camel_case to CamelCase for export. | ||||
|   - There are no methods on v to set fields; just treat | ||||
|   	them as structure fields. | ||||
|   - There are getters that return a field's value if set, | ||||
| 	and return the field's default value if unset. | ||||
| 	The getters work even if the receiver is a nil message. | ||||
|   - The zero value for a struct is its correct initialization state. | ||||
| 	All desired fields must be set before marshaling. | ||||
|   - A Reset() method will restore a protobuf struct to its zero state. | ||||
|   - Non-repeated fields are pointers to the values; nil means unset. | ||||
| 	That is, optional or required field int32 f becomes F *int32. | ||||
|   - Repeated fields are slices. | ||||
|   - Helper functions are available to aid the setting of fields. | ||||
| 	Helpers for getting values are superseded by the | ||||
| 	GetFoo methods and their use is deprecated. | ||||
| 		msg.Foo = proto.String("hello") // set field | ||||
|   - Constants are defined to hold the default values of all fields that | ||||
| 	have them.  They have the form Default_StructName_FieldName. | ||||
| 	Because the getter methods handle defaulted values, | ||||
| 	direct use of these constants should be rare. | ||||
|   - Enums are given type names and maps from names to values. | ||||
| 	Enum values are prefixed with the enum's type name. Enum types have | ||||
| 	a String method, and a Enum method to assist in message construction. | ||||
|   - Nested groups and enums have type names prefixed with the name of | ||||
|   	the surrounding message type. | ||||
|   - Extensions are given descriptor names that start with E_, | ||||
| 	followed by an underscore-delimited list of the nested messages | ||||
| 	that contain it (if any) followed by the CamelCased name of the | ||||
| 	extension field itself.  HasExtension, ClearExtension, GetExtension | ||||
| 	and SetExtension are functions for manipulating extensions. | ||||
|   - Oneof field sets are given a single field in their message, | ||||
| 	with distinguished wrapper types for each possible field value. | ||||
|   - Marshal and Unmarshal are functions to encode and decode the wire format. | ||||
|  | ||||
| When the .proto file specifies `syntax="proto3"`, there are some differences: | ||||
|  | ||||
|   - Non-repeated fields of non-message type are values instead of pointers. | ||||
|   - Enum types do not get an Enum method. | ||||
|  | ||||
| Consider file test.proto, containing | ||||
|  | ||||
| ```proto | ||||
| 	syntax = "proto2"; | ||||
| 	package example; | ||||
| 	 | ||||
| 	enum FOO { X = 17; }; | ||||
| 	 | ||||
| 	message Test { | ||||
| 	  required string label = 1; | ||||
| 	  optional int32 type = 2 [default=77]; | ||||
| 	  repeated int64 reps = 3; | ||||
| 	  optional group OptionalGroup = 4 { | ||||
| 	    required string RequiredField = 5; | ||||
| 	  } | ||||
| 	} | ||||
| ``` | ||||
|  | ||||
| To create and play with a Test object from the example package, | ||||
|  | ||||
| ```go | ||||
| 	package main | ||||
|  | ||||
| 	import ( | ||||
| 		"log" | ||||
|  | ||||
| 		"github.com/gogo/protobuf/proto" | ||||
| 		"path/to/example" | ||||
| 	) | ||||
|  | ||||
| 	func main() { | ||||
| 		test := &example.Test { | ||||
| 			Label: proto.String("hello"), | ||||
| 			Type:  proto.Int32(17), | ||||
| 			Reps:  []int64{1, 2, 3}, | ||||
| 			Optionalgroup: &example.Test_OptionalGroup { | ||||
| 				RequiredField: proto.String("good bye"), | ||||
| 			}, | ||||
| 		} | ||||
| 		data, err := proto.Marshal(test) | ||||
| 		if err != nil { | ||||
| 			log.Fatal("marshaling error: ", err) | ||||
| 		} | ||||
| 		newTest := &example.Test{} | ||||
| 		err = proto.Unmarshal(data, newTest) | ||||
| 		if err != nil { | ||||
| 			log.Fatal("unmarshaling error: ", err) | ||||
| 		} | ||||
| 		// Now test and newTest contain the same data. | ||||
| 		if test.GetLabel() != newTest.GetLabel() { | ||||
| 			log.Fatalf("data mismatch %q != %q", test.GetLabel(), newTest.GetLabel()) | ||||
| 		} | ||||
| 		// etc. | ||||
| 	} | ||||
| ``` | ||||
|  | ||||
|  | ||||
| ## Parameters ## | ||||
|  | ||||
| To pass extra parameters to the plugin, use a comma-separated | ||||
| parameter list separated from the output directory by a colon: | ||||
|  | ||||
|  | ||||
| 	protoc --gogo_out=plugins=grpc,import_path=mypackage:. *.proto | ||||
|  | ||||
|  | ||||
| - `import_prefix=xxx` - a prefix that is added onto the beginning of | ||||
|   all imports. Useful for things like generating protos in a | ||||
|   subdirectory, or regenerating vendored protobufs in-place. | ||||
| - `import_path=foo/bar` - used as the package if no input files | ||||
|   declare `go_package`. If it contains slashes, everything up to the | ||||
|   rightmost slash is ignored. | ||||
| - `plugins=plugin1+plugin2` - specifies the list of sub-plugins to | ||||
|   load. The only plugin in this repo is `grpc`. | ||||
| - `Mfoo/bar.proto=quux/shme` - declares that foo/bar.proto is | ||||
|   associated with Go package quux/shme.  This is subject to the | ||||
|   import_prefix parameter. | ||||
|  | ||||
| ## gRPC Support ## | ||||
|  | ||||
| If a proto file specifies RPC services, protoc-gen-go can be instructed to | ||||
| generate code compatible with gRPC (http://www.grpc.io/). To do this, pass | ||||
| the `plugins` parameter to protoc-gen-go; the usual way is to insert it into | ||||
| the --go_out argument to protoc: | ||||
|  | ||||
| 	protoc --gogo_out=plugins=grpc:. *.proto | ||||
|  | ||||
| ## Compatibility ## | ||||
|  | ||||
| The library and the generated code are expected to be stable over time. | ||||
| However, we reserve the right to make breaking changes without notice for the | ||||
| following reasons: | ||||
|  | ||||
| - Security. A security issue in the specification or implementation may come to | ||||
|   light whose resolution requires breaking compatibility. We reserve the right | ||||
|   to address such security issues. | ||||
| - Unspecified behavior.  There are some aspects of the Protocol Buffers | ||||
|   specification that are undefined.  Programs that depend on such unspecified | ||||
|   behavior may break in future releases. | ||||
| - Specification errors or changes. If it becomes necessary to address an | ||||
|   inconsistency, incompleteness, or change in the Protocol Buffers | ||||
|   specification, resolving the issue could affect the meaning or legality of | ||||
|   existing programs.  We reserve the right to address such issues, including | ||||
|   updating the implementations. | ||||
| - Bugs.  If the library has a bug that violates the specification, a program | ||||
|   that depends on the buggy behavior may break if the bug is fixed.  We reserve | ||||
|   the right to fix such bugs. | ||||
| - Adding methods or fields to generated structs.  These may conflict with field | ||||
|   names that already exist in a schema, causing applications to break.  When the | ||||
|   code generator encounters a field in the schema that would collide with a | ||||
|   generated field or method name, the code generator will append an underscore | ||||
|   to the generated field or method name. | ||||
| - Adding, removing, or changing methods or fields in generated structs that | ||||
|   start with `XXX`.  These parts of the generated code are exported out of | ||||
|   necessity, but should not be considered part of the public API. | ||||
| - Adding, removing, or changing unexported symbols in generated code. | ||||
|  | ||||
| Any breaking changes outside of these will be announced 6 months in advance to | ||||
| protobuf@googlegroups.com. | ||||
|  | ||||
| You should, whenever possible, use generated code created by the `protoc-gen-go` | ||||
| tool built at the same commit as the `proto` package.  The `proto` package | ||||
| declares package-level constants in the form `ProtoPackageIsVersionX`. | ||||
| Application code and generated code may depend on one of these constants to | ||||
| ensure that compilation will fail if the available version of the proto library | ||||
| is too old.  Whenever we make a change to the generated code that requires newer | ||||
| library support, in the same commit we will increment the version number of the | ||||
| generated code and declare a new package-level constant whose name incorporates | ||||
| the latest version number.  Removing a compatibility constant is considered a | ||||
| breaking change and would be subject to the announcement policy stated above. | ||||
|  | ||||
| ## Plugins ## | ||||
|  | ||||
| The `protoc-gen-go/generator` package exposes a plugin interface, | ||||
| which is used by the gRPC code generation. This interface is not | ||||
| supported and is subject to incompatible changes without notice. | ||||
							
								
								
									
										139
									
								
								vendor/github.com/gogo/protobuf/Readme.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										139
									
								
								vendor/github.com/gogo/protobuf/Readme.md
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,139 +0,0 @@ | ||||
| # Protocol Buffers for Go with Gadgets | ||||
|  | ||||
| [](https://travis-ci.org/gogo/protobuf) | ||||
|  | ||||
| gogoprotobuf is a fork of <a href="https://github.com/golang/protobuf">golang/protobuf</a> 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 | ||||
| <a href="https://github.com/gogo/protobuf/issues/191">issue</a> | ||||
|  | ||||
| ## Users | ||||
|  | ||||
| These projects use gogoprotobuf: | ||||
|  | ||||
|   - <a href="http://godoc.org/github.com/coreos/etcd">etcd</a> - <a href="https://blog.gopheracademy.com/advent-2015/etcd-distributed-key-value-store-with-grpc-http2/">blog</a> - <a href="https://github.com/coreos/etcd/blob/master/etcdserver/etcdserverpb/etcdserver.proto">sample proto file</a> | ||||
|   - <a href="https://www.spacemonkey.com/">spacemonkey</a> - <a href="https://www.spacemonkey.com/blog/posts/go-space-monkey">blog</a> | ||||
|   - <a href="http://badoo.com">badoo</a> - <a href="https://github.com/badoo/lsd/blob/32061f501c5eca9c76c596d790b450501ba27b2f/proto/lsd.proto">sample proto file</a> | ||||
|   - <a href="https://github.com/mesos/mesos-go">mesos-go</a> - <a href="https://github.com/mesos/mesos-go/blob/f9e5fb7c2f50ab5f23299f26b6b07c5d6afdd252/api/v0/mesosproto/authentication.proto">sample proto file</a> | ||||
|   - <a href="https://github.com/mozilla-services/heka">heka</a> - <a href="https://github.com/mozilla-services/heka/commit/eb72fbf7d2d28249fbaf8d8dc6607f4eb6f03351">the switch from golang/protobuf to gogo/protobuf when it was still on code.google.com</a> | ||||
|   - <a href="https://github.com/cockroachdb/cockroach">cockroachdb</a> - <a href="https://github.com/cockroachdb/cockroach/blob/651d54d393e391a30154e9117ab4b18d9ee6d845/roachpb/metadata.proto">sample proto file</a> | ||||
|   - <a href="https://github.com/jbenet/go-ipfs">go-ipfs</a> - <a href="https://github.com/ipfs/go-ipfs/blob/2b6da0c024f28abeb16947fb452787196a6b56a2/merkledag/pb/merkledag.proto">sample proto file</a> | ||||
|   - <a href="https://github.com/philhofer/rkive">rkive-go</a> - <a href="https://github.com/philhofer/rkive/blob/e5dd884d3ea07b341321073882ae28aa16dd11be/rpbc/riak_dt.proto">sample proto file</a> | ||||
|   - <a href="https://www.dropbox.com">dropbox</a> | ||||
|   - <a href="https://srclib.org/">srclib</a> - <a href="https://github.com/sourcegraph/srclib/blob/6538858f0c410cac5c63440317b8d009e889d3fb/graph/def.proto">sample proto file</a> | ||||
|   - <a href="http://www.adyoulike.com/">adyoulike</a> | ||||
|   - <a href="http://www.cloudfoundry.org/">cloudfoundry</a> - <a href="https://github.com/cloudfoundry/bbs/blob/d673710b8c4211037805129944ee4c5373d6588a/models/events.proto">sample proto file</a> | ||||
|   - <a href="http://kubernetes.io/">kubernetes</a> - <a href="https://github.com/kubernetes/kubernetes/tree/88d8628137f94ee816aaa6606ae8cd045dee0bff/cmd/libs/go2idl">go2idl built on top of gogoprotobuf</a> | ||||
|   - <a href="https://dgraph.io/">dgraph</a> - <a href="https://github.com/dgraph-io/dgraph/releases/tag/v0.4.3">release notes</a> - <a href="https://discuss.dgraph.io/t/gogoprotobuf-is-extremely-fast/639">benchmarks</a></a> | ||||
|   - <a href="https://github.com/centrifugal/centrifugo">centrifugo</a> - <a href="https://forum.golangbridge.org/t/centrifugo-real-time-messaging-websocket-or-sockjs-server-v1-5-0-released/2861">release notes</a> - <a href="https://medium.com/@fzambia/centrifugo-protobuf-inside-json-outside-21d39bdabd68#.o3icmgjqd">blog</a> | ||||
|   - <a href="https://github.com/docker/swarmkit">docker swarmkit</a> - <a href="https://github.com/docker/swarmkit/blob/63600e01af3b8da2a0ed1c9fa6e1ae4299d75edb/api/objects.proto">sample proto file</a> | ||||
|   - <a href="https://nats.io/">nats.io</a> - <a href="https://github.com/nats-io/go-nats-streaming/blob/master/pb/protocol.proto">go-nats-streaming</a> | ||||
|   - <a href="https://github.com/pingcap/tidb">tidb</a> - Communication between <a href="https://github.com/pingcap/tipb/blob/master/generate-go.sh#L4">tidb</a> and <a href="https://github.com/pingcap/kvproto/blob/master/generate_go.sh#L3">tikv</a> | ||||
|   - <a href="https://github.com/AsynkronIT/protoactor-go">protoactor-go</a> - <a href="https://github.com/AsynkronIT/protoactor-go/blob/master/protobuf/protoc-gen-protoactor/main.go">vanity command</a> that also generates actors from service definitions | ||||
|   - <a href="https://containerd.io/">containerd</a> - <a href="https://github.com/containerd/containerd/tree/master/cmd/protoc-gen-gogoctrd">vanity command with custom field names</a> that conforms to the golang convention. | ||||
|   - <a href="https://github.com/heroiclabs/nakama">nakama</a> | ||||
|   - <a href="https://github.com/src-d/proteus">proteus</a> | ||||
|   - <a href="https://github.com/go-graphite">carbonzipper stack</a> | ||||
|   - <a href="https://sendgrid.com/">sendgrid</a> | ||||
|   - <a href="https://github.com/zero-os/0-stor">zero-os/0-stor</a> | ||||
|  | ||||
| Please let us know if you are using gogoprotobuf by posting on our <a href="https://groups.google.com/forum/#!topic/gogoprotobuf/Brw76BxmFpQ">GoogleGroup</a>. | ||||
|  | ||||
| ### Mentioned | ||||
|  | ||||
|   - <a href="http://www.slideshare.net/albertstrasheim/serialization-in-go">Cloudflare - go serialization talk - Albert Strasheim</a> | ||||
|   - <a href="https://youtu.be/4xB46Xl9O9Q?t=557">GopherCon 2014 Writing High Performance Databases in Go by Ben Johnson</a> | ||||
|   - <a href="https://github.com/alecthomas/go_serialization_benchmarks">alecthomas' go serialization benchmarks</a> | ||||
|  | ||||
| ## 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.6.3) installed (see [http://golang.org/doc/install](http://golang.org/doc/install)). Latest patch versions of Go 1.8, 1.9 and 1.10 are continuously tested. | ||||
|  | ||||
| Next, install the standard protocol buffer implementation from [https://github.com/google/protobuf](https://github.com/google/protobuf). | ||||
| Most versions from 2.3.1 should not give any problems, but 2.6.1, 3.0.2 and 3.5.1 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](https://github.com/gogo/protobuf/blob/master/extensions.md). | ||||
|  | ||||
| ### 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 use gogoprotobuf [extensions](https://github.com/gogo/protobuf/blob/master/extensions.md). You can also use your own binary. | ||||
|  | ||||
| To generate the code, you also need to set the include path properly. | ||||
|  | ||||
|     protoc -I=. -I=$GOPATH/src -I=$GOPATH/src/github.com/gogo/protobuf/protobuf --{binary}_out=. myproto.proto | ||||
|  | ||||
| To use proto files from "google/protobuf" you need to add additional args to protoc. | ||||
|  | ||||
|     protoc -I=. -I=$GOPATH/src -I=$GOPATH/src/github.com/gogo/protobuf/protobuf --{binary}_out=\ | ||||
|     Mgoogle/protobuf/any.proto=github.com/gogo/protobuf/types,\ | ||||
|     Mgoogle/protobuf/duration.proto=github.com/gogo/protobuf/types,\ | ||||
|     Mgoogle/protobuf/struct.proto=github.com/gogo/protobuf/types,\ | ||||
|     Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types,\ | ||||
|     Mgoogle/protobuf/wrappers.proto=github.com/gogo/protobuf/types:. \ | ||||
|     myproto.proto | ||||
|      | ||||
| Note that in the protoc command, {binary} does not contain the initial prefix of "protoc-gen". | ||||
|  | ||||
| ### 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](https://github.com/gogo/protobuf/blob/master/extensions.md) 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 | ||||
							
								
								
									
										190
									
								
								vendor/github.com/gogo/protobuf/bench.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										190
									
								
								vendor/github.com/gogo/protobuf/bench.md
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,190 +0,0 @@ | ||||
| # Benchmarks | ||||
|  | ||||
| ## How to reproduce | ||||
|  | ||||
| For a comparison run: | ||||
|  | ||||
|     make bench | ||||
|  | ||||
| followed by [benchcmp](http://code.google.com/p/go/source/browse/misc/benchcmp benchcmp) on the resulting files: | ||||
|  | ||||
|     $GOROOT/misc/benchcmp $GOPATH/src/github.com/gogo/protobuf/test/mixbench/marshal.txt $GOPATH/src/github.com/gogo/protobuf/test/mixbench/marshaler.txt | ||||
|     $GOROOT/misc/benchcmp $GOPATH/src/github.com/gogo/protobuf/test/mixbench/unmarshal.txt $GOPATH/src/github.com/gogo/protobuf/test/mixbench/unmarshaler.txt | ||||
|  | ||||
| Benchmarks ran on Revision:  11c56be39364 | ||||
|  | ||||
| June 2013 | ||||
|  | ||||
| Processor 2,66 GHz Intel Core i7  | ||||
|  | ||||
| Memory 8 GB 1067 MHz DDR3  | ||||
|  | ||||
| ## Marshaler | ||||
|  | ||||
| <table> | ||||
| <tr><td>benchmark</td><td>old ns/op</td><td>new ns/op</td><td>delta</td></tr> | ||||
| <tr><td>BenchmarkNidOptNativeProtoMarshal</td><td>2656</td><td>889</td><td>-66.53%</td></tr> | ||||
| <tr><td>BenchmarkNinOptNativeProtoMarshal</td><td>2651</td><td>1015</td><td>-61.71%</td></tr> | ||||
| <tr><td>BenchmarkNidRepNativeProtoMarshal</td><td>42661</td><td>12519</td><td>-70.65%</td></tr> | ||||
| <tr><td>BenchmarkNinRepNativeProtoMarshal</td><td>42306</td><td>12354</td><td>-70.80%</td></tr> | ||||
| <tr><td>BenchmarkNidRepPackedNativeProtoMarshal</td><td>34148</td><td>11902</td><td>-65.15%</td></tr> | ||||
| <tr><td>BenchmarkNinRepPackedNativeProtoMarshal</td><td>33375</td><td>11969</td><td>-64.14%</td></tr> | ||||
| <tr><td>BenchmarkNidOptStructProtoMarshal</td><td>7148</td><td>3727</td><td>-47.86%</td></tr> | ||||
| <tr><td>BenchmarkNinOptStructProtoMarshal</td><td>6956</td><td>3481</td><td>-49.96%</td></tr> | ||||
| <tr><td>BenchmarkNidRepStructProtoMarshal</td><td>46551</td><td>19492</td><td>-58.13%</td></tr> | ||||
| <tr><td>BenchmarkNinRepStructProtoMarshal</td><td>46715</td><td>19043</td><td>-59.24%</td></tr> | ||||
| <tr><td>BenchmarkNidEmbeddedStructProtoMarshal</td><td>5231</td><td>2050</td><td>-60.81%</td></tr> | ||||
| <tr><td>BenchmarkNinEmbeddedStructProtoMarshal</td><td>4665</td><td>2000</td><td>-57.13%</td></tr> | ||||
| <tr><td>BenchmarkNidNestedStructProtoMarshal</td><td>181106</td><td>103604</td><td>-42.79%</td></tr> | ||||
| <tr><td>BenchmarkNinNestedStructProtoMarshal</td><td>182053</td><td>102069</td><td>-43.93%</td></tr> | ||||
| <tr><td>BenchmarkNidOptCustomProtoMarshal</td><td>1209</td><td>310</td><td>-74.36%</td></tr> | ||||
| <tr><td>BenchmarkNinOptCustomProtoMarshal</td><td>1435</td><td>277</td><td>-80.70%</td></tr> | ||||
| <tr><td>BenchmarkNidRepCustomProtoMarshal</td><td>4126</td><td>763</td><td>-81.51%</td></tr> | ||||
| <tr><td>BenchmarkNinRepCustomProtoMarshal</td><td>3972</td><td>769</td><td>-80.64%</td></tr> | ||||
| <tr><td>BenchmarkNinOptNativeUnionProtoMarshal</td><td>973</td><td>303</td><td>-68.86%</td></tr> | ||||
| <tr><td>BenchmarkNinOptStructUnionProtoMarshal</td><td>1536</td><td>521</td><td>-66.08%</td></tr> | ||||
| <tr><td>BenchmarkNinEmbeddedStructUnionProtoMarshal</td><td>2327</td><td>884</td><td>-62.01%</td></tr> | ||||
| <tr><td>BenchmarkNinNestedStructUnionProtoMarshal</td><td>2070</td><td>743</td><td>-64.11%</td></tr> | ||||
| <tr><td>BenchmarkTreeProtoMarshal</td><td>1554</td><td>838</td><td>-46.07%</td></tr> | ||||
| <tr><td>BenchmarkOrBranchProtoMarshal</td><td>3156</td><td>2012</td><td>-36.25%</td></tr> | ||||
| <tr><td>BenchmarkAndBranchProtoMarshal</td><td>3183</td><td>1996</td><td>-37.29%</td></tr> | ||||
| <tr><td>BenchmarkLeafProtoMarshal</td><td>965</td><td>606</td><td>-37.20%</td></tr> | ||||
| <tr><td>BenchmarkDeepTreeProtoMarshal</td><td>2316</td><td>1283</td><td>-44.60%</td></tr> | ||||
| <tr><td>BenchmarkADeepBranchProtoMarshal</td><td>2719</td><td>1492</td><td>-45.13%</td></tr> | ||||
| <tr><td>BenchmarkAndDeepBranchProtoMarshal</td><td>4663</td><td>2922</td><td>-37.34%</td></tr> | ||||
| <tr><td>BenchmarkDeepLeafProtoMarshal</td><td>1849</td><td>1016</td><td>-45.05%</td></tr> | ||||
| <tr><td>BenchmarkNilProtoMarshal</td><td>439</td><td>76</td><td>-82.53%</td></tr> | ||||
| <tr><td>BenchmarkNidOptEnumProtoMarshal</td><td>514</td><td>152</td><td>-70.43%</td></tr> | ||||
| <tr><td>BenchmarkNinOptEnumProtoMarshal</td><td>550</td><td>158</td><td>-71.27%</td></tr> | ||||
| <tr><td>BenchmarkNidRepEnumProtoMarshal</td><td>647</td><td>207</td><td>-68.01%</td></tr> | ||||
| <tr><td>BenchmarkNinRepEnumProtoMarshal</td><td>662</td><td>213</td><td>-67.82%</td></tr> | ||||
| <tr><td>BenchmarkTimerProtoMarshal</td><td>934</td><td>271</td><td>-70.99%</td></tr> | ||||
| <tr><td>BenchmarkMyExtendableProtoMarshal</td><td>608</td><td>185</td><td>-69.57%</td></tr> | ||||
| <tr><td>BenchmarkOtherExtenableProtoMarshal</td><td>1112</td><td>332</td><td>-70.14%</td></tr> | ||||
| </table> | ||||
|  | ||||
| <table> | ||||
| <tr><td>benchmark</td><td>old MB/s</td><td>new MB/s</td><td>speedup</td></tr> | ||||
| <tr><td>BenchmarkNidOptNativeProtoMarshal</td><td>126.86</td><td>378.86</td><td>2.99x</td></tr> | ||||
| <tr><td>BenchmarkNinOptNativeProtoMarshal</td><td>114.27</td><td>298.42</td><td>2.61x</td></tr> | ||||
| <tr><td>BenchmarkNidRepNativeProtoMarshal</td><td>164.25</td><td>561.20</td><td>3.42x</td></tr> | ||||
| <tr><td>BenchmarkNinRepNativeProtoMarshal</td><td>166.10</td><td>568.23</td><td>3.42x</td></tr> | ||||
| <tr><td>BenchmarkNidRepPackedNativeProtoMarshal</td><td>99.10</td><td>283.97</td><td>2.87x</td></tr> | ||||
| <tr><td>BenchmarkNinRepPackedNativeProtoMarshal</td><td>101.30</td><td>282.31</td><td>2.79x</td></tr> | ||||
| <tr><td>BenchmarkNidOptStructProtoMarshal</td><td>176.83</td><td>339.07</td><td>1.92x</td></tr> | ||||
| <tr><td>BenchmarkNinOptStructProtoMarshal</td><td>163.59</td><td>326.57</td><td>2.00x</td></tr> | ||||
| <tr><td>BenchmarkNidRepStructProtoMarshal</td><td>178.84</td><td>427.49</td><td>2.39x</td></tr> | ||||
| <tr><td>BenchmarkNinRepStructProtoMarshal</td><td>178.70</td><td>437.69</td><td>2.45x</td></tr> | ||||
| <tr><td>BenchmarkNidEmbeddedStructProtoMarshal</td><td>124.24</td><td>317.56</td><td>2.56x</td></tr> | ||||
| <tr><td>BenchmarkNinEmbeddedStructProtoMarshal</td><td>132.03</td><td>307.99</td><td>2.33x</td></tr> | ||||
| <tr><td>BenchmarkNidNestedStructProtoMarshal</td><td>192.91</td><td>337.86</td><td>1.75x</td></tr> | ||||
| <tr><td>BenchmarkNinNestedStructProtoMarshal</td><td>192.44</td><td>344.45</td><td>1.79x</td></tr> | ||||
| <tr><td>BenchmarkNidOptCustomProtoMarshal</td><td>29.77</td><td>116.03</td><td>3.90x</td></tr> | ||||
| <tr><td>BenchmarkNinOptCustomProtoMarshal</td><td>22.29</td><td>115.38</td><td>5.18x</td></tr> | ||||
| <tr><td>BenchmarkNidRepCustomProtoMarshal</td><td>35.14</td><td>189.80</td><td>5.40x</td></tr> | ||||
| <tr><td>BenchmarkNinRepCustomProtoMarshal</td><td>36.50</td><td>188.40</td><td>5.16x</td></tr> | ||||
| <tr><td>BenchmarkNinOptNativeUnionProtoMarshal</td><td>32.87</td><td>105.39</td><td>3.21x</td></tr> | ||||
| <tr><td>BenchmarkNinOptStructUnionProtoMarshal</td><td>66.40</td><td>195.76</td><td>2.95x</td></tr> | ||||
| <tr><td>BenchmarkNinEmbeddedStructUnionProtoMarshal</td><td>93.24</td><td>245.26</td><td>2.63x</td></tr> | ||||
| <tr><td>BenchmarkNinNestedStructUnionProtoMarshal</td><td>57.49</td><td>160.06</td><td>2.78x</td></tr> | ||||
| <tr><td>BenchmarkTreeProtoMarshal</td><td>137.64</td><td>255.12</td><td>1.85x</td></tr> | ||||
| <tr><td>BenchmarkOrBranchProtoMarshal</td><td>137.80</td><td>216.10</td><td>1.57x</td></tr> | ||||
| <tr><td>BenchmarkAndBranchProtoMarshal</td><td>136.64</td><td>217.89</td><td>1.59x</td></tr> | ||||
| <tr><td>BenchmarkLeafProtoMarshal</td><td>214.48</td><td>341.53</td><td>1.59x</td></tr> | ||||
| <tr><td>BenchmarkDeepTreeProtoMarshal</td><td>95.85</td><td>173.03</td><td>1.81x</td></tr> | ||||
| <tr><td>BenchmarkADeepBranchProtoMarshal</td><td>82.73</td><td>150.78</td><td>1.82x</td></tr> | ||||
| <tr><td>BenchmarkAndDeepBranchProtoMarshal</td><td>96.72</td><td>153.98</td><td>1.59x</td></tr> | ||||
| <tr><td>BenchmarkDeepLeafProtoMarshal</td><td>117.34</td><td>213.41</td><td>1.82x</td></tr> | ||||
| <tr><td>BenchmarkNidOptEnumProtoMarshal</td><td>3.89</td><td>13.16</td><td>3.38x</td></tr> | ||||
| <tr><td>BenchmarkNinOptEnumProtoMarshal</td><td>1.82</td><td>6.30</td><td>3.46x</td></tr> | ||||
| <tr><td>BenchmarkNidRepEnumProtoMarshal</td><td>12.36</td><td>38.50</td><td>3.11x</td></tr> | ||||
| <tr><td>BenchmarkNinRepEnumProtoMarshal</td><td>12.08</td><td>37.53</td><td>3.11x</td></tr> | ||||
| <tr><td>BenchmarkTimerProtoMarshal</td><td>73.81</td><td>253.87</td><td>3.44x</td></tr> | ||||
| <tr><td>BenchmarkMyExtendableProtoMarshal</td><td>13.15</td><td>43.08</td><td>3.28x</td></tr> | ||||
| <tr><td>BenchmarkOtherExtenableProtoMarshal</td><td>24.28</td><td>81.09</td><td>3.34x</td></tr> | ||||
| </table> | ||||
|  | ||||
| ## Unmarshaler | ||||
|  | ||||
| <table> | ||||
| <tr><td>benchmark</td><td>old ns/op</td><td>new ns/op</td><td>delta</td></tr> | ||||
| <tr><td>BenchmarkNidOptNativeProtoUnmarshal</td><td>2521</td><td>1006</td><td>-60.10%</td></tr> | ||||
| <tr><td>BenchmarkNinOptNativeProtoUnmarshal</td><td>2529</td><td>1750</td><td>-30.80%</td></tr> | ||||
| <tr><td>BenchmarkNidRepNativeProtoUnmarshal</td><td>49067</td><td>35299</td><td>-28.06%</td></tr> | ||||
| <tr><td>BenchmarkNinRepNativeProtoUnmarshal</td><td>47990</td><td>35456</td><td>-26.12%</td></tr> | ||||
| <tr><td>BenchmarkNidRepPackedNativeProtoUnmarshal</td><td>26456</td><td>23950</td><td>-9.47%</td></tr> | ||||
| <tr><td>BenchmarkNinRepPackedNativeProtoUnmarshal</td><td>26499</td><td>24037</td><td>-9.29%</td></tr> | ||||
| <tr><td>BenchmarkNidOptStructProtoUnmarshal</td><td>6803</td><td>3873</td><td>-43.07%</td></tr> | ||||
| <tr><td>BenchmarkNinOptStructProtoUnmarshal</td><td>6786</td><td>4154</td><td>-38.79%</td></tr> | ||||
| <tr><td>BenchmarkNidRepStructProtoUnmarshal</td><td>56276</td><td>31970</td><td>-43.19%</td></tr> | ||||
| <tr><td>BenchmarkNinRepStructProtoUnmarshal</td><td>48750</td><td>31832</td><td>-34.70%</td></tr> | ||||
| <tr><td>BenchmarkNidEmbeddedStructProtoUnmarshal</td><td>4556</td><td>1973</td><td>-56.69%</td></tr> | ||||
| <tr><td>BenchmarkNinEmbeddedStructProtoUnmarshal</td><td>4485</td><td>1975</td><td>-55.96%</td></tr> | ||||
| <tr><td>BenchmarkNidNestedStructProtoUnmarshal</td><td>223395</td><td>135844</td><td>-39.19%</td></tr> | ||||
| <tr><td>BenchmarkNinNestedStructProtoUnmarshal</td><td>226446</td><td>134022</td><td>-40.82%</td></tr> | ||||
| <tr><td>BenchmarkNidOptCustomProtoUnmarshal</td><td>1859</td><td>300</td><td>-83.86%</td></tr> | ||||
| <tr><td>BenchmarkNinOptCustomProtoUnmarshal</td><td>1486</td><td>402</td><td>-72.95%</td></tr> | ||||
| <tr><td>BenchmarkNidRepCustomProtoUnmarshal</td><td>8229</td><td>1669</td><td>-79.72%</td></tr> | ||||
| <tr><td>BenchmarkNinRepCustomProtoUnmarshal</td><td>8253</td><td>1649</td><td>-80.02%</td></tr> | ||||
| <tr><td>BenchmarkNinOptNativeUnionProtoUnmarshal</td><td>840</td><td>307</td><td>-63.45%</td></tr> | ||||
| <tr><td>BenchmarkNinOptStructUnionProtoUnmarshal</td><td>1395</td><td>639</td><td>-54.19%</td></tr> | ||||
| <tr><td>BenchmarkNinEmbeddedStructUnionProtoUnmarshal</td><td>2297</td><td>1167</td><td>-49.19%</td></tr> | ||||
| <tr><td>BenchmarkNinNestedStructUnionProtoUnmarshal</td><td>1820</td><td>889</td><td>-51.15%</td></tr> | ||||
| <tr><td>BenchmarkTreeProtoUnmarshal</td><td>1521</td><td>720</td><td>-52.66%</td></tr> | ||||
| <tr><td>BenchmarkOrBranchProtoUnmarshal</td><td>2669</td><td>1385</td><td>-48.11%</td></tr> | ||||
| <tr><td>BenchmarkAndBranchProtoUnmarshal</td><td>2667</td><td>1420</td><td>-46.76%</td></tr> | ||||
| <tr><td>BenchmarkLeafProtoUnmarshal</td><td>1171</td><td>584</td><td>-50.13%</td></tr> | ||||
| <tr><td>BenchmarkDeepTreeProtoUnmarshal</td><td>2065</td><td>1081</td><td>-47.65%</td></tr> | ||||
| <tr><td>BenchmarkADeepBranchProtoUnmarshal</td><td>2695</td><td>1178</td><td>-56.29%</td></tr> | ||||
| <tr><td>BenchmarkAndDeepBranchProtoUnmarshal</td><td>4055</td><td>1918</td><td>-52.70%</td></tr> | ||||
| <tr><td>BenchmarkDeepLeafProtoUnmarshal</td><td>1758</td><td>865</td><td>-50.80%</td></tr> | ||||
| <tr><td>BenchmarkNilProtoUnmarshal</td><td>564</td><td>63</td><td>-88.79%</td></tr> | ||||
| <tr><td>BenchmarkNidOptEnumProtoUnmarshal</td><td>762</td><td>73</td><td>-90.34%</td></tr> | ||||
| <tr><td>BenchmarkNinOptEnumProtoUnmarshal</td><td>764</td><td>163</td><td>-78.66%</td></tr> | ||||
| <tr><td>BenchmarkNidRepEnumProtoUnmarshal</td><td>1078</td><td>447</td><td>-58.53%</td></tr> | ||||
| <tr><td>BenchmarkNinRepEnumProtoUnmarshal</td><td>1071</td><td>479</td><td>-55.28%</td></tr> | ||||
| <tr><td>BenchmarkTimerProtoUnmarshal</td><td>1128</td><td>362</td><td>-67.91%</td></tr> | ||||
| <tr><td>BenchmarkMyExtendableProtoUnmarshal</td><td>808</td><td>217</td><td>-73.14%</td></tr> | ||||
| <tr><td>BenchmarkOtherExtenableProtoUnmarshal</td><td>1233</td><td>517</td><td>-58.07%</td></tr> | ||||
| </table> | ||||
|  | ||||
| <table> | ||||
| <tr><td>benchmark</td><td>old MB/s</td><td>new MB/s</td><td>speedup</td></tr> | ||||
| <tr><td>BenchmarkNidOptNativeProtoUnmarshal</td><td>133.67</td><td>334.98</td><td>2.51x</td></tr> | ||||
| <tr><td>BenchmarkNinOptNativeProtoUnmarshal</td><td>119.77</td><td>173.08</td><td>1.45x</td></tr> | ||||
| <tr><td>BenchmarkNidRepNativeProtoUnmarshal</td><td>143.23</td><td>199.12</td><td>1.39x</td></tr> | ||||
| <tr><td>BenchmarkNinRepNativeProtoUnmarshal</td><td>146.07</td><td>198.16</td><td>1.36x</td></tr> | ||||
| <tr><td>BenchmarkNidRepPackedNativeProtoUnmarshal</td><td>127.80</td><td>141.04</td><td>1.10x</td></tr> | ||||
| <tr><td>BenchmarkNinRepPackedNativeProtoUnmarshal</td><td>127.55</td><td>140.78</td><td>1.10x</td></tr> | ||||
| <tr><td>BenchmarkNidOptStructProtoUnmarshal</td><td>185.79</td><td>326.31</td><td>1.76x</td></tr> | ||||
| <tr><td>BenchmarkNinOptStructProtoUnmarshal</td><td>167.68</td><td>273.66</td><td>1.63x</td></tr> | ||||
| <tr><td>BenchmarkNidRepStructProtoUnmarshal</td><td>147.88</td><td>260.39</td><td>1.76x</td></tr> | ||||
| <tr><td>BenchmarkNinRepStructProtoUnmarshal</td><td>171.20</td><td>261.97</td><td>1.53x</td></tr> | ||||
| <tr><td>BenchmarkNidEmbeddedStructProtoUnmarshal</td><td>142.86</td><td>329.42</td><td>2.31x</td></tr> | ||||
| <tr><td>BenchmarkNinEmbeddedStructProtoUnmarshal</td><td>137.33</td><td>311.83</td><td>2.27x</td></tr> | ||||
| <tr><td>BenchmarkNidNestedStructProtoUnmarshal</td><td>154.97</td><td>259.47</td><td>1.67x</td></tr> | ||||
| <tr><td>BenchmarkNinNestedStructProtoUnmarshal</td><td>154.32</td><td>258.42</td><td>1.67x</td></tr> | ||||
| <tr><td>BenchmarkNidOptCustomProtoUnmarshal</td><td>19.36</td><td>119.66</td><td>6.18x</td></tr> | ||||
| <tr><td>BenchmarkNinOptCustomProtoUnmarshal</td><td>21.52</td><td>79.50</td><td>3.69x</td></tr> | ||||
| <tr><td>BenchmarkNidRepCustomProtoUnmarshal</td><td>17.62</td><td>86.86</td><td>4.93x</td></tr> | ||||
| <tr><td>BenchmarkNinRepCustomProtoUnmarshal</td><td>17.57</td><td>87.92</td><td>5.00x</td></tr> | ||||
| <tr><td>BenchmarkNinOptNativeUnionProtoUnmarshal</td><td>38.07</td><td>104.12</td><td>2.73x</td></tr> | ||||
| <tr><td>BenchmarkNinOptStructUnionProtoUnmarshal</td><td>73.08</td><td>159.54</td><td>2.18x</td></tr> | ||||
| <tr><td>BenchmarkNinEmbeddedStructUnionProtoUnmarshal</td><td>94.00</td><td>185.92</td><td>1.98x</td></tr> | ||||
| <tr><td>BenchmarkNinNestedStructUnionProtoUnmarshal</td><td>65.35</td><td>133.75</td><td>2.05x</td></tr> | ||||
| <tr><td>BenchmarkTreeProtoUnmarshal</td><td>141.28</td><td>297.13</td><td>2.10x</td></tr> | ||||
| <tr><td>BenchmarkOrBranchProtoUnmarshal</td><td>162.56</td><td>313.96</td><td>1.93x</td></tr> | ||||
| <tr><td>BenchmarkAndBranchProtoUnmarshal</td><td>163.06</td><td>306.15</td><td>1.88x</td></tr> | ||||
| <tr><td>BenchmarkLeafProtoUnmarshal</td><td>176.72</td><td>354.19</td><td>2.00x</td></tr> | ||||
| <tr><td>BenchmarkDeepTreeProtoUnmarshal</td><td>107.50</td><td>205.30</td><td>1.91x</td></tr> | ||||
| <tr><td>BenchmarkADeepBranchProtoUnmarshal</td><td>83.48</td><td>190.88</td><td>2.29x</td></tr> | ||||
| <tr><td>BenchmarkAndDeepBranchProtoUnmarshal</td><td>110.97</td><td>234.60</td><td>2.11x</td></tr> | ||||
| <tr><td>BenchmarkDeepLeafProtoUnmarshal</td><td>123.40</td><td>250.73</td><td>2.03x</td></tr> | ||||
| <tr><td>BenchmarkNidOptEnumProtoUnmarshal</td><td>2.62</td><td>27.16</td><td>10.37x</td></tr> | ||||
| <tr><td>BenchmarkNinOptEnumProtoUnmarshal</td><td>1.31</td><td>6.11</td><td>4.66x</td></tr> | ||||
| <tr><td>BenchmarkNidRepEnumProtoUnmarshal</td><td>7.42</td><td>17.88</td><td>2.41x</td></tr> | ||||
| <tr><td>BenchmarkNinRepEnumProtoUnmarshal</td><td>7.47</td><td>16.69</td><td>2.23x</td></tr> | ||||
| <tr><td>BenchmarkTimerProtoUnmarshal</td><td>61.12</td><td>190.34</td><td>3.11x</td></tr> | ||||
| <tr><td>BenchmarkMyExtendableProtoUnmarshal</td><td>9.90</td><td>36.71</td><td>3.71x</td></tr> | ||||
| <tr><td>BenchmarkOtherExtenableProtoUnmarshal</td><td>21.90</td><td>52.13</td><td>2.38x</td></tr> | ||||
| </table> | ||||
							
								
								
									
										68
									
								
								vendor/github.com/gogo/protobuf/custom_types.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										68
									
								
								vendor/github.com/gogo/protobuf/custom_types.md
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,68 +0,0 @@ | ||||
| # Custom types | ||||
|  | ||||
| Custom types is a gogo protobuf extensions that allows for using a custom | ||||
| struct type to decorate the underlying structure of the protocol message. | ||||
|  | ||||
| # How to use | ||||
|  | ||||
| ## Defining the protobuf message | ||||
|  | ||||
| ```proto | ||||
| message CustomType { | ||||
|   optional ProtoType Field = 1 [(gogoproto.customtype) = "T"]; | ||||
| } | ||||
|  | ||||
| message ProtoType { | ||||
|   optional string Field = 1; | ||||
| } | ||||
| ``` | ||||
|  | ||||
| or alternatively you can declare the field type in the protocol message to be | ||||
| `bytes`: | ||||
|  | ||||
| ```proto | ||||
| message BytesCustomType { | ||||
|   optional bytes Field = 1 [(gogoproto.customtype) = "T"]; | ||||
| } | ||||
| ``` | ||||
|  | ||||
| The downside of using `bytes` is that it makes it harder to generate protobuf | ||||
| code in other languages. In either case, it is the user responsibility to | ||||
| ensure that the custom type marshals and unmarshals to the expected wire | ||||
| format. That is, in the first example, gogo protobuf will not attempt to ensure | ||||
| that the wire format of `ProtoType` and `T` are wire compatible. | ||||
|  | ||||
| ## Custom type method signatures | ||||
|  | ||||
| The custom type must define the following methods with the given | ||||
| signatures. Assuming the custom type is called `T`: | ||||
|  | ||||
| ```go | ||||
| func (t T) Marshal() ([]byte, error) {} | ||||
| func (t *T) MarshalTo(data []byte) (n int, err error) {} | ||||
| func (t *T) Unmarshal(data []byte) error {} | ||||
|  | ||||
| func (t T) MarshalJSON() ([]byte, error) {} | ||||
| func (t *T) UnmarshalJSON(data []byte) error {} | ||||
|  | ||||
| // only required if the compare option is set | ||||
| func (t T) Compare(other T) int {} | ||||
| // only required if the equal option is set | ||||
| func (t T) Equal(other T) bool {} | ||||
| // only required if populate option is set | ||||
| func NewPopulatedT(r randyThetest) *T {} | ||||
| ``` | ||||
|  | ||||
| Check [t.go](test/t.go) for a full example | ||||
|  | ||||
| # Warnings and issues | ||||
|  | ||||
| `Warning about customtype: It is your responsibility to test all cases of your marshaling, unmarshaling and size methods implemented for your custom type.` | ||||
|  | ||||
| Issues with customtype include: | ||||
|   * <a href="https://github.com/gogo/protobuf/issues/199">A Bytes method is not allowed.<a/> | ||||
|   * <a href="https://github.com/gogo/protobuf/issues/132">Defining a customtype as a fake proto message is broken.</a> | ||||
|   * <a href="https://github.com/gogo/protobuf/issues/147">proto.Clone is broken.</a> | ||||
|   * <a href="https://github.com/gogo/protobuf/issues/125">Using a proto message as a customtype is not allowed.</a> | ||||
|   * <a href="https://github.com/gogo/protobuf/issues/200">cusomtype of type map can not UnmarshalText</a> | ||||
|   * <a href="https://github.com/gogo/protobuf/issues/201">customtype of type struct cannot jsonpb unmarshal</a> | ||||
							
								
								
									
										162
									
								
								vendor/github.com/gogo/protobuf/extensions.md
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										162
									
								
								vendor/github.com/gogo/protobuf/extensions.md
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,162 +0,0 @@ | ||||
| # gogoprotobuf Extensions | ||||
|  | ||||
| Here is an [example.proto](https://github.com/gogo/protobuf/blob/master/test/example/example.proto) which uses most of the gogoprotobuf code generation plugins. | ||||
|  | ||||
| Please also look at the example [Makefile](https://github.com/gogo/protobuf/blob/master/test/example/Makefile) which shows how to specify the `descriptor.proto` and `gogo.proto` in your proto_path | ||||
|  | ||||
| The documentation at [http://godoc.org/github.com/gogo/protobuf/gogoproto](http://godoc.org/github.com/gogo/protobuf/gogoproto) describes the extensions made to goprotobuf in more detail. | ||||
|  | ||||
| Also see [http://godoc.org/github.com/gogo/protobuf/plugin/](http://godoc.org/github.com/gogo/protobuf/plugin/) for documentation of each of the extensions which have their own plugins. | ||||
|  | ||||
| # Fast Marshalling and Unmarshalling | ||||
|  | ||||
| Generating a `Marshal`, `MarshalTo`, `Size` (or `ProtoSize`) and `Unmarshal` method for a struct results in faster marshalling and unmarshalling than when using reflect. | ||||
|  | ||||
| See [BenchComparison](https://github.com/gogo/protobuf/blob/master/bench.md) for a comparison between reflect and generated code used for marshalling and unmarshalling. | ||||
|  | ||||
| <table> | ||||
| <tr><td><b>Name</b></td><td><b>Option</b></td><td><b>Type</b></td><td><b>Description</b></td><td><b>Default</b></td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/marshalto">marshaler</a></td><td>Message</td><td>bool</td><td>if true, a Marshal and MarshalTo method is generated for the specific message</td><td>false</td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/size">sizer</a></td><td>Message</td><td>bool</td><td>if true, a Size method is generated for the specific message</td><td>false</td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/unmarshal">unmarshaler</a></td><td> Message </td><td> bool </td><td> if true, an Unmarshal method is generated for the specific message </td><td> false</td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/size">protosizer</a></td><td>Message</td><td>bool</td><td>if true, a ProtoSize method is generated for the specific message</td><td>false</td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/marshalto"> unsafe_marshaler</a> (deprecated) </td><td> Message </td><td> bool </td><td> if true, a Marshal and MarshalTo method is generated. </td><td> false</td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/unmarshal">unsafe_unmarshaler</a> (deprecated) </td><td> Message </td><td> bool </td><td> if true, an Unmarshal method is generated. </td><td> false</td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/marshalto">stable_marshaler</a></td><td> Message </td><td> bool </td><td> if true, a Marshal and MarshalTo method is generated for the specific message, but unlike marshaler the output is guaranteed to be deterministic, at the sacrifice of some speed</td><td> false </td></tr> | ||||
| <tr><td>typedecl (beta)</td><td> Message </td><td> bool </td><td> if false, type declaration of the message is excluded from the generated output. Requires the marshaler and unmarshaler to be generated.</td><td> true </td></tr> | ||||
| </table> | ||||
|  | ||||
| # More Canonical Go Structures | ||||
|  | ||||
| Lots of times working with a goprotobuf struct will lead you to a place where you create another struct that is easier to work with and then have a function to copy the values between the two structs. | ||||
|  | ||||
| You might also find that basic structs that started their life as part of an API need to be sent over the wire. With gob, you could just send it. With goprotobuf, you need to make a new struct. | ||||
|  | ||||
| `gogoprotobuf` tries to fix these problems with the nullable, embed, customtype, customname, casttype, castkey and castvalue field extensions. | ||||
|  | ||||
| <table> | ||||
| <tr><td><b>Name</b></td><td><b>Option</b></td><td><b>Type</b></td><td><b>Description</b></td><td><b>Default</b></td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/gogoproto">nullable</a></td><td> Field </td><td> bool </td><td> if false, a field is generated without a pointer (see warning below). </td><td> true </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/gogoproto">embed</a></td><td> Field </td><td> bool </td><td> if true, the field is generated as an embedded field. </td><td> false </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/gogoproto">customtype</a> </td><td> Field </td><td> string </td><td> It works with the Marshal and Unmarshal methods, to allow you to have your own types in your struct, but marshal to bytes. For example, custom.Uuid or custom.Fixed128. For more information please refer to the <a href="custom_types.md">CustomTypes</a> document </td><td> goprotobuf type </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/gogoproto"> customname</a> (beta) </td><td> Field </td><td> string </td><td> Changes the generated fieldname. This is especially useful when generated methods conflict with fieldnames. </td><td> goprotobuf field name </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/gogoproto"> casttype</a> (beta) </td><td> Field </td><td> string </td><td> Changes the generated field type. It assumes that this type is castable to the original goprotobuf field type.  It currently does not support maps, structs or enums. </td><td> goprotobuf field type </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/gogoproto"> castkey </a> (beta) </td><td> Field </td><td> string </td><td> Changes the generated fieldtype for a map key.  All generated code assumes that this type is castable to the protocol buffer field type.  Only supported on maps. </td><td> goprotobuf field type </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/gogoproto"> castvalue </a> (beta) </td><td> Field </td><td> string </td><td> Changes the generated fieldtype for a map value.  All generated code assumes that this type is castable to the protocol buffer field type.  Only supported on maps. </td><td> goprotobuf field type </td></tr> | ||||
| <tr><td>enum_customname  (beta)</td><td> Enum </td><td> string </td><td>Sets the type name of an enum. If goproto_enum_prefix is enabled, this value will be used as a prefix when generating enum values.</td><td>goprotobuf enum type name. Helps with golint issues.</td></tr> | ||||
| <tr><td>enumdecl (beta)</td><td> Enum </td><td> bool </td><td> if false, type declaration of the enum is excluded from the generated output. Requires the marshaler and unmarshaler to be generated. </td><td> true </td></tr> | ||||
| <tr><td>enumvalue_customname (beta) </td><td> Enum Value </td><td> string </td><td>Changes the generated enum name.  Helps with golint issues.</td><td>goprotobuf enum value name</td></tr> | ||||
| <tr><td><a href="https://github.com/gogo/protobuf/blob/master/test/types/types.proto">stdtime</a></td><td> Timestamp Field </td><td> bool </td><td>Changes the Well Known Timestamp Type to time.Time</td><td>Timestamp</td></tr> | ||||
| <tr><td><a href="https://github.com/gogo/protobuf/blob/master/test/types/types.proto">stdduration</a></td><td> Duration Field </td><td> bool </td><td>Changes the Well Known Duration Type to time.Duration</td><td>Duration</td></tr> | ||||
| </table> | ||||
|  | ||||
| `Warning about nullable: according to the Protocol Buffer specification, you should be able to tell whether a field is set or unset. With the option nullable=false this feature is lost, since your non-nullable fields will always be set.`  | ||||
|  | ||||
| # Goprotobuf Compatibility  | ||||
|  | ||||
| Gogoprotobuf is compatible with Goprotobuf, because it is compatible with protocol buffers (see the section on tests below). | ||||
|  | ||||
| Gogoprotobuf generates the same code as goprotobuf if no extensions are used. | ||||
|  | ||||
| The enumprefix, getters and stringer extensions can be used to remove some of the unnecessary code generated by goprotobuf. | ||||
|  | ||||
| <table> | ||||
| <tr><td><b>Name</b></td><td><b>Option</b></td><td><b>Type</b></td><td><b>Description</b></td><td><b>Default</b></td></tr> | ||||
| <tr><td> gogoproto_import </td><td> File </td><td> bool </td><td> if false, the generated code imports github.com/golang/protobuf/proto instead of github.com/gogo/protobuf/proto. </td><td> true </td></tr> | ||||
| <tr><td> goproto_enum_prefix </td><td> Enum </td><td> bool </td><td> if false, generates the enum constant names without the messagetype prefix </td><td> true </td></tr> | ||||
| <tr><td> goproto_getters </td><td> Message </td><td> bool </td><td> if false, the message is generated without get methods, this is useful when you would rather want to use face </td><td> true </td></tr> | ||||
| <tr><td> goproto_stringer </td><td> Message </td><td> bool </td><td> if false, the message is generated without the default string method, this is useful for rather using stringer </td><td> true </td></tr> | ||||
| <tr><td> goproto_enum_stringer (experimental) </td><td> Enum </td><td> bool </td><td> if false, the enum is generated without the default string method, this is useful for rather using enum_stringer </td><td> true </td></tr> | ||||
| <tr><td> goproto_extensions_map (beta) </td><td> Message </td><td> bool </td><td> if false, the extensions field is generated as type []byte instead of type map[int32]proto.Extension </td><td> true </td></tr> | ||||
| <tr><td> goproto_unrecognized (beta) </td><td> Message </td><td> bool </td><td>if false, XXX_unrecognized field is not generated. This is useful to reduce GC pressure at the cost of losing information about unrecognized fields. </td><td> true </td></tr> | ||||
| <tr><td> goproto_registration (beta) </td><td> File </td><td> bool </td><td>if true, the generated files will register all messages and types against both gogo/protobuf and golang/protobuf. This is necessary when using third-party packages which read registrations from golang/protobuf (such as the grpc-gateway). </td><td> false </td></tr> | ||||
| </table> | ||||
|  | ||||
| # Less Typing | ||||
|  | ||||
| The Protocol Buffer language is very parseable and extra code can be easily generated for structures. | ||||
|  | ||||
| Helper methods, functions and interfaces can be generated by triggering certain extensions like gostring. | ||||
|  | ||||
| <table> | ||||
| <tr><td><b>Name</b></td><td><b>Option</b></td><td><b>Type</b></td><td><b>Description</b></td><td><b>Default</b></td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/gostring">gostring</a></td><td> Message </td><td> bool </td><td> if true, a `GoString` method is generated. This returns a string representing valid go code to reproduce the current state of the struct. </td><td> false </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/union"> onlyone</a> </td><td> Message </td><td> bool </td><td> if true, all fields must be nullable and only one of the fields may be set, like a union. Two methods are generated: `GetValue() interface{}` and `SetValue(v interface{}) (set bool)`. These provide easier interaction with a union. </td><td> false </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/equal"> equal</a></td><td> Message </td><td> bool </td><td> if true, an Equal method is generated </td><td> false </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/compare"> compare</a></td><td> Message </td><td> bool </td><td> if true, a Compare method is generated.  This is very useful for quickly implementing sort on a list of protobuf structs </td><td> false </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/equal"> verbose_equal</a> </td><td> Message </td><td> bool </td><td> if true, a verbose equal method is generated for the message. This returns an error which describes the exact element which is not equal to the exact element in the other struct. </td><td> false </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/stringer"> stringer</a> </td><td> Message </td><td> bool </td><td> if true, a String method is generated for the message. </td><td> false </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/face">face</a> </td><td> Message </td><td> bool </td><td> if true, a function will be generated which can convert a structure which satisfies an interface (face) to the specified structure. This interface contains getters for each of the fields in the struct. The specified struct is also generated with the getters. This allows it to satisfy its own face. </td><td> false </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/description"> description</a> (beta) </td><td> Message </td><td> bool </td><td> if true, a Description method is generated for the message. </td><td> false </td></tr> | ||||
| <tr><td> <a href="http://godoc.org/github.com/gogo/protobuf/plugin/populate"> populate</a> </td><td> Message </td><td> bool </td><td> if true, a `NewPopulated<MessageName>` function is generated. This is necessary for  generated tests. </td><td> false </td></tr> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/enumstringer"> enum_stringer</a> (experimental) </td><td> Enum </td><td> bool </td><td> if true, a String method is generated for an Enum </td><td> false </td></tr> | ||||
| </table> | ||||
|  | ||||
| Issues with Compare include: | ||||
|   * <a href="https://github.com/gogo/protobuf/issues/221">Oneof is not supported yet</a> | ||||
|   * <a href="https://github.com/gogo/protobuf/issues/230">Not all Well Known Types are supported yet</a> | ||||
|   * <a href="https://github.com/gogo/protobuf/issues/231">Maps are not supported</a> | ||||
|  | ||||
| #Peace of Mind | ||||
|  | ||||
| Test and Benchmark generation is done with the following extensions: | ||||
|  | ||||
| <table> | ||||
| <tr><td><a href="http://godoc.org/github.com/gogo/protobuf/plugin/testgen">testgen</a> </td><td> Message </td><td> bool </td><td> if true, tests are generated for proto, json and prototext marshalling as well as for some of the other enabled plugins </td><td> false </td></tr> | ||||
| <tr><td> benchgen </td><td> Message </td><td> bool </td><td> if true, benchmarks are generated for proto, json and prototext marshalling as well as for some of the other enabled plugins </td><td> false </td></tr> | ||||
| </table> | ||||
|  | ||||
| # More Serialization Formats | ||||
|  | ||||
| Other serialization formats like xml and json typically use reflect to marshal and unmarshal structured data.  Manipulating these structs into something other than the default Go requires editing tags.  The following extensions provide ways of editing these tags for the generated protobuf structs. | ||||
|  | ||||
| <table> | ||||
| <tr><td><a href="https://github.com/gogo/protobuf/blob/master/test/tags/tags.proto">jsontag</a> (beta) </td><td> Field </td><td> string </td><td> if set, the json tag value between the double quotes is replaced with this string </td><td> fieldname </td></tr> | ||||
| <tr><td><a href="https://github.com/gogo/protobuf/blob/master/test/tags/tags.proto">moretags</a> (beta) </td><td> Field </td><td> string </td><td> if set, this string is appended to the tag string </td><td> empty </td></tr> | ||||
| </table> | ||||
|  | ||||
| <a href="https://groups.google.com/forum/#!topic/gogoprotobuf/xmFnqAS6MIc">Here is a longer explanation of jsontag and moretags</a> | ||||
|  | ||||
| # File Options  | ||||
|  | ||||
| Each of the boolean message and enum extensions also have a file extension: | ||||
|  | ||||
|   * `marshaler_all` | ||||
|   * `sizer_all` | ||||
|   * `protosizer_all` | ||||
|   * `unmarshaler_all` | ||||
|   * `unsafe_marshaler_all` | ||||
|   * `unsafe_unmarshaler_all` | ||||
|   * `stable_marshaler_all` | ||||
|   * `goproto_enum_prefix_all` | ||||
|   * `goproto_getters_all` | ||||
|   * `goproto_stringer_all` | ||||
|   * `goproto_enum_stringer_all` | ||||
|   * `goproto_extensions_map_all` | ||||
|   * `goproto_unrecognized_all` | ||||
|   * `gostring_all` | ||||
|   * `onlyone_all` | ||||
|   * `equal_all` | ||||
|   * `compare_all` | ||||
|   * `verbose_equal_all` | ||||
|   * `stringer_all` | ||||
|   * `enum_stringer_all` | ||||
|   * `face_all` | ||||
|   * `description_all` | ||||
|   * `populate_all` | ||||
|   * `testgen_all` | ||||
|   * `benchgen_all` | ||||
|   * `enumdecl_all` | ||||
|   * `typedecl_all` | ||||
|  | ||||
| Each of these are the same as their Message Option counterparts, except they apply to all messages in the file.  Their Message option counterparts can also be used to overwrite their effect. | ||||
|  | ||||
| # Tests | ||||
|  | ||||
|   * The normal barrage of tests are run with: `make tests`  | ||||
|   * A few weird tests: `make testall` | ||||
|   * Tests for compatibility with [golang/protobuf](https://github.com/golang/protobuf) are handled by a different project [harmonytests](https://github.com/gogo/harmonytests), since it requires goprotobuf. | ||||
|   * Cross version tests are made with [Travis CI](https://travis-ci.org/gogo/protobuf). | ||||
|   * GRPC Tests are also handled by a different project [grpctests](https://github.com/gogo/grpctests), since it depends on a lot of grpc libraries. | ||||
|   * Thanks to [go-fuzz](https://github.com/dvyukov/go-fuzz/) we have proper [fuzztests](https://github.com/gogo/fuzztests). | ||||
|  | ||||
							
								
								
									
										37
									
								
								vendor/github.com/gogo/protobuf/gogoproto/Makefile
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										37
									
								
								vendor/github.com/gogo/protobuf/gogoproto/Makefile
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,37 +0,0 @@ | ||||
| # Protocol Buffers for Go with Gadgets | ||||
| # | ||||
| # Copyright (c) 2013, The GoGo Authors. All rights reserved. | ||||
| # http://github.com/gogo/protobuf | ||||
| # | ||||
| # Redistribution and use in source and binary forms, with or without | ||||
| # modification, are permitted provided that the following conditions are | ||||
| # met: | ||||
| # | ||||
| #     * Redistributions of source code must retain the above copyright | ||||
| # notice, this list of conditions and the following disclaimer. | ||||
| #     * Redistributions in binary form must reproduce the above | ||||
| # copyright notice, this list of conditions and the following disclaimer | ||||
| # in the documentation and/or other materials provided with the | ||||
| # distribution. | ||||
| # | ||||
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||||
| # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||||
| # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||||
| # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||||
| # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||||
| # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||||
| # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||||
| # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||||
| # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||||
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||||
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||
|  | ||||
| regenerate: | ||||
| 	go install github.com/gogo/protobuf/protoc-gen-gogo | ||||
| 	protoc --gogo_out=Mgoogle/protobuf/descriptor.proto=github.com/gogo/protobuf/protoc-gen-gogo/descriptor:../../../../ --proto_path=../../../../:../protobuf/:. *.proto | ||||
|  | ||||
| restore: | ||||
| 	cp gogo.pb.golden gogo.pb.go | ||||
|  | ||||
| preserve: | ||||
| 	cp gogo.pb.go gogo.pb.golden | ||||
							
								
								
									
										45
									
								
								vendor/github.com/gogo/protobuf/gogoproto/gogo.pb.golden
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										45
									
								
								vendor/github.com/gogo/protobuf/gogoproto/gogo.pb.golden
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,45 +0,0 @@ | ||||
| // Code generated by protoc-gen-go. | ||||
| // source: gogo.proto | ||||
| // DO NOT EDIT! | ||||
|  | ||||
| package gogoproto | ||||
|  | ||||
| import proto "github.com/gogo/protobuf/proto" | ||||
| import json "encoding/json" | ||||
| import math "math" | ||||
| import google_protobuf "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" | ||||
|  | ||||
| // Reference proto, json, and math imports to suppress error if they are not otherwise used. | ||||
| var _ = proto.Marshal | ||||
| var _ = &json.SyntaxError{} | ||||
| var _ = math.Inf | ||||
|  | ||||
| var E_Nullable = &proto.ExtensionDesc{ | ||||
| 	ExtendedType:  (*google_protobuf.FieldOptions)(nil), | ||||
| 	ExtensionType: (*bool)(nil), | ||||
| 	Field:         51235, | ||||
| 	Name:          "gogoproto.nullable", | ||||
| 	Tag:           "varint,51235,opt,name=nullable", | ||||
| } | ||||
|  | ||||
| var E_Embed = &proto.ExtensionDesc{ | ||||
| 	ExtendedType:  (*google_protobuf.FieldOptions)(nil), | ||||
| 	ExtensionType: (*bool)(nil), | ||||
| 	Field:         51236, | ||||
| 	Name:          "gogoproto.embed", | ||||
| 	Tag:           "varint,51236,opt,name=embed", | ||||
| } | ||||
|  | ||||
| var E_Customtype = &proto.ExtensionDesc{ | ||||
| 	ExtendedType:  (*google_protobuf.FieldOptions)(nil), | ||||
| 	ExtensionType: (*string)(nil), | ||||
| 	Field:         51237, | ||||
| 	Name:          "gogoproto.customtype", | ||||
| 	Tag:           "bytes,51237,opt,name=customtype", | ||||
| } | ||||
|  | ||||
| func init() { | ||||
| 	proto.RegisterExtension(E_Nullable) | ||||
| 	proto.RegisterExtension(E_Embed) | ||||
| 	proto.RegisterExtension(E_Customtype) | ||||
| } | ||||
							
								
								
									
										133
									
								
								vendor/github.com/gogo/protobuf/gogoproto/gogo.proto
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										133
									
								
								vendor/github.com/gogo/protobuf/gogoproto/gogo.proto
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,133 +0,0 @@ | ||||
| // Protocol Buffers for Go with Gadgets | ||||
| // | ||||
| // Copyright (c) 2013, The GoGo Authors. All rights reserved. | ||||
| // http://github.com/gogo/protobuf | ||||
| // | ||||
| // Redistribution and use in source and binary forms, with or without | ||||
| // modification, are permitted provided that the following conditions are | ||||
| // met: | ||||
| // | ||||
| //     * Redistributions of source code must retain the above copyright | ||||
| // notice, this list of conditions and the following disclaimer. | ||||
| //     * Redistributions in binary form must reproduce the above | ||||
| // copyright notice, this list of conditions and the following disclaimer | ||||
| // in the documentation and/or other materials provided with the | ||||
| // distribution. | ||||
| // | ||||
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||||
| // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||||
| // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||||
| // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||||
| // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||||
| // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||||
| // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||||
| // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||||
| // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||||
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||||
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||
|  | ||||
| syntax = "proto2"; | ||||
| package gogoproto; | ||||
|  | ||||
| import "google/protobuf/descriptor.proto"; | ||||
|  | ||||
| option java_package = "com.google.protobuf"; | ||||
| option java_outer_classname = "GoGoProtos"; | ||||
| option go_package = "github.com/gogo/protobuf/gogoproto"; | ||||
|  | ||||
| extend google.protobuf.EnumOptions { | ||||
| 	optional bool goproto_enum_prefix = 62001; | ||||
| 	optional bool goproto_enum_stringer = 62021; | ||||
| 	optional bool enum_stringer = 62022; | ||||
| 	optional string enum_customname = 62023; | ||||
| 	optional bool enumdecl = 62024; | ||||
| } | ||||
|  | ||||
| extend google.protobuf.EnumValueOptions { | ||||
| 	optional string enumvalue_customname = 66001; | ||||
| } | ||||
|  | ||||
| extend google.protobuf.FileOptions { | ||||
| 	optional bool goproto_getters_all = 63001; | ||||
| 	optional bool goproto_enum_prefix_all = 63002; | ||||
| 	optional bool goproto_stringer_all = 63003; | ||||
| 	optional bool verbose_equal_all = 63004; | ||||
| 	optional bool face_all = 63005; | ||||
| 	optional bool gostring_all = 63006; | ||||
| 	optional bool populate_all = 63007; | ||||
| 	optional bool stringer_all = 63008; | ||||
| 	optional bool onlyone_all = 63009; | ||||
|  | ||||
| 	optional bool equal_all = 63013; | ||||
| 	optional bool description_all = 63014; | ||||
| 	optional bool testgen_all = 63015; | ||||
| 	optional bool benchgen_all = 63016; | ||||
| 	optional bool marshaler_all = 63017; | ||||
| 	optional bool unmarshaler_all = 63018; | ||||
| 	optional bool stable_marshaler_all = 63019; | ||||
|  | ||||
| 	optional bool sizer_all = 63020; | ||||
|  | ||||
| 	optional bool goproto_enum_stringer_all = 63021; | ||||
| 	optional bool enum_stringer_all = 63022; | ||||
|  | ||||
| 	optional bool unsafe_marshaler_all = 63023; | ||||
| 	optional bool unsafe_unmarshaler_all = 63024; | ||||
|  | ||||
| 	optional bool goproto_extensions_map_all = 63025; | ||||
| 	optional bool goproto_unrecognized_all = 63026; | ||||
| 	optional bool gogoproto_import = 63027; | ||||
| 	optional bool protosizer_all = 63028; | ||||
| 	optional bool compare_all = 63029; | ||||
|     optional bool typedecl_all = 63030; | ||||
|     optional bool enumdecl_all = 63031; | ||||
|  | ||||
| 	optional bool goproto_registration = 63032; | ||||
| } | ||||
|  | ||||
| extend google.protobuf.MessageOptions { | ||||
| 	optional bool goproto_getters = 64001; | ||||
| 	optional bool goproto_stringer = 64003; | ||||
| 	optional bool verbose_equal = 64004; | ||||
| 	optional bool face = 64005; | ||||
| 	optional bool gostring = 64006; | ||||
| 	optional bool populate = 64007; | ||||
| 	optional bool stringer = 67008; | ||||
| 	optional bool onlyone = 64009; | ||||
|  | ||||
| 	optional bool equal = 64013; | ||||
| 	optional bool description = 64014; | ||||
| 	optional bool testgen = 64015; | ||||
| 	optional bool benchgen = 64016; | ||||
| 	optional bool marshaler = 64017; | ||||
| 	optional bool unmarshaler = 64018; | ||||
| 	optional bool stable_marshaler = 64019; | ||||
|  | ||||
| 	optional bool sizer = 64020; | ||||
|  | ||||
| 	optional bool unsafe_marshaler = 64023; | ||||
| 	optional bool unsafe_unmarshaler = 64024; | ||||
|  | ||||
| 	optional bool goproto_extensions_map = 64025; | ||||
| 	optional bool goproto_unrecognized = 64026; | ||||
|  | ||||
| 	optional bool protosizer = 64028; | ||||
| 	optional bool compare = 64029; | ||||
|  | ||||
| 	optional bool typedecl = 64030; | ||||
| } | ||||
|  | ||||
| extend google.protobuf.FieldOptions { | ||||
| 	optional bool nullable = 65001; | ||||
| 	optional bool embed = 65002; | ||||
| 	optional string customtype = 65003; | ||||
| 	optional string customname = 65004; | ||||
| 	optional string jsontag = 65005; | ||||
| 	optional string moretags = 65006; | ||||
| 	optional string casttype = 65007; | ||||
| 	optional string castkey = 65008; | ||||
| 	optional string castvalue = 65009; | ||||
|  | ||||
| 	optional bool stdtime = 65010; | ||||
| 	optional bool stdduration = 65011; | ||||
| } | ||||
							
								
								
									
										28
									
								
								vendor/github.com/gogo/protobuf/install-protobuf.sh
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										28
									
								
								vendor/github.com/gogo/protobuf/install-protobuf.sh
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,28 +0,0 @@ | ||||
| #!/usr/bin/env bash | ||||
|  | ||||
| set -ex | ||||
|  | ||||
| die() { | ||||
|     echo "$@" >&2 | ||||
|     exit 1 | ||||
| } | ||||
|  | ||||
| cd /home/travis | ||||
|  | ||||
| case "$PROTOBUF_VERSION" in | ||||
| 2*) | ||||
|     basename=protobuf-$PROTOBUF_VERSION | ||||
|     wget https://github.com/google/protobuf/releases/download/v$PROTOBUF_VERSION/$basename.tar.gz | ||||
|     tar xzf $basename.tar.gz | ||||
|     cd protobuf-$PROTOBUF_VERSION | ||||
|     ./configure --prefix=/home/travis && make -j2 && make install | ||||
|     ;; | ||||
| 3*) | ||||
|     basename=protoc-$PROTOBUF_VERSION-linux-x86_64 | ||||
|     wget https://github.com/google/protobuf/releases/download/v$PROTOBUF_VERSION/$basename.zip | ||||
|     unzip $basename.zip | ||||
|     ;; | ||||
| *) | ||||
|     die "unknown protobuf version: $PROTOBUF_VERSION" | ||||
|     ;; | ||||
| esac | ||||
							
								
								
									
										43
									
								
								vendor/github.com/gogo/protobuf/proto/Makefile
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										43
									
								
								vendor/github.com/gogo/protobuf/proto/Makefile
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,43 +0,0 @@ | ||||
| # Go support for Protocol Buffers - Google's data interchange format | ||||
| # | ||||
| # Copyright 2010 The Go Authors.  All rights reserved. | ||||
| # https://github.com/golang/protobuf | ||||
| # | ||||
| # Redistribution and use in source and binary forms, with or without | ||||
| # modification, are permitted provided that the following conditions are | ||||
| # met: | ||||
| # | ||||
| #     * Redistributions of source code must retain the above copyright | ||||
| # notice, this list of conditions and the following disclaimer. | ||||
| #     * Redistributions in binary form must reproduce the above | ||||
| # copyright notice, this list of conditions and the following disclaimer | ||||
| # in the documentation and/or other materials provided with the | ||||
| # distribution. | ||||
| #     * Neither the name of Google Inc. nor the names of its | ||||
| # contributors may be used to endorse or promote products derived from | ||||
| # this software without specific prior written permission. | ||||
| # | ||||
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||||
| # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||||
| # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||||
| # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||||
| # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||||
| # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||||
| # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||||
| # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||||
| # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||||
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||||
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||
|  | ||||
| install: | ||||
| 	go install | ||||
|  | ||||
| test: install generate-test-pbs | ||||
| 	go test | ||||
|  | ||||
|  | ||||
| generate-test-pbs: | ||||
| 	make install | ||||
| 	make -C testdata | ||||
| 	protoc-min-version --version="3.0.0" --proto_path=.:../../../../:../protobuf --gogo_out=Mtestdata/test.proto=github.com/gogo/protobuf/proto/testdata,Mgoogle/protobuf/any.proto=github.com/gogo/protobuf/types:. proto3_proto/proto3.proto | ||||
| 	make | ||||
							
								
								
									
										33
									
								
								vendor/github.com/gogo/protobuf/protoc-gen-gogo/Makefile
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										33
									
								
								vendor/github.com/gogo/protobuf/protoc-gen-gogo/Makefile
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,33 +0,0 @@ | ||||
| # Go support for Protocol Buffers - Google's data interchange format | ||||
| # | ||||
| # Copyright 2010 The Go Authors.  All rights reserved. | ||||
| # https://github.com/golang/protobuf | ||||
| # | ||||
| # Redistribution and use in source and binary forms, with or without | ||||
| # modification, are permitted provided that the following conditions are | ||||
| # met: | ||||
| # | ||||
| #     * Redistributions of source code must retain the above copyright | ||||
| # notice, this list of conditions and the following disclaimer. | ||||
| #     * Redistributions in binary form must reproduce the above | ||||
| # copyright notice, this list of conditions and the following disclaimer | ||||
| # in the documentation and/or other materials provided with the | ||||
| # distribution. | ||||
| #     * Neither the name of Google Inc. nor the names of its | ||||
| # contributors may be used to endorse or promote products derived from | ||||
| # this software without specific prior written permission. | ||||
| # | ||||
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||||
| # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||||
| # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||||
| # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||||
| # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||||
| # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||||
| # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||||
| # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||||
| # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||||
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||||
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||
|  | ||||
| test: | ||||
| 	cd testdata && make test | ||||
							
								
								
									
										36
									
								
								vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										36
									
								
								vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,36 +0,0 @@ | ||||
| # Go support for Protocol Buffers - Google's data interchange format | ||||
| # | ||||
| # Copyright 2010 The Go Authors.  All rights reserved. | ||||
| # https://github.com/golang/protobuf | ||||
| # | ||||
| # Redistribution and use in source and binary forms, with or without | ||||
| # modification, are permitted provided that the following conditions are | ||||
| # met: | ||||
| # | ||||
| #     * Redistributions of source code must retain the above copyright | ||||
| # notice, this list of conditions and the following disclaimer. | ||||
| #     * Redistributions in binary form must reproduce the above | ||||
| # copyright notice, this list of conditions and the following disclaimer | ||||
| # in the documentation and/or other materials provided with the | ||||
| # distribution. | ||||
| #     * Neither the name of Google Inc. nor the names of its | ||||
| # contributors may be used to endorse or promote products derived from | ||||
| # this software without specific prior written permission. | ||||
| # | ||||
| # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||||
| # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||||
| # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||||
| # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||||
| # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||||
| # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||||
| # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||||
| # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||||
| # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||||
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||||
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||
|  | ||||
| regenerate: | ||||
| 	go install github.com/gogo/protobuf/protoc-gen-gogo | ||||
| 	go install github.com/gogo/protobuf/protoc-gen-gostring | ||||
| 	protoc --gogo_out=. -I=../../protobuf/google/protobuf ../../protobuf/google/protobuf/descriptor.proto | ||||
| 	protoc --gostring_out=. -I=../../protobuf/google/protobuf ../../protobuf/google/protobuf/descriptor.proto | ||||
							
								
								
									
										51
									
								
								vendor/github.com/gogo/protobuf/protoc-gen-gogo/doc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										51
									
								
								vendor/github.com/gogo/protobuf/protoc-gen-gogo/doc.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,51 +0,0 @@ | ||||
| // Go support for Protocol Buffers - Google's data interchange format | ||||
| // | ||||
| // Copyright 2010 The Go Authors.  All rights reserved. | ||||
| // https://github.com/golang/protobuf | ||||
| // | ||||
| // Redistribution and use in source and binary forms, with or without | ||||
| // modification, are permitted provided that the following conditions are | ||||
| // met: | ||||
| // | ||||
| //     * Redistributions of source code must retain the above copyright | ||||
| // notice, this list of conditions and the following disclaimer. | ||||
| //     * Redistributions in binary form must reproduce the above | ||||
| // copyright notice, this list of conditions and the following disclaimer | ||||
| // in the documentation and/or other materials provided with the | ||||
| // distribution. | ||||
| //     * Neither the name of Google Inc. nor the names of its | ||||
| // contributors may be used to endorse or promote products derived from | ||||
| // this software without specific prior written permission. | ||||
| // | ||||
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||||
| // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||||
| // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||||
| // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||||
| // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||||
| // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||||
| // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||||
| // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||||
| // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||||
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||||
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||
|  | ||||
| /* | ||||
| 	A plugin for the Google protocol buffer compiler to generate Go code. | ||||
| 	Run it by building this program and putting it in your path with the name | ||||
| 		protoc-gen-gogo | ||||
| 	That word 'gogo' at the end becomes part of the option string set for the | ||||
| 	protocol compiler, so once the protocol compiler (protoc) is installed | ||||
| 	you can run | ||||
| 		protoc --gogo_out=output_directory input_directory/file.proto | ||||
| 	to generate Go bindings for the protocol defined by file.proto. | ||||
| 	With that input, the output will be written to | ||||
| 		output_directory/go_package/file.pb.go | ||||
|  | ||||
| 	The generated code is documented in the package comment for | ||||
| 	the library. | ||||
|  | ||||
| 	See the README and documentation for protocol buffers to learn more: | ||||
| 		https://developers.google.com/protocol-buffers/ | ||||
|  | ||||
| */ | ||||
| package documentation | ||||
							
								
								
									
										57
									
								
								vendor/github.com/gogo/protobuf/protoc-gen-gogo/main.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										57
									
								
								vendor/github.com/gogo/protobuf/protoc-gen-gogo/main.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -1,57 +0,0 @@ | ||||
| // Go support for Protocol Buffers - Google's data interchange format | ||||
| // | ||||
| // Copyright 2010 The Go Authors.  All rights reserved. | ||||
| // https://github.com/golang/protobuf | ||||
| // | ||||
| // Redistribution and use in source and binary forms, with or without | ||||
| // modification, are permitted provided that the following conditions are | ||||
| // met: | ||||
| // | ||||
| //     * Redistributions of source code must retain the above copyright | ||||
| // notice, this list of conditions and the following disclaimer. | ||||
| //     * Redistributions in binary form must reproduce the above | ||||
| // copyright notice, this list of conditions and the following disclaimer | ||||
| // in the documentation and/or other materials provided with the | ||||
| // distribution. | ||||
| //     * Neither the name of Google Inc. nor the names of its | ||||
| // contributors may be used to endorse or promote products derived from | ||||
| // this software without specific prior written permission. | ||||
| // | ||||
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||||
| // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||||
| // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||||
| // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||||
| // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||||
| // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||||
| // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||||
| // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||||
| // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||||
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||||
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||
|  | ||||
| // protoc-gen-go is a plugin for the Google protocol buffer compiler to generate | ||||
| // Go code.  Run it by building this program and putting it in your path with | ||||
| // the name | ||||
| // 	protoc-gen-gogo | ||||
| // That word 'gogo' at the end becomes part of the option string set for the | ||||
| // protocol compiler, so once the protocol compiler (protoc) is installed | ||||
| // you can run | ||||
| // 	protoc --gogo_out=output_directory input_directory/file.proto | ||||
| // to generate Go bindings for the protocol defined by file.proto. | ||||
| // With that input, the output will be written to | ||||
| // 	output_directory/file.pb.go | ||||
| // | ||||
| // The generated code is documented in the package comment for | ||||
| // the library. | ||||
| // | ||||
| // See the README and documentation for protocol buffers to learn more: | ||||
| // 	https://developers.google.com/protocol-buffers/ | ||||
| package main | ||||
|  | ||||
| import ( | ||||
| 	"github.com/gogo/protobuf/vanity/command" | ||||
| ) | ||||
|  | ||||
| func main() { | ||||
| 	command.Write(command.Generate(command.Read())) | ||||
| } | ||||
		Reference in New Issue
	
	Block a user