• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

conformance/H03-May-2022-2,3281,981

descriptor/H30-Apr-2018-12766

jsonpb/H30-Apr-2018-4,2833,639

proto/H30-Apr-2018-24,14719,460

protoc-gen-go/H30-Apr-2018-14,45611,277

ptypes/H30-Apr-2018-2,9682,016

src/H03-May-2022-299,827228,079

.gitignoreH A D30-Apr-2018175 1816

.travis.ymlH A D30-Apr-2018779 3127

AUTHORSH A D30-Apr-2018173 43

CONTRIBUTORSH A D30-Apr-2018170 43

LICENSEH A D30-Apr-20181.5 KiB3226

MakefileH A D30-Apr-20181.8 KiB4912

README.mdH A D30-Apr-201811.2 KiB284226

regenerate.shH A D30-Apr-20181.6 KiB5438

README.md

1# Go support for Protocol Buffers
2
3[![Build Status](https://travis-ci.org/golang/protobuf.svg?branch=master)](https://travis-ci.org/golang/protobuf)
4[![GoDoc](https://godoc.org/github.com/golang/protobuf?status.svg)](https://godoc.org/github.com/golang/protobuf)
5
6Google's data interchange format.
7Copyright 2010 The Go Authors.
8https://github.com/golang/protobuf
9
10This package and the code it generates requires at least Go 1.6.
11
12This software implements Go bindings for protocol buffers.  For
13information about protocol buffers themselves, see
14	https://developers.google.com/protocol-buffers/
15
16## Installation ##
17
18To use this software, you must:
19- Install the standard C++ implementation of protocol buffers from
20	https://developers.google.com/protocol-buffers/
21- Of course, install the Go compiler and tools from
22	https://golang.org/
23  See
24	https://golang.org/doc/install
25  for details or, if you are using gccgo, follow the instructions at
26	https://golang.org/doc/install/gccgo
27- Grab the code from the repository and install the proto package.
28  The simplest way is to run `go get -u github.com/golang/protobuf/protoc-gen-go`.
29  The compiler plugin, protoc-gen-go, will be installed in $GOBIN,
30  defaulting to $GOPATH/bin.  It must be in your $PATH for the protocol
31  compiler, protoc, to find it.
32
33This software has two parts: a 'protocol compiler plugin' that
34generates Go source files that, once compiled, can access and manage
35protocol buffers; and a library that implements run-time support for
36encoding (marshaling), decoding (unmarshaling), and accessing protocol
37buffers.
38
39There is support for gRPC in Go using protocol buffers.
40See the note at the bottom of this file for details.
41
42There are no insertion points in the plugin.
43
44
45## Using protocol buffers with Go ##
46
47Once the software is installed, there are two steps to using it.
48First you must compile the protocol buffer definitions and then import
49them, with the support library, into your program.
50
51To compile the protocol buffer definition, run protoc with the --go_out
52parameter set to the directory you want to output the Go code to.
53
54	protoc --go_out=. *.proto
55
56The generated files will be suffixed .pb.go.  See the Test code below
57for an example using such a file.
58
59## Packages and input paths ##
60
61The protocol buffer language has a concept of "packages" which does not
62correspond well to the Go notion of packages. In generated Go code,
63each source `.proto` file is associated with a single Go package. The
64name and import path for this package is specified with the `go_package`
65proto option:
66
67	option go_package = "github.com/golang/protobuf/ptypes/any";
68
69The protocol buffer compiler will attempt to derive a package name and
70import path if a `go_package` option is not present, but it is
71best to always specify one explicitly.
72
73There is a one-to-one relationship between source `.proto` files and
74generated `.pb.go` files, but any number of `.pb.go` files may be
75contained in the same Go package.
76
77The output name of a generated file is produced by replacing the
78`.proto` suffix with `.pb.go` (e.g., `foo.proto` produces `foo.pb.go`).
79However, the output directory is selected in one of two ways.  Let
80us say we have `inputs/x.proto` with a `go_package` option of
81`github.com/golang/protobuf/p`. The corresponding output file may
82be:
83
84- Relative to the import path:
85
86	protoc --go_out=. inputs/x.proto
87	# writes ./github.com/golang/protobuf/p/x.pb.go
88
89  (This can work well with `--go_out=$GOPATH`.)
90
91- Relative to the input file:
92
93	protoc --go_out=paths=source_relative:. inputs/x.proto
94	# generate ./inputs/x.pb.go
95
96## Generated code ##
97
98The package comment for the proto library contains text describing
99the interface provided in Go for protocol buffers. Here is an edited
100version.
101
102The proto package converts data structures to and from the
103wire format of protocol buffers.  It works in concert with the
104Go source code generated for .proto files by the protocol compiler.
105
106A summary of the properties of the protocol buffer interface
107for a protocol buffer variable v:
108
109  - Names are turned from camel_case to CamelCase for export.
110  - There are no methods on v to set fields; just treat
111  	them as structure fields.
112  - There are getters that return a field's value if set,
113	and return the field's default value if unset.
114	The getters work even if the receiver is a nil message.
115  - The zero value for a struct is its correct initialization state.
116	All desired fields must be set before marshaling.
117  - A Reset() method will restore a protobuf struct to its zero state.
118  - Non-repeated fields are pointers to the values; nil means unset.
119	That is, optional or required field int32 f becomes F *int32.
120  - Repeated fields are slices.
121  - Helper functions are available to aid the setting of fields.
122	Helpers for getting values are superseded by the
123	GetFoo methods and their use is deprecated.
124		msg.Foo = proto.String("hello") // set field
125  - Constants are defined to hold the default values of all fields that
126	have them.  They have the form Default_StructName_FieldName.
127	Because the getter methods handle defaulted values,
128	direct use of these constants should be rare.
129  - Enums are given type names and maps from names to values.
130	Enum values are prefixed with the enum's type name. Enum types have
131	a String method, and a Enum method to assist in message construction.
132  - Nested groups and enums have type names prefixed with the name of
133  	the surrounding message type.
134  - Extensions are given descriptor names that start with E_,
135	followed by an underscore-delimited list of the nested messages
136	that contain it (if any) followed by the CamelCased name of the
137	extension field itself.  HasExtension, ClearExtension, GetExtension
138	and SetExtension are functions for manipulating extensions.
139  - Oneof field sets are given a single field in their message,
140	with distinguished wrapper types for each possible field value.
141  - Marshal and Unmarshal are functions to encode and decode the wire format.
142
143When the .proto file specifies `syntax="proto3"`, there are some differences:
144
145  - Non-repeated fields of non-message type are values instead of pointers.
146  - Enum types do not get an Enum method.
147
148Consider file test.proto, containing
149
150```proto
151	syntax = "proto2";
152	package example;
153
154	enum FOO { X = 17; };
155
156	message Test {
157	  required string label = 1;
158	  optional int32 type = 2 [default=77];
159	  repeated int64 reps = 3;
160	  optional group OptionalGroup = 4 {
161	    required string RequiredField = 5;
162	  }
163	}
164```
165
166To create and play with a Test object from the example package,
167
168```go
169	package main
170
171	import (
172		"log"
173
174		"github.com/golang/protobuf/proto"
175		"path/to/example"
176	)
177
178	func main() {
179		test := &example.Test {
180			Label: proto.String("hello"),
181			Type:  proto.Int32(17),
182			Reps:  []int64{1, 2, 3},
183			Optionalgroup: &example.Test_OptionalGroup {
184				RequiredField: proto.String("good bye"),
185			},
186		}
187		data, err := proto.Marshal(test)
188		if err != nil {
189			log.Fatal("marshaling error: ", err)
190		}
191		newTest := &example.Test{}
192		err = proto.Unmarshal(data, newTest)
193		if err != nil {
194			log.Fatal("unmarshaling error: ", err)
195		}
196		// Now test and newTest contain the same data.
197		if test.GetLabel() != newTest.GetLabel() {
198			log.Fatalf("data mismatch %q != %q", test.GetLabel(), newTest.GetLabel())
199		}
200		// etc.
201	}
202```
203
204## Parameters ##
205
206To pass extra parameters to the plugin, use a comma-separated
207parameter list separated from the output directory by a colon:
208
209	protoc --go_out=plugins=grpc,import_path=mypackage:. *.proto
210
211- `paths=(import | source_relative)` - specifies how the paths of
212  generated files are structured. See the "Packages and imports paths"
213  section above. The default is `import`.
214- `plugins=plugin1+plugin2` - specifies the list of sub-plugins to
215  load. The only plugin in this repo is `grpc`.
216- `Mfoo/bar.proto=quux/shme` - declares that foo/bar.proto is
217  associated with Go package quux/shme.  This is subject to the
218  import_prefix parameter.
219
220The following parameters are deprecated and should not be used:
221
222- `import_prefix=xxx` - a prefix that is added onto the beginning of
223  all imports.
224- `import_path=foo/bar` - used as the package if no input files
225  declare `go_package`. If it contains slashes, everything up to the
226  rightmost slash is ignored.
227
228## gRPC Support ##
229
230If a proto file specifies RPC services, protoc-gen-go can be instructed to
231generate code compatible with gRPC (http://www.grpc.io/). To do this, pass
232the `plugins` parameter to protoc-gen-go; the usual way is to insert it into
233the --go_out argument to protoc:
234
235	protoc --go_out=plugins=grpc:. *.proto
236
237## Compatibility ##
238
239The library and the generated code are expected to be stable over time.
240However, we reserve the right to make breaking changes without notice for the
241following reasons:
242
243- Security. A security issue in the specification or implementation may come to
244  light whose resolution requires breaking compatibility. We reserve the right
245  to address such security issues.
246- Unspecified behavior.  There are some aspects of the Protocol Buffers
247  specification that are undefined.  Programs that depend on such unspecified
248  behavior may break in future releases.
249- Specification errors or changes. If it becomes necessary to address an
250  inconsistency, incompleteness, or change in the Protocol Buffers
251  specification, resolving the issue could affect the meaning or legality of
252  existing programs.  We reserve the right to address such issues, including
253  updating the implementations.
254- Bugs.  If the library has a bug that violates the specification, a program
255  that depends on the buggy behavior may break if the bug is fixed.  We reserve
256  the right to fix such bugs.
257- Adding methods or fields to generated structs.  These may conflict with field
258  names that already exist in a schema, causing applications to break.  When the
259  code generator encounters a field in the schema that would collide with a
260  generated field or method name, the code generator will append an underscore
261  to the generated field or method name.
262- Adding, removing, or changing methods or fields in generated structs that
263  start with `XXX`.  These parts of the generated code are exported out of
264  necessity, but should not be considered part of the public API.
265- Adding, removing, or changing unexported symbols in generated code.
266
267Any breaking changes outside of these will be announced 6 months in advance to
268protobuf@googlegroups.com.
269
270You should, whenever possible, use generated code created by the `protoc-gen-go`
271tool built at the same commit as the `proto` package.  The `proto` package
272declares package-level constants in the form `ProtoPackageIsVersionX`.
273Application code and generated code may depend on one of these constants to
274ensure that compilation will fail if the available version of the proto library
275is too old.  Whenever we make a change to the generated code that requires newer
276library support, in the same commit we will increment the version number of the
277generated code and declare a new package-level constant whose name incorporates
278the latest version number.  Removing a compatibility constant is considered a
279breaking change and would be subject to the announcement policy stated above.
280
281The `protoc-gen-go/generator` package exposes a plugin interface,
282which is used by the gRPC code generation. This interface is not
283supported and is subject to incompatible changes without notice.
284